/* Color Variables */
:root {
    --primary-color: #1e293b;
    --secondary-color: #0f172a;
    --accent-color: #3b82f6;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-color: #f8fafc;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Top Info Bar */
.top-info-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.top-info-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.logo-section:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.logo-image {
    height: 100px;
    width: auto;
    max-width: 360px;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: none;
}

.logo-section:hover .logo-image {
    transform: scale(1.05);
}

.logo-section i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.logo-section:hover i {
    transform: scale(1.1);
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-text {
    color: #64748b;
}

.rating-value {
    color: #059669;
    font-weight: 600;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #fbbf24;
    font-size: 0.8rem;
}

.top-info-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #475569;
}

.contact-info i {
    color: #0369a1;
}

.phone-number {
    font-weight: 600;
    color: #1e293b;
}

.operating-hours {
    color: #059669;
    font-weight: 500;
}

.current-date {
    color: #64748b;
}

.top-info-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-btn {
    background: #e2e8f0;
    color: #475569;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dashboard-btn:hover {
    background: #cbd5e1;
}

.notification-wrapper {
    position: relative;
}

.notification-btn, .user-profile {
    background: none;
    border: none;
    color: #64748b;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.notification-btn:hover, .user-profile:hover {
    background: #f1f5f9;
    color: #0369a1;
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1.4;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Notification Dropdown */
.notification-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    overflow: hidden;
}

.notification-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notification-dropdown-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.notification-dropdown-header i {
    font-size: 1.1rem;
}

.notification-dropdown-content {
    padding: 12px;
}

.discount-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    background: #f8fafc;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.discount-item:hover {
    background: #f1f5f9;
    transform: translateX(4px);
}

.discount-item.premium {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #fbbf24;
}

.discount-item.premium:hover {
    background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
}

.discount-label {
    flex-shrink: 0;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.discount-label.premium {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.2);
}

.discount-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.discount-info strong {
    color: #1e293b;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}

.discount-price-text {
    color: #475569;
    font-size: 0.85rem;
}

.discount-price-text strong {
    color: #059669;
    font-weight: 700;
    font-size: 0.9rem;
}

.discount-item.premium .discount-price-text strong {
    color: #d97706;
}

/* Mobile Responsive for Dropdown */
@media (max-width: 768px) {
    .notification-dropdown {
        width: 280px;
        right: -20px;
    }
    
    .notification-dropdown-header {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .discount-item {
        padding: 10px;
    }
    
    .discount-info strong {
        font-size: 0.85rem;
    }
}

/* Header Spacer */
.header-spacer {
    height: 120px;
}

.mobile-br {
    display: none;
}

@media (max-width: 768px) {
    .header-spacer {
        height: 0;
        display: none;
    }
    
    .mobile-br {
        display: block;
    }
}

/* Navigation Bar */
.navbar {
    padding: 1rem 0;
    background: white;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    z-index: 1001;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.menu-text {
    display: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover .menu-text {
    color: #0369a1;
}

.mobile-site-title {
    display: none;
    text-align: center;
    flex: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-site-title:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.mobile-logo-image {
    height: 60px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: none;
}

.mobile-nav-right {
    display: none;
}

.mobile-notification {
    display: none;
}

.mobile-menu-toggle:hover {
    background: #f1f5f9;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hamburger-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background: #475569;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .hamburger-icon span {
    background: #0369a1;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #0369a1;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    color: #475569;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: #f8fafc;
    color: #0369a1;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login, .btn-signup {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-login {
    background: transparent;
    color: var(--gray-600);
    border: 2px solid var(--gray-200);
}

.btn-login:hover {
    background: var(--gray-50);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-signup {
    background: linear-gradient(135deg, var(--success-color), #047857);
    color: white;
}

.btn-signup:hover {
    background: linear-gradient(135deg, #047857, #059669);
    transform: translateY(-2px);
}

.language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #475569;
}

.lang-btn:hover {
    background: #f1f5f9;
    border-color: #0369a1;
}

/* Partner Carriers */
.logo-row.header-logos {
    background: #f8fafc;
    padding: 1rem 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 120px;
}


.carrier-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: #f8fafc;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.carrier-logos-list {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 3rem;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 1.5rem;
    width: max-content;
    animation: scroll-left 40s linear infinite;
    animation-delay: 0s;
    transform: translateX(0%);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carrier-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 35px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    white-space: nowrap;
}

.carrier-item:hover {
    transform: translateY(-2px);
}

.carrier-item img {
    max-height: 35px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.carrier-item:hover img {
    filter: grayscale(0%);
}

.carrier-tagline {
    text-align: center;
}

.carrier-tagline a {
    text-decoration: none;
    color: inherit;
}

.tagline-text {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.carrier-tagline a:hover .tagline-text {
    color: #0369a1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    padding: 60px 0 60px;
    color: white;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #ffd700;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Phone Tracker */
.phone-tracker {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.input-group {
    display: flex;
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.country-selector {
    position: relative;
}

.country-code {
    background: #f8f9fa;
    border: none;
    padding: 15px 20px;
    border-radius: 45px 0 0 45px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
}

.phone-input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.phone-input-full {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.input-note {
    margin-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.input-note i {
    color: var(--accent-color);
}

.track-btn {
    background: linear-gradient(135deg, var(--accent-color), #2563eb);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 0 45px 45px 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.track-btn:hover {
    background: linear-gradient(135deg, #2563eb, var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.feature i {
    font-size: 1.5rem;
    color: #ffd700;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: var(--gray-50);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 0.8rem 0.6rem;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.stat-icon {
    width: 35px;
    height: 35px;
    margin: 0 auto 0.6rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 3px 12px rgba(30, 41, 59, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(30, 41, 59, 0.4);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Find Location Page Styles */
.find-location-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.find-location-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.find-location-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.find-location-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.find-location-hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.find-location-form {
    margin-bottom: 3rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-group input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    background: var(--white);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.find-btn {
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--accent-color), #2563eb);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.find-btn:hover {
    background: linear-gradient(135deg, #2563eb, var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.location-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    opacity: 0.9;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* Location Results */
.location-results {
    padding: 80px 0;
    background: var(--gray-50);
}

.error-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.error-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--warning-color), #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.error-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.error-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.results-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.result-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    max-width: 800px;
    margin: 0 auto;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-100);
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.phone-info i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--success-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.location-details {
    margin-bottom: 2rem;
}

.location-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.3);
}

.location-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.location-info p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.location-coordinates {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 12px;
}

.coordinate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coordinate-label {
    font-weight: 600;
    color: var(--text-color);
}

.coordinate-value {
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
}

.location-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    flex: 1;
    min-width: 150px;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.action-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* How It Works Find */
.how-it-works-find {
    padding: 80px 0;
    background: var(--white);
}

.how-it-works-find .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--gray-50);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.3);
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}


@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Process Section */
.process-section {
    padding: 4rem 0;
    background: var(--white);
}

.process-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.process-progress {
    margin-bottom: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--success-color));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.process-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    margin: 0 auto;
}

.process-content {
    margin: 1rem 0;
}

.process-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.process-content p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.process-spinner {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.spinner {
    width: 30px;
    height: 30px;
    border: 3px solid var(--gray-200);
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Privacy Notice */
.privacy-notice {
    padding: 60px 0;
    background: var(--gray-50);
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    border-left: 4px solid var(--warning-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.notice-content i {
    font-size: 2rem;
    color: var(--warning-color);
    flex-shrink: 0;
}

.notice-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.notice-text p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}


.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 2;
    gap: 1rem;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0369a1, #0284c7, #059669);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Different icon styles for each card */
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.2);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.2);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.2);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.2);
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--accent-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    margin: 0;
}

.feature-card:hover p {
    color: var(--gray-600);
}




/* How It Works - Modern Design */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

/* Platform Section */
.platform-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.platform-header p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.platform-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.platform-item:hover {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.platform-item:hover .platform-icon {
    color: white;
}

.platform-item:hover span {
    color: white;
}

.platform-icon {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.platform-item span {
    font-weight: 600;
    color: #64748b;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* How It Works Content */
.how-it-works-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin: 0;
}

/* Steps Container - Horizontal Layout */
.steps-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    position: relative;
    padding: 2rem 0;
    justify-content: space-between;
    align-items: stretch;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8, #10b981, #f59e0b, #ef4444);
    z-index: 1;
    transform: translateY(-50%);
}

/* Step Cards - Horizontal Layout */
.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 200px;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(59, 130, 246, 0.4);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.step-content p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Step arrows removed for horizontal layout */

/* Authentication Pages Styles */
.auth-content {
    padding: 40px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.auth-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.auth-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0369a1;
}

.auth-logo i {
    font-size: 2rem;
}

.auth-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #64748b;
    font-size: 1rem;
}

.auth-form {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: #64748b;
    z-index: 2;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    outline: none;
    border-color: #0369a1;
    background: white;
    box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.1);
}

.password-toggle {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    z-index: 2;
}

.password-strength {
    margin-top: 0.5rem;
}

.strength-bar {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-text {
    font-size: 0.8rem;
    color: #64748b;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #64748b;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
    background: #0369a1;
    border-color: #0369a1;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.forgot-password {
    color: #0369a1;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #0369a1, #0284c7);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(3, 105, 161, 0.3);
}

.auth-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.auth-divider span {
    background: white;
    padding: 0 1rem;
    color: #64748b;
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-btn:hover {
    border-color: #0369a1;
    color: #0369a1;
    transform: translateY(-2px);
}

.google-btn:hover {
    border-color: #db4437;
    color: #db4437;
}

.facebook-btn:hover {
    border-color: #4267B2;
    color: #4267B2;
}

.auth-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.auth-footer p {
    color: #64748b;
    margin: 0;
}

.auth-footer a {
    color: #0369a1;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-features {
    padding: 80px 0;
    background: white;
}

.auth-features h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

.auth-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.auth-features .feature-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.auth-features .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.auth-features .feature-item i {
    font-size: 3rem;
    color: #0369a1;
    margin-bottom: 1rem;
}

.auth-features .feature-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.auth-features .feature-item p {
    color: #64748b;
    font-size: 1rem;
}

/* Privacy Policy & Terms of Service Styles */
.privacy-hero, .terms-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 40px 0 40px;
    color: white;
    text-align: center;
    margin-top: 120px;
}

/* Feedback Page Styles */
.feedback-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 20px 0 20px;
    color: white;
    text-align: center;
    margin-top: 0;
}

.feedback-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feedback-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.feedback-main {
    padding: 40px 0;
    background: var(--gray-50);
}

.feedback-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

.review-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.review-description {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.rating-section {
    margin: 2rem 0;
}

.rating-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.star-rating {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating .star {
    font-size: 2rem;
    color: var(--gray-300);
    cursor: pointer;
    transition: color 0.2s ease;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: #fbbf24;
}

.rating-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.comment-section {
    margin: 2rem 0;
}

.comment-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.comment-section textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.3s ease;
}

.comment-section textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.submit-section {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-color), #2563eb);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2563eb, var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Stats & Trust Responsive Design */
@media (max-width: 768px) {
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        margin: 0;
        flex-shrink: 0;
        font-size: 1.2rem;
        border-radius: 12px;
    }
    
    .stat-content {
        flex: 1;
        text-align: left;
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
        text-align: left;
    }
    
    .stat-label {
        font-size: 0.75rem;
        text-align: left;
    }
    
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        margin: 0;
        flex-shrink: 0;
        font-size: 1.2rem;
        border-radius: 12px;
    }
    
    .stat-content {
        flex: 1;
        text-align: left;
    }
    
    .stat-number {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
        text-align: left;
    }
    
    .stat-label {
        font-size: 0.7rem;
        text-align: left;
    }
    
}

/* Responsive Design */
@media (max-width: 768px) {
    .feedback-hero {
        padding: 15px 0 15px;
    }
    
    .feedback-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .feedback-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .submit-section {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .feedback-hero {
        padding: 10px 0 10px;
    }
    
    .feedback-hero-content h1 {
        font-size: 2rem;
    }
    
    .feedback-card {
        padding: 1.5rem;
    }
    
    .star-rating .star {
        font-size: 1.5rem;
    }
}

.privacy-hero-content h1, .terms-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.privacy-hero-content p, .terms-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.privacy-content, .terms-content {
    padding: 80px 0;
    background: #ffffff;
}

.privacy-wrapper, .terms-wrapper {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.privacy-section, .terms-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #0369a1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.privacy-section h2, .terms-section h2 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.privacy-section p, .terms-section p {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.privacy-section ul, .terms-section ul {
    color: #64748b;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li, .terms-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-section strong, .terms-section strong {
    color: #1e293b;
    font-weight: 600;
}

.privacy-footer, .terms-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.privacy-footer p, .terms-footer p {
    color: #64748b;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%2364748b" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%2364748b" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%2364748b" opacity="0.01"/><circle cx="10" cy="60" r="0.5" fill="%2364748b" opacity="0.01"/><circle cx="90" cy="40" r="0.5" fill="%2364748b" opacity="0.01"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

/* FAQ Page Styles */
.faq-hero {
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    margin-top: 120px;
}

.faq-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.faq-main {
    padding: 80px 0;
    background: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #0369a1;
}

.faq-item h3 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.faq-support {
    margin-top: 4rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem;
    border-radius: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.support-content h3 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.support-content p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

/* FAQ Page Responsive */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .faq-hero {
        padding: 60px 0 40px;
    }
    
    .privacy-hero, .terms-hero {
        padding: 30px 0 30px;
    }
    
    .faq-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .faq-hero-content p {
        font-size: 1.1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
    
    .support-content h3 {
        font-size: 1.5rem;
    }
    
    .support-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Feature Cards Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-hero {
        padding: 50px 0 30px;
    }
    
    .privacy-hero, .terms-hero {
        padding: 25px 0 25px;
    }
    
    .faq-hero-content h1 {
        font-size: 2rem;
    }
    
    .faq-hero-content p {
        font-size: 1rem;
    }
    
    .faq-main {
        padding: 60px 0;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .faq-support {
        padding: 2rem;
        margin-top: 3rem;
    }
    
    .support-content h3 {
        font-size: 1.3rem;
    }
    
    .support-content p {
        font-size: 1rem;
    }
    
    .support-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

.faq .section-title {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.faq-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-item:nth-child(1) {
    background: var(--white);
    border-left: 4px solid var(--gray-300);
}

.faq-item:nth-child(2) {
    background: var(--white);
    border-left: 4px solid var(--gray-300);
}

.faq-item:nth-child(3) {
    background: var(--white);
    border-left: 4px solid var(--gray-300);
}

.faq-item:nth-child(4) {
    background: var(--white);
    border-left: 4px solid var(--gray-300);
}

.faq-item:nth-child(5) {
    background: var(--white);
    border-left: 4px solid var(--gray-300);
}

.faq-item:nth-child(6) {
    background: var(--white);
    border-left: 4px solid var(--gray-300);
}

.faq-item:nth-child(7) {
    background: var(--white);
    border-left: 4px solid var(--gray-300);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.faq-item:hover::before {
    left: 100%;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left-color: var(--gray-500);
}

.faq-item:nth-child(1):hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left-color: var(--gray-500);
}

.faq-item:nth-child(2):hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left-color: var(--gray-500);
}

.faq-item:nth-child(3):hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left-color: var(--gray-500);
}

.faq-item:nth-child(4):hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left-color: var(--gray-500);
}

.faq-item:nth-child(5):hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left-color: var(--gray-500);
}

.faq-item:nth-child(6):hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left-color: var(--gray-500);
}

.faq-item:nth-child(7):hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left-color: var(--gray-500);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1.5rem;
}

.faq-item h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

.faq-item:nth-child(1) h3::before {
    content: '🔍';
    color: var(--gray-500);
}

.faq-item:nth-child(2) h3::before {
    content: '🔔';
    color: var(--gray-500);
}

.faq-item:nth-child(3) h3::before {
    content: '📱';
    color: var(--gray-500);
}

.faq-item:nth-child(4) h3::before {
    content: '👥';
    color: var(--gray-500);
}

.faq-item:nth-child(5) h3::before {
    content: '🔋';
    color: var(--gray-500);
}

.faq-item:nth-child(6) h3::before {
    content: '🕵️';
    color: var(--gray-500);
}

.faq-item:nth-child(7) h3::before {
    content: '💻';
    color: var(--gray-500);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.faq-read-more {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0369a1, #0284c7);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(3, 105, 161, 0.3);
    position: relative;
    overflow: hidden;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(3, 105, 161, 0.4);
    background: linear-gradient(135deg, #0284c7, #0369a1);
}

.read-more-btn i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 3rem;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0369a1, #0284c7, #f59e0b, #dc2626, #7c3aed);
    z-index: 1;
}

.step::after {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #0369a1, #0284c7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    z-index: 3;
    opacity: 0;
    animation: stepNumber 10s ease-in-out infinite;
}

.step:nth-child(1)::after {
    content: '1';
    animation-delay: 0s;
}

.step:nth-child(2)::after {
    content: '2';
    animation-delay: 2s;
}

.step:nth-child(3)::after {
    content: '3';
    animation-delay: 4s;
}

.step:nth-child(4)::after {
    content: '4';
    animation-delay: 6s;
}

.step:nth-child(5)::after {
    content: '5';
    animation-delay: 8s;
}

@keyframes stepNumber {
    0%, 15% {
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }
    20%, 30% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
    35%, 100% {
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 0.1rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    position: relative;
}

.step:nth-child(1) .step-icon {
    background: var(--primary-color);
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.3);
}

.step:nth-child(2) .step-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.3);
}

.step:nth-child(3) .step-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.3);
}

.step:nth-child(4) .step-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.3);
}

.step:nth-child(5) .step-icon {
    background: var(--success-color);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.step:hover .step-icon {
    transform: scale(1.05) rotate(3deg);
}

.step-content h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #1e293b;
    line-height: 1.1;
}

.step:hover .step-content h3 {
    color: #1e40af;
}

.step-content p {
    color: #64748b;
    line-height: 1.4;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    max-width: 100%;
}

.step:hover .step-content p {
    color: #475569;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
    display: block;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--accent-color);
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-section p {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
    color: var(--gray-400);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal-body {
    padding: 2rem;
}

.payment-info {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.payment-info p {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.payment-methods h4 {
    margin-bottom: 1rem;
    color: #333;
}

/* Device Search Header Styles */
.device-search-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 2rem 0;
}

.search-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.phone-info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-icon {
    width: 50px;
    height: 50px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 1.2rem;
}

.phone-details {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.phone-number-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.country-flag {
    font-size: 1.2rem;
}

.phone-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}


.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
    margin: 2rem auto;
    max-width: 400px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--success-color), #10b981);
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
}


.search-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: right;
}

.date-info, .id-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.date-label, .id-label {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.date-value, .id-value {
    font-size: 0.9rem;
    color: var(--gray-700);
    font-family: monospace;
}

/* Device Results Layout */
/* Search Loading Animation */
.search-loading {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-margin-top: 0;
}

.loading-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    color: var(--white);
}

.loading-spinner {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 3rem;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-width: 3px;
    animation-delay: 0.5s;
    animation-duration: 1.2s;
}

.spinner-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-width: 2px;
    animation-delay: 1s;
    animation-duration: 1s;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-content {
    margin-top: 2rem;
}

.loading-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.loading-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.loading-steps::-webkit-scrollbar {
    width: 6px;
}

.loading-steps::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.loading-steps::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.loading-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    width: 100%;
    flex-shrink: 0;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    visibility: hidden;
}

.step-content-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.step-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
}

.step-description {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.3;
}

.loading-step.show {
    opacity: 1;
    max-height: 120px;
    padding: 1rem;
    margin-bottom: 0;
    visibility: visible;
}

.loading-step.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
    max-height: 120px;
    padding: 1rem;
    visibility: visible;
    animation: pulseActive 2s infinite;
}

.loading-step.completed {
    opacity: 0.9;
    background: rgba(34, 197, 94, 0.3);
    transform: translateY(0) scale(1);
    max-height: 120px;
    padding: 1rem;
    visibility: visible;
    animation: none;
}

@keyframes pulseActive {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 255, 255, 0.4);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0) scale(1);
    }
    to {
        transform: translateY(-10px) scale(0.98);
    }
}

.loading-step i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    color: var(--white);
    flex-shrink: 0;
}

.loading-step.show .step-description {
    opacity: 1;
    transform: translateY(0);
}

.loading-step .step-description {
    opacity: 0.7;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.loading-progress {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 2rem;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0.8));
    border-radius: 10px;
    width: 0%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    position: relative;
    min-width: 0;
    display: block;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Results Animation */
.device-results {
    padding: 2rem 0;
    background: var(--gray-50);
    min-height: 60vh;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.device-results.show {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive for Loading */
@media (max-width: 768px) {
    .search-loading {
        padding: 2rem 1rem;
        min-height: 50vh;
    }
    
    .loading-container {
        max-width: 100%;
    }
    
    .loading-spinner {
        width: 80px;
        height: 80px;
        margin: 0 auto 2rem;
    }
    
    .loading-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .loading-steps {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        max-height: 400px;
    }
    
    .loading-steps::-webkit-scrollbar {
        width: 4px;
    }
    
    .loading-steps::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }
    
    .loading-steps::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 10px;
    }
    
    .loading-step {
        padding: 0.75rem;
        gap: 0.75rem;
        font-size: 0.9rem;
    }
    
    .loading-step i {
        font-size: 1.2rem;
        width: 25px;
        flex-shrink: 0;
    }
    
    .step-content-text {
        gap: 0.25rem;
    }
    
    .step-title {
        font-size: 0.9rem;
    }
    
    .step-description {
        font-size: 0.75rem;
    }
    
    .loading-progress {
        margin-top: 1.5rem;
    }
}

.results-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.device-data-panel, .map-panel {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.device-data-panel {
    max-width: 400px;
}

.map-panel {
    min-width: 0;
}

.panel-header {
    background: var(--gray-50);
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.panel-header h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0;
}

.panel-header i {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.data-list {
    padding: 1rem;
}

.data-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
}

.data-item:last-child {
    border-bottom: none;
}

.data-label {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.data-value {
    color: var(--gray-600);
    font-size: 0.9rem;
    font-family: monospace;
}

.defined-badge {
    background: #d1fae5;
    color: #065f46;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    display: inline-block;
    text-transform: lowercase;
}

.map-container {
    position: relative;
    height: 650px;
    background: var(--gray-100);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15), 
                0 0 40px rgba(59, 130, 246, 0.1);
}

.map-display {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 650px;
    filter: blur(3px);
    pointer-events: none;
}

.map-display::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* Leaflet map container */
.leaflet-container {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    filter: blur(3px);
}

/* Map locked overlay */
.map-locked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 10px;
    backdrop-filter: blur(2px);
}

.map-lock-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    animation: pulse-lock 2s ease-in-out infinite;
}

@keyframes pulse-lock {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(59, 130, 246, 0.6);
    }
}

.map-lock-icon i {
    font-size: 32px;
    color: white;
}

.map-lock-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 25px 0;
    text-align: center;
}

.map-unlock-btn {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-size: 200% 200%;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.map-unlock-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
}

.map-unlock-btn i {
    font-size: 18px;
}

/* Responsive map overlay */
@media (max-width: 768px) {
    .map-lock-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .map-lock-icon i {
        font-size: 24px;
    }
    
    .map-lock-text {
        font-size: 16px;
        margin-bottom: 20px;
        padding: 0 20px;
    }
    
    .map-unlock-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .map-unlock-btn i {
        font-size: 16px;
    }
}

/* Custom phone marker */
.phone-marker {
    background: transparent !important;
    border: none !important;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--gray-500);
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.map-placeholder p {
    margin: 0.5rem 0;
}

.map-coordinates {
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.map-controls {
    position: absolute;
    left: 1rem;
    top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0.6;
    pointer-events: none;
    z-index: 999;
}

.map-zoom-in, .map-zoom-out {
    width: 30px;
    height: 30px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.map-zoom-slider {
    width: 30px;
    height: 60px;
    background: var(--gray-200);
    border-radius: 15px;
    margin: 0.5rem 0;
}

.map-action-btn {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    opacity: 0.6;
    pointer-events: none;
    z-index: 999;
}

.map-action-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

/* Error Section */
.error-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

.error-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--warning-color);
}

.error-icon {
    font-size: 3rem;
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.error-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.error-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.retry-btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.retry-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

/* Search Progress Styles */
.search-progress {
    padding: 80px 0;
    background: var(--gray-50);
}

.progress-content {
    max-width: 800px;
    margin: 0 auto;
}

.progress-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.progress-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    opacity: 0.5;
}

.step.active {
    opacity: 1;
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.step.completed {
    opacity: 1;
    border-color: var(--success-color);
    background: linear-gradient(135deg, var(--white), rgba(16, 185, 129, 0.05));
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step.active .step-icon {
    background: linear-gradient(135deg, var(--accent-color), #2563eb);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    animation: pulse 2s infinite;
}

.step.completed .step-icon {
    background: linear-gradient(135deg, var(--success-color), #10b981);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-status {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spinner {
    width: 30px;
    height: 30px;
    border: 3px solid var(--gray-200);
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.step.completed .spinner {
    display: none;
}

.step.completed .step-status::after {
    content: '✓';
    font-size: 1.5rem;
    color: var(--success-color);
    font-weight: bold;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Find Location Responsive Design */
@media (max-width: 768px) {
    .find-location-hero {
        padding: 80px 0 60px;
    }
    
    .find-location-hero h1 {
        font-size: 2.5rem;
    }
    
    .find-location-hero p {
        font-size: 1.1rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .find-btn {
        width: 100%;
        justify-content: center;
    }
    
    .location-info {
        gap: 2rem;
    }
    
    .result-card {
        padding: 1.5rem;
    }
    
    .result-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .location-main {
        flex-direction: column;
        text-align: center;
    }
    
    .location-coordinates {
        grid-template-columns: 1fr;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .action-btn {
        min-width: auto;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .notice-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Search Progress Responsive */
    .search-progress {
        padding: 60px 0;
    }
    
    .progress-content h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    /* Device Search Header Responsive */
    .search-header-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .search-meta {
        text-align: center;
    }
    
    .results-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .device-data-panel {
        order: 2;
    }
    
    .map-panel {
        order: 1;
    }
    
    .map-container {
        height: 500px;
    }
    
    /* Search Progress Steps Responsive */
    .search-progress-steps {
        margin: 1rem 0;
        gap: 1rem;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .current-step-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .search-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-details h3 {
        font-size: 1.2rem;
    }
    
    .step-details p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .find-location-hero h1 {
        font-size: 2rem;
    }
    
    .find-location-hero p {
        font-size: 1rem;
    }
    
    .form-group input {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }
    
    .find-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .location-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .result-card {
        padding: 1rem;
    }
    
    .location-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .location-info h3 {
        font-size: 1.2rem;
    }
    
    .location-info p {
        font-size: 1rem;
    }
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #0369a1;
    background: #f8fafc;
}

.payment-option input[type="radio"] {
    margin: 0;
}

.payment-option i {
    font-size: 1.5rem;
    color: #667eea;
}

.payment-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0369a1, #0284c7);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-btn:hover {
    background: linear-gradient(135deg, #047857, #059669);
    transform: translateY(-2px);
}

.map-container {
    height: 400px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
}

.location-details {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 10px;
}

.location-details h4 {
    margin-bottom: 1rem;
    color: #333;
}

.location-details p {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-info-bar {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .menu-text {
        display: block;
    }
    
    .mobile-site-title {
        display: block;
    }
    
    .mobile-nav-right {
        display: block;
    }
    
    .mobile-notification {
        display: block;
    }
    
    .top-info-right {
        display: none;
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 80px 0 20px 0;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        width: 100%;
        padding: 16px 24px;
        border-bottom: 1px solid #f1f5f9;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-link:hover {
        background: #f8fafc;
        color: #0369a1;
        padding-left: 28px;
    }
    
    .nav-menu .nav-link i {
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
    }
    
    .navbar {
        padding: 0.75rem 0;
        position: sticky;
        top: 0;
        z-index: 999;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-row.header-logos {
        margin-top: 0 !important;
        padding: 0.75rem 0;
        display: block !important;
        visibility: visible !important;
        position: relative !important;
        z-index: 1 !important;
        opacity: 1 !important;
        background: #f8fafc !important;
        width: 100% !important;
        max-width: 100vw !important;
        transform: none !important;
        clip-path: none !important;
        overflow: hidden !important;
    }
    
    .logo-row.header-logos .container {
        padding: 0 10px;
        max-width: 100%;
        overflow: hidden;
        width: 100%;
    }
    
    .carrier-slider {
        min-height: 60px;
        display: flex !important;
        visibility: visible !important;
        overflow: hidden !important;
        height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative;
    }
    
    .carrier-logos-list {
        gap: 1.5rem;
        animation-duration: 35s;
        display: flex !important;
        visibility: visible !important;
        height: auto !important;
        width: max-content !important;
        max-width: none !important;
        position: relative;
    }
    
    .carrier-item {
        min-width: 70px;
        height: 45px;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .carrier-item img {
        max-height: 40px;
        max-width: 100px;
        width: auto !important;
        height: auto !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        object-fit: contain !important;
    }
    
    .tagline-text {
        font-size: 0.9rem;
    }
    
    .logo-image {
        height: 75px;
        max-width: 320px;
    }
    
    .mobile-logo-image {
        height: 60px;
        max-width: 260px;
    }
    
    .footer-logo-image {
        height: 38px;
        max-width: 150px;
    }
    
    .hero {
        padding: 40px 0 40px;
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .country-code {
        border-radius: 15px 15px 0 0;
    }
    
    .phone-input,
    .phone-input-full {
        border-radius: 0;
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .track-btn {
        border-radius: 0 0 15px 15px;
    }
    
    .input-note {
        font-size: 0.8rem;
        margin-top: 0.75rem;
    }
    
    .Hero__logo {
        margin-bottom: 1.5rem;
    }
    
    .platform-compatibility p {
        font-size: 0.9rem;
    }
    
    .Helm-UserLogo img {
        height: 40px;
        width: 40px;
    }
    
    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .steps::before {
        display: none;
    }
    
    .step {
        padding: 0;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.75rem;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        line-height: 1.4;
    }
    
    
    .faq-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .read-more-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .carrier-logos-list {
        gap: 1.5rem;
        animation-duration: 30s;
    }
    
    .carrier-item {
        min-width: 70px;
        height: 35px;
    }
    
    .carrier-item img {
        max-height: 30px;
    }
    
    .hero {
        padding: 30px 0 30px;
        min-height: 40vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .Hero__logo {
        margin-bottom: 1rem;
    }
    
    .platform-compatibility p {
        font-size: 0.8rem;
    }
    
    .Helm-UserLogo img {
        height: 35px;
        width: 35px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .step-content h3 {
        font-size: 0.9rem;
    }
    
    .step-content p {
        font-size: 0.7rem;
    }
    
    /* Progress Tracking Responsive */
    .tracking-card {
        padding: 1.5rem;
    }
    
    .tracking-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .tracking-meta {
        text-align: center;
    }
    
    .progress-steps {
        gap: 1.5rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .process-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .process-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }
    
    .process-content h3 {
        font-size: 1.3rem;
    }
    
    .process-content p {
        font-size: 0.9rem;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-text {
        font-size: 0.8rem;
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    .faq-item h3 {
        font-size: 1rem;
    }
    
    .read-more-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .privacy-hero-content h1, .terms-hero-content h1 {
        font-size: 2rem;
    }
    
    .privacy-hero-content p, .terms-hero-content p {
        font-size: 1rem;
    }
    
    .privacy-section, .terms-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .privacy-section h2, .terms-section h2 {
        font-size: 1.3rem;
    }
    
    
    .auth-card {
        padding: 2rem;
    }
    
    .auth-content {
        padding: 30px 0 60px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .auth-features h3 {
        font-size: 2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    
    .auth-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .auth-content {
        padding: 20px 0 40px;
    }
    
    .auth-header h2 {
        font-size: 1.5rem;
    }
    
    .auth-features h3 {
        font-size: 1.8rem;
    }
    
    .auth-features .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

/* Progress animations removed */

/* How It Works Responsive */
@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }
    
    .platform-section {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .platform-header h3 {
        font-size: 1.5rem;
    }
    
    .platform-logos {
        gap: 1rem;
    }
    
    .platform-item {
        padding: 0.8rem;
    }
    
    .platform-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .how-it-works-content {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .how-it-works {
        padding: 60px 0;
    }
    
    .steps-container {
        flex-direction: column !important;
        gap: 1.5rem;
        padding: 2rem 0;
        align-items: center;
    }
    
    .steps-container::before {
        display: none;
    }
    
    .step-card {
        padding: 1.5rem 1rem;
        max-width: 100%;
        width: 100%;
        flex: none;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        align-self: flex-start;
    }
    
    .step-content {
        width: 100%;
        text-align: left;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        text-align: left;
    }
    
    .step-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        text-align: left;
    }
    
    .step-number {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        margin-bottom: 1rem;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .platform-logos {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .platform-item {
        flex-direction: row;
        gap: 1rem;
        padding: 1rem;
        width: 100%;
        justify-content: flex-start;
    }
    
    .steps-container {
        flex-direction: column !important;
        gap: 1.5rem;
        padding: 1.5rem 0;
        align-items: center;
    }
    
    .steps-container::before {
        display: none;
    }
    
    .step-card {
        width: 100%;
        max-width: 100%;
        padding: 1.2rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        align-self: flex-start;
    }
    
    .step-content {
        width: 100%;
        text-align: left;
    }
    
    .step-content h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        text-align: left;
    }
    
    .step-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        text-align: left;
    }
    
    .step-number {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        margin-bottom: 1rem;
        align-self: flex-start;
    }
}

/* Owner Details Section Styles */
.owner-details-section {
    padding: 40px 0 60px;
    background: var(--gray-50);
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* Data Stats Section */
.data-stats-section {
    padding: 40px 0;
    background: var(--white);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-content strong {
    font-size: 1rem;
    color: var(--gray-800);
    font-weight: 600;
}

.stat-content span {
    font-size: 0.9rem;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .data-stats-section {
        padding: 30px 0;
    }
    
    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.2rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
}

.owner-details-section .section-header {
    text-align: center;
    margin-bottom: 35px;
}

.owner-details-section .section-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
}

.owner-details-section .section-title i {
    color: var(--gray-500);
    font-size: 1rem;
}

.owner-details-section .section-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-card.photos-card {
        grid-column: 1;
    }
}

/* Detail Card */
.detail-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: var(--gray-50);
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-icon {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.card-header h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.card-body {
    padding: 1rem;
}

/* Info Item */
.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-label i {
    color: var(--gray-400);
    width: 20px;
    font-size: 0.85rem;
}

.info-value {
    color: var(--gray-600);
    font-size: 0.85rem;
}

/* Locked Badge */
.locked-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fef3c7;
    color: #92400e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #fde68a;
}

.locked-badge i {
    font-size: 0.75rem;
}

/* Social Media Items */
.social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
}

.social-item:last-child {
    border-bottom: none;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.tinder {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4458 100%);
}

.social-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-name {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.85rem;
}

/* Related Phone Numbers */
.related-number-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.related-number-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0.5rem;
}

.number-icon {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.number-icon i {
    font-size: 1.1rem;
    color: var(--accent-color);
}

.number-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.number-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.number-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
    font-family: 'Courier New', monospace;
}

.number-type-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
}

.number-relation {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.more-numbers-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.more-numbers-notice i {
    color: var(--accent-color);
    font-size: 1rem;
}

.more-numbers-notice span {
    font-size: 0.85rem;
    color: var(--gray-700);
}

.more-numbers-notice strong {
    color: var(--accent-color);
}

/* Photos Card Full Width */
.detail-card.photos-card {
    grid-column: 1 / -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* Photos Grid */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.photo-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.photo-item:nth-child(1) {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.3) 0%, rgba(255, 68, 88, 0.3) 100%),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23ff6b6b" width="400" height="400"/><circle cx="100" cy="100" r="80" fill="%23ff4458" opacity="0.6"/><circle cx="300" cy="300" r="120" fill="%23ee5a6f" opacity="0.4"/></svg>');
    background-size: cover;
}

.photo-item:nth-child(2) {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23667eea" width="400" height="400"/><circle cx="200" cy="150" r="100" fill="%23764ba2" opacity="0.5"/><circle cx="250" cy="300" r="90" fill="%235b4a9e" opacity="0.6"/></svg>');
    background-size: cover;
}

.photo-item:nth-child(3) {
    background: linear-gradient(135deg, rgba(247, 184, 75, 0.3) 0%, rgba(245, 158, 11, 0.3) 100%),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23f7b84b" width="400" height="400"/><circle cx="150" cy="200" r="110" fill="%23f59e0b" opacity="0.5"/><circle cx="300" cy="150" r="80" fill="%23fbbf24" opacity="0.6"/></svg>');
    background-size: cover;
}

.photo-item:nth-child(4) {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.3) 0%, rgba(16, 185, 129, 0.3) 100%),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%2334d399" width="400" height="400"/><circle cx="100" cy="300" r="90" fill="%2310b981" opacity="0.5"/><circle cx="300" cy="100" r="100" fill="%2306d6a0" opacity="0.6"/></svg>');
    background-size: cover;
}

.photo-item:hover {
    border-color: var(--accent-color);
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.photo-placeholder {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    font-size: 2rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.photo-item:hover .photo-overlay {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.photos-count {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.photos-count i {
    color: var(--gray-400);
    font-size: 0.85rem;
}

/* Card Footer */
.card-footer {
    padding: 1rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.unlock-btn {
    width: 100%;
    padding: 10px 20px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.unlock-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.unlock-btn:active {
    transform: translateY(0);
}

/* Additional Info Cards */
.additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(30, 41, 59, 0.06);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.12);
    border-color: var(--accent-color);
}

.info-box > i {
    font-size: 2rem;
    color: var(--accent-color);
    min-width: 40px;
    background: rgba(59, 130, 246, 0.1);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.info-content {
    flex: 1;
}

.info-content h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.unlock-btn-small {
    padding: 8px 16px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.unlock-btn-small:hover {
    background: #2563eb;
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.unlock-btn-small:active {
    transform: translateX(1px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .owner-details-section {
        padding: 30px 0 40px;
    }
    
    .owner-details-section .section-title {
        font-size: 1.3rem;
    }
    
    .owner-details-section .section-subtitle {
        font-size: 0.85rem;
    }
    
    .details-grid {
        gap: 15px;
    }
    
    .card-header {
        padding: 1.2rem;
    }
    
    .card-header h3 {
        font-size: 1.1rem;
    }
    
    .card-body {
        padding: 0.8rem;
    }
    
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .related-number-item {
        gap: 0.75rem;
    }
    
    .number-icon {
        width: 35px;
        height: 35px;
    }
    
    .number-text {
        font-size: 0.85rem;
    }
    
    .number-type-badge {
        font-size: 0.65rem;
    }
}
/* ====================================
   PRICING MODAL STYLES
   ==================================== */

.pricing-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.pricing-modal.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.pricing-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.pricing-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    max-width: 750px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, -40%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.pricing-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border: none;
    background: #f7fafc;
    color: #4a5568;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.pricing-modal-close:hover {
    background: #e2e8f0;
    transform: rotate(90deg);
}

.pricing-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-modal-header h2 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 800;
}

.pricing-modal-header p {
    font-size: 0.95rem;
    color: #718096;
}

.pricing-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.pricing-plan {
    background: #f7fafc;
    border-radius: 14px;
    padding: 25px 20px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-plan:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.pricing-plan.popular {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
}

.pricing-plan.popular .plan-header h3,
.pricing-plan.popular .plan-duration,
.pricing-plan.popular .plan-features {
    color: white;
}

.pricing-plan.popular .plan-features li {
    color: white;
}

.pricing-plan.popular .plan-features li.disabled {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-plan.popular .plan-features i {
    color: white;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #78350f;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.plan-header {
    text-align: center;
    margin-bottom: 20px;
}

.plan-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.plan-icon.basic {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.plan-icon.premium {
    background: #fbbf24;
    color: #78350f;
}

.plan-header h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 700;
}

.plan-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 5px;
}

.pricing-plan.popular .plan-price {
    color: white;
}

.plan-price sup {
    font-size: 1.2rem;
    font-weight: 600;
}

.plan-duration {
    color: #718096;
    font-size: 0.85rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px;
}

.plan-features li {
    padding: 8px 0;
    color: #4a5568;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
}

.plan-features i {
    margin-right: 8px;
    font-size: 0.9rem;
    color: #48bb78;
    flex-shrink: 0;
}

.plan-features li.disabled {
    opacity: 0.4;
}

.plan-features li.disabled i {
    color: #cbd5e0;
}

.plan-select-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.plan-select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.plan-select-btn.premium {
    background: white;
    color: #667eea;
}

.plan-select-btn.premium:hover {
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.pricing-modal-footer {
    text-align: center;
    padding-top: 18px;
    border-top: 2px solid #e2e8f0;
    color: #718096;
    font-size: 0.8rem;
}

.pricing-modal-footer i {
    color: #48bb78;
    margin-right: 6px;
    font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-modal-content {
        padding: 30px 20px;
        width: 95%;
        max-height: 90vh;
    }
    
    .pricing-modal-header {
        margin-bottom: 20px;
    }
    
    .pricing-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .pricing-modal-header p {
        font-size: 0.85rem;
    }
    
    .pricing-plans {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pricing-plan {
        padding: 20px 18px;
    }
    
    .plan-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .plan-header h3 {
        font-size: 1.2rem;
    }
    
    .plan-price {
        font-size: 1.8rem;
    }
    
    .plan-features li {
        font-size: 0.8rem;
        padding: 6px 0;
    }
    
    .plan-select-btn {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .pricing-modal-close {
        width: 32px;
        height: 32px;
        font-size: 22px;
        top: 12px;
        right: 12px;
    }
    
    .pricing-modal-footer {
        font-size: 0.75rem;
    }
}

/* Smooth scrollbar for modal */
.pricing-modal-content::-webkit-scrollbar {
    width: 8px;
}

.pricing-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.pricing-modal-content::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.pricing-modal-content::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
}

/* ==================================
   EMAIL GATE MODAL STYLES
   ================================== */

.email-gate-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.email-gate-modal.active {
    display: block;
}

.email-gate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.email-gate-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 24px;
    padding: 45px 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.email-gate-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.email-gate-close:hover {
    background: #e2e8f0;
    color: #1e293b;
    transform: rotate(90deg);
}

.email-gate-header {
    text-align: center;
    margin-bottom: 32px;
}

.email-gate-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.email-gate-icon i {
    font-size: 36px;
    color: white;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.email-gate-header h2 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 8px;
    font-weight: 700;
}

.email-gate-header p {
    color: #64748b;
    font-size: 0.95rem;
}

.email-gate-form {
    margin-top: 28px;
}

.form-group {
    margin-bottom: 24px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 18px;
}

.input-with-icon input {
    width: 100%;
    padding: 16px 16px 16px 50px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    color: #1e293b;
    transition: all 0.3s ease;
}

.input-with-icon input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.benefits-list {
    margin: 24px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #475569;
    font-size: 0.9rem;
}

.benefit-item i {
    color: #10b981;
    font-size: 18px;
}

.email-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.email-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.email-submit-btn i {
    font-size: 16px;
}

.privacy-text {
    text-align: center;
    color: #94a3b8;
    font-size: 0.85rem;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.privacy-text i {
    color: #10b981;
}

/* ==================================
   DYNAMIC UNLOCK MODAL STYLES
   ================================== */

.dynamic-unlock-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.dynamic-unlock-modal.active {
    display: block;
}

.dynamic-unlock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
}

.dynamic-unlock-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    padding: 32px 28px;
    max-width: 720px;
    width: 90%;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dynamic-unlock-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.dynamic-unlock-close:hover {
    background: #e2e8f0;
    color: #1e293b;
    transform: rotate(90deg);
}

.unlock-header {
    text-align: center;
    margin-bottom: 28px;
}

.unlock-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.unlock-icon i {
    font-size: 32px;
    color: white;
}

.unlock-header h2 {
    font-size: 1.65rem;
    color: #1e293b;
    margin-bottom: 6px;
    font-weight: 700;
}

.unlock-header p {
    color: #64748b;
    font-size: 0.95rem;
}

.unlock-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.unlock-option {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 22px 18px;
    transition: all 0.3s ease;
    position: relative;
}

.unlock-option:hover {
    border-color: #cbd5e1;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.unlock-option.recommended {
    border-color: #667eea;
    border-width: 3px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
}

.unlock-option.recommended:hover {
    border-color: #667eea;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.recommended-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 14px;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.option-header {
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
}

.option-header h3 {
    font-size: 1.15rem;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 700;
}

.option-price {
    font-size: 1.95rem;
    color: #667eea;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.option-price sup {
    font-size: 1.05rem;
    font-weight: 600;
}

.original-price {
    font-size: 1rem;
    color: #94a3b8;
    text-decoration: line-through;
    display: block;
    margin-bottom: 3px;
}

.save-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 6px;
}

.option-features {
    margin: 16px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    color: #475569;
    font-size: 0.88rem;
}

.feature-item i {
    color: #10b981;
    font-size: 14px;
    min-width: 14px;
}

.unlock-btn-option {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.unlock-btn-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.unlock-btn-option.premium {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.unlock-btn-option.premium:hover {
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
}

.unlock-footer {
    text-align: center;
    padding-top: 18px;
    margin-top: 22px;
    border-top: 2px solid #e2e8f0;
    color: #718096;
    font-size: 0.8rem;
}

.unlock-footer i {
    color: #48bb78;
    margin-right: 6px;
}

/* Mobile Responsive for New Modals */
@media (max-width: 768px) {
    .email-gate-content {
        padding: 35px 25px;
        width: 94%;
    }
    
    .email-gate-header h2 {
        font-size: 1.5rem;
    }
    
    .email-gate-icon {
        width: 70px;
        height: 70px;
    }
    
    .email-gate-icon i {
        font-size: 30px;
    }
    
    .dynamic-unlock-content {
        padding: 24px 18px;
        width: 95%;
        max-width: 100%;
    }
    
    .unlock-options {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .unlock-header {
        margin-bottom: 20px;
    }
    
    .unlock-header h2 {
        font-size: 1.4rem;
    }
    
    .unlock-icon {
        width: 60px;
        height: 60px;
    }
    
    .unlock-icon i {
        font-size: 28px;
    }
    
    .unlock-option {
        padding: 18px 14px;
    }
    
    .option-header h3 {
        font-size: 1.05rem;
    }
    
    .option-price {
        font-size: 1.7rem;
    }
    
    .feature-item {
        font-size: 0.83rem;
        padding: 6px 0;
    }
    
    .unlock-btn-option {
        padding: 12px;
        font-size: 0.9rem;
    }
}
