

        /* Color Variables */
        :root {
            --gold: #D4AF37;
            --gold-light: #F4E4BC;
            --gold-dark: #B8941F;
            --gold-darker: #9A7B1A;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes pulseGold {
            0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .animate-fade-in { animation: fadeIn 0.8s ease-in-out; }
        .animate-slide-up { animation: slideUp 0.8s ease-out; }
        .animate-float { animation: float 3s ease-in-out infinite; }
        .animate-pulse-gold { animation: pulseGold 2s infinite; }

        /* Utility Classes */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .text-center { text-align: center; }
        .text-gold { color: var(--gold); }
        .bg-gold { background-color: var(--gold); }
        .bg-black { background-color: #000; }
        .bg-white { background-color: #fff; }
        .bg-gray-50 { background-color: #f9fafb; }

        .gradient-text {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gradient-gold {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
        }

        /* Premium Highlights Strip */
        .highlights-strip {
            background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
            color: #fff;
            padding: 16px 0;
            overflow: hidden;
            position: relative;
            border-bottom: 2px solid var(--gold);
        }

        .highlights-container {
            display: flex;
            animation: scroll 10s linear infinite;
            white-space: nowrap;
        }

        .highlight-item {
            display: inline-flex;
            align-items: center;
            margin-right: 48px;
            padding: 8px 16px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 25px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            backdrop-filter: blur(10px);
            min-width: fit-content;
        }

        .highlight-icon {
            font-size: 18px;
            margin-right: 8px;
        }

        .highlight-text {
            font-size: 14px;
            font-weight: 600;
            color: var(--gold);
        }

        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-text {
            font-size: 32px;
            font-weight: bold;
            font-family: 'Playfair Display', serif;
        }

        .logo-est {
            margin-left: 16px;
            font-size: 12px;
            color: #666;
            font-weight: 500;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 32px;
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 8px 12px;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--gold);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .btn-premium {
            background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-darker) 100%);
            color: white !important;
            padding: 12px 24px;
            border-radius: 50px !important;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer !important;
            position: relative;
            overflow: hidden;
        }

        .btn-premium:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(154, 123, 26, 0.5);
        }

        .btn-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .btn-premium:hover::before {
            left: 100%;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #333;
        }

        /* Hero Section - Redesigned */
        .hero {
            min-height: 120vh;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 15px 0 100px 0;
            @media(max-width:480px){
                padding: 45px 0 100px 0;
            }
            @media(min-width:481px) and (max-width:1460px){
                padding: 45px 0 45px 0;
            }
        }
        

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.15) 50%, transparent 100%);
            border-radius: 0 0 0 100px;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 60% 40%;
            gap: 20px;
            align-items: stretch;
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            height: 100%;
        }

        .hero-content {
            position: relative;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
            color: var(--gold-dark);
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 32px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            backdrop-filter: blur(10px);
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            margin-right: 12px;
            animation: pulseGold 2s infinite;
        }

        .hero-title {
            font-size: 3.5rem !important;
            font-family: 'Playfair Display', serif !important;
            font-weight: 800 !important;
            color: #1a202c !important;
            margin-bottom: 24px;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            font-size: 20px;
            color: #64748b;
            margin-bottom: 40px;
            line-height: 1.7;
            font-weight: 400;
            max-width: 95%;
        }

        /* Hero Stats - Redesigned */
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 40px;
            padding: 24px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .stat-card {
            text-align: center;
            padding: 20px 16px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.1) 100%);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 16px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            border-radius: 16px 16px 0 0;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
            border-color: rgba(212, 175, 55, 0.4);
        }

        .stat-number {
            font-size: 28px;
            font-family: 'Playfair Display', serif;
            font-weight: 900;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
            line-height: 1;
        }

        .stat-label {
            font-size: 12px;
            color: #475569;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 6px;
        }

        .stat-badge {
            font-size: 10px;
            color: var(--gold-dark);
            font-weight: 700;
            background: rgba(212, 175, 55, 0.15);
            padding: 4px 8px;
            border-radius: 12px;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Hero Buttons */
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        .hero-buttons a{
            
        }

        .btn-secondary {
            border: 2px solid var(--gold);
            color: var(--gold) !important;
            background: transparent;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-secondary:hover {
            background: var(--gold);
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-darker) 100%);
            color: white;
            padding: 18px 36px;
            border-radius: 50px !important;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
        }

        /* Contact Form - Optimized */
        .contact-form {
            background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
            border: 2px solid rgba(212, 175, 55, 0.2);
            padding: 32px 24px;
            border-radius: 24px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            backdrop-filter: blur(20px);
            height: fit-content;
            max-width: 100%;
        }

        .contact-form:hover {
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 0 35px 80px rgba(212, 175, 55, 0.15);
            transform: translateY(-5px);
        }

        .form-header {
            text-align: center;
            margin-bottom: 24px;
        }

        .form-title {
            font-size: 26px;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .form-subtitle {
            color: #64748b;
            margin-bottom: 16px;
            font-size: 15px;
            line-height: 1.4;
        }

        .form-divider {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            margin: 0 auto 6px;
            border-radius: 2px;
        }

        .form-body {
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }
        .form-input{
             border-radius: 12px !important;
        }

        .form-input, .form-select {
            width: 100% !important;
            padding: 14px 16px !important;
            border: 2px solid #e2e8f0 !important;
            border-radius: 12px !important;
            font-size: 15px !important;
            transition: all 0.3s ease !important;
            background: rgba(248, 250, 252, 0.8) !important;
            font-family: 'Inter', sans-serif !important;
            box-sizing: border-box !important;
        }

        .form-input:focus, .form-select:focus {
            outline: none !important;
            border-color: var(--gold) !important;
            box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
            background: white !important;
        }

        .form-input::placeholder {
            color: #94a3b8 !important;
            font-weight: 400 !important;
        }

        .form-select {
            cursor: pointer;
            color: #475569;
        }

        .form-select option {
            padding: 8px;
            background: white;
            color: #1a202c;
        }

        .form-disclaimer {
            font-size: 12px;
            color: #64748b;
            line-height: 1.5;
            margin-bottom: 20px;
            text-align: center;
            padding: 14px 16px;
            background: rgba(212, 175, 55, 0.05);
            border-radius: 8px;
            border-left: 3px solid var(--gold);
        }

        .form-submit {
            width: 100%;
            padding: 18px 24px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 12px !important;
            border: none;
            cursor: pointer !important;
            transition: all 0.3s ease;
            background: transparent;
            color: (--gold);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3) !important;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
            background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-darker) 100%);
        }

        .form-submit:active {
            transform: translateY(0);
        }

        /* Hero Slider */
        .hero-slide {
            display: none;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .hero-slide.active {
            display: block;
            opacity: 1;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
        }

        .slider-dot {
            width: 14px !important;
            height: 14px !important;
            border-radius: 50% !important;
            background: #cbd5e1 !important;
            padding: 0 !important;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .slider-dot.active {
            background: var(--gold) !important;
            transform: scale(1.3) !important;
            box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2) !important;
        }

        .slider-dot:hover {
            background: var(--gold);
            transform: scale(1.1);
        }

        /* Journey Section */
        .journey-section {
            padding: 80px 0;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(212, 175, 55, 0.1);
            color: var(--gold);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
        }

        .section-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            margin-right: 8px;
        }

        .section-title {
            font-size: 48px !important;
            font-family: 'Playfair Display', serif !important;
            font-weight: bold !important;
            margin-bottom: 24px;
        }

        .section-subtitle {
            font-size: 20px !important;
            color: #909090 !important;
            max-width: 600px !important;
            margin: 0 auto;
            line-height: 1.6;
        }

        .section-divider {
            width: 96px;
            height: 4px;
            background: var(--gold);
            margin: 24px auto 0;
            border-radius: 2px;
        }

        /* Timeline */
        .timeline {
            position: relative;
            width: 100%;
            padding-bottom: 32px;
        }

        .timeline-line {
            position: absolute;
            top: 128px;
            left: 5%;
            right: 5%;
            height: 4px;
            background: linear-gradient(to right, rgba(212, 175, 55, 0.3), var(--gold), rgba(212, 175, 55, 0.3));
            border-radius: 2px;
        }

        .timeline-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            width: 100%;
            padding: 0;
        }

        .timeline-item {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .timeline-card {
            background: white;
            padding: 24px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 1px solid rgba(212, 175, 55, 0.1);
            margin-bottom: 5px;
            transition: all 0.3s ease;
        }

        .timeline-card:hover {
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .timeline-year {
            font-size: 32px;
            font-family: 'Playfair Display', serif;
            font-weight: bold;
            color: var(--gold);
            margin-bottom: 12px;
            text-align: center;
        }

        .timeline-title {
            font-size: 20px !important;
            font-family: 'Playfair Display', serif !important;
            font-weight: bold !important;
            color: #000 !important;
            margin-bottom: 12px !important;
            text-align: center !important;
        }

        .timeline-description {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
            text-align: center;
            margin-bottom: 16px;
        }

        .timeline-stats {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .timeline-stat {
            text-align: center;
            padding: 8px;
            background: rgba(212, 175, 55, 0.05);
            border-radius: 8px;
        }

        .timeline-stat-value {
            font-weight: bold;
            color: var(--gold);
            font-size: 14px;
        }

        .timeline-stat-label {
            font-size: 12px;
            color: #666;
        }

        .timeline-dot {
            width: 64px;
            height: 64px;
            background: linear-gradient(to right, var(--gold), var(--gold-dark));
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            z-index: 0;
            position: relative;
        }

        /* Achievement Stats */
        .achievement-stats {
            margin-top: 80px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .achievement-card {
            text-align: center;
            padding: 24px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.1) 100%);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 12px;
            transition: all 0.4s ease;
        }

        .achievement-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .achievement-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }

        .achievement-number {
            font-size: 32px;
            font-family: 'Playfair Display', serif;
            font-weight: bold;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .achievement-label {
            color: #333;
            font-weight: 600;
        }

        /* Awards Section */
        .awards-section {
            padding: 96px 0;
            background: #000;
            color: white !important;
            position: relative;
            overflow: hidden;
        }

        .awards-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(212, 175, 55, 0.05), transparent);
        }

        .awards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .award-card {
            text-align: center;
            padding: 32px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.4s ease;
        }

        .award-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .award-icon {
            font-size: 64px;
            margin-bottom: 16px;
        }

        .award-title {
            font-size: 20px !important;
            font-family: 'Playfair Display', serif !important;
            font-weight: bold !important;
            color: var(--gold) !important;
            margin-bottom: 8px;
        }

        .award-description {
            color: #ccc;
            font-size: 14px;
        }

        /* Property Sections */
        .property-section {
            padding: 96px 0;
        }

        .property-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
        }

        .property-card {
            background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
            border: 1px solid rgba(212, 175, 55, 0.1);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .property-card:hover {
            transform: translateY(-8px);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 25px 50px rgba(212, 175, 55, 0.1);
        }

        .property-image {
            height: 256px;
            /*background: linear-gradient(135deg, var(--gold-light), var(--gold));*/
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .property-image-icon {
            font-size: 80px;
            /*opacity: 0.2;*/
            transition: transform 0.5s ease;
        }

        .property-card:hover .property-image-icon {
            transform: scale(1.1);
        }

        .property-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(255, 255, 255, 0.9);
            color: var(--gold);
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
        }

        .property-content {
            padding: 32px;
        }

        .property-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .property-title {
            font-size: 24px !important;
            font-family: 'Playfair Display', serif !important;
            font-weight: bold !important;
            color: #000 !important;
        }

        .property-price {
            color: var(--gold);
            font-weight: 600;
        }

        .property-location {
            color: var(--gold);
            font-weight: 500;
            font-size: 18px;
            margin-bottom: 12px;
        }

        .property-description {
            color: #666;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .property-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 5px;
        }

        .property-specs {
            font-size: 14px;
            color: #666;
        }

        .property-specs div {
            margin-bottom: 4px;
        }

        /* Cities Section */
        .cities-section {
            padding: 96px 0;
            background: white;
        }

        .cities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .city-card {
            background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
            border: 1px solid rgba(212, 175, 55, 0.1);
            padding: 32px;
            border-radius: 16px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .city-card:hover {
            transform: translateY(-8px);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 25px 50px rgba(212, 175, 55, 0.1);
        }

        .city-icon {
            width: 100%;
            height: auto;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 32px;
            color: white;
            transition: transform 0.3s ease;
        }

        .city-card:hover .city-icon {
            transform: scale(1.1);
        }

        .city-title {
            font-size: 24px !important;
            font-family: 'Playfair Display', serif !important;
            font-weight: bold !important;
            color: #000 !important;
            margin-bottom: 16px;
        }

        .city-description {
            color: #666;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .city-stats {
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-size: 14px;
        }

        .city-stat {
            display: flex;
            justify-content: space-between;
        }

        .city-stat-label {
            color: #666;
        }

        .city-stat-value {
            font-weight: 600;
            color: var(--gold);
        }

        /* Reviews Section */
        .reviews-section {
            padding: 96px 0;
            background: linear-gradient(to bottom, #f9fafb, white);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
        }

        .review-card {
            background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
            border: 1px solid rgba(212, 175, 55, 0.1);
            padding: 32px;
            border-radius: 16px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(212, 175, 55, 0.1);
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 24px;
        }

        .review-avatar {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 20px;
            margin-right: 16px;
        }

        .review-info h4 {
            font-weight: bold;
            color: #000;
            margin-bottom: 4px;
        }

        .review-info p {
            color: #666;
            font-size: 14px;
            margin-bottom: 4px;
        }

        .review-stars {
            color: var(--gold);
            font-size: 14px;
        }

        .review-text {
            color: #666;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .review-investment {
            font-size: 14px;
            color: var(--gold);
            font-weight: 600;
        }

        /* Review Stats */
        .review-stats {
            margin-top: 64px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .review-stat-card {
            text-align: center;
            padding: 32px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.1) 100%);
            border: 2px solid rgba(212, 175, 55, 0.2);
            border-radius: 16px;
            transition: all 0.4s ease;
        }

        .review-stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .review-stat-number {
            font-size: 48px;
            font-family: 'Playfair Display', serif;
            font-weight: 900;
            background: linear-gradient(to right, var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }

        .review-stat-label {
            color: #333;
            font-weight: bold;
            font-size: 18px;
            margin-bottom: 8px;
        }

        .review-stat-badge {
            color: var(--gold);
            font-size: 14px;
            font-weight: 600;
            background: rgba(212, 175, 55, 0.1);
            padding: 6px 12px;
            border-radius: 50px;
            display: inline-block;
        }

        /* Contact Section */
        .contact-section {
            padding: 96px 0;
            background: #000;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(212, 175, 55, 0.1), transparent);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            position: relative;
            z-index: 10;
        }

        .contact-info h3 {
            font-size: 32px;
            font-family: 'Playfair Display', serif;
            font-weight: bold;
            margin-bottom: 32px;
        }

        .contact-features {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-feature {
            display: flex;
            align-items: flex-start;
        }

        .contact-feature-number {
            width: 48px;
            height: 48px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-weight: bold;
            margin-right: 24px;
            flex-shrink: 0;
        }

        .contact-feature-content h4 {
            font-size: 20px;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .contact-feature-content p {
            color: #ccc;
            line-height: 1.6;
        }

        .contact-details {
            margin-top: 48px;
            padding: 24px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .contact-details h4 {
            font-size: 20px;
            font-family: 'Playfair Display', serif;
            font-weight: bold;
            color: var(--gold);
            margin-bottom: 16px;
        }

        .contact-detail {
            align-items: center !important;
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
        }

        .contact-detail-icon {
            width: 32px;
            height: 32px;
            background: rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 16px;
            margin-top: 4px;
            flex-shrink: 0;
        }

        .contact-form-dark {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 32px;
            border-radius: 16px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .contact-form-dark .form-input,
        .contact-form-dark .form-select,
        .contact-form-dark textarea {
            background: rgba(255, 255, 255, 0.1) !important;
            border: 1px solid rgba(255, 255, 255, 0.2) !important;
            color: white !important;
        }

        .contact-form-dark .form-input::placeholder,
        .contact-form-dark .form-select::placeholder,
        .contact-form-dark textarea::placeholder {
            color: #ccc !important;
        }

        .contact-form-dark .form-input:focus,
        .contact-form-dark .form-select:focus,
        .contact-form-dark textarea:focus {
            border-color: var(--gold) !important;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2) !important;
        }

        .contact-form-dark select option {
            color: #000;
        }

        .contact-form-dark textarea {
            resize: none;
        }

        .contact-disclaimer {
            text-align: center;
            margin-top: 24px;
        }

        .contact-disclaimer p {
            font-size: 14px;
            color: #999;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
            color: white;
            padding: 0;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--gold), transparent);
        }

        /* Footer CTA Section */
        .footer-cta {
            background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-darker) 100%);
            padding: 60px 0;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .footer-cta-content h3 {
            font-size: 36px;
            font-family: 'Playfair Display', serif;
            font-weight: bold;
            color: white;
            margin-bottom: 16px;
        }

        .footer-cta-content p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 32px;
        }

        .footer-cta-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .footer-cta-buttons .btn-premium {
            background: white;
            color: var(--gold-dark);
        }

        .footer-cta-buttons .btn-secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .footer-cta-buttons .btn-secondary:hover {
            background: white !important;
            color: var(--gold-dark);
        }

        .footer-cta-stats {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .footer-cta-stat {
            text-align: center;
            padding: 24px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }

        .footer-cta-stat-number {
            font-size: 32px;
            font-family: 'Playfair Display', serif;
            font-weight: bold;
            color: white;
            margin-bottom: 8px;
        }

        .footer-cta-stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 48px;
            padding: 80px 0 0;
        }

        .footer-brand {
            margin-bottom: 24px;
        }

        .footer-logo {
            font-size: 32px;
            font-family: 'Playfair Display', serif;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .footer-tagline {
            color: var(--gold);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-description {
            color: #999;
            margin-bottom: 24px;
            line-height: 1.6;
            font-size: 14px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            background: rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 18px;
        }

        .footer-social-link:hover {
            background: var(--gold);
            color: white;
            transform: translateY(-2px);
        }

        .footer-section h4 {
            font-size: 18px;
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 24px;
            text-align: center;
        }

        .footer-section h5 {
            font-size: 16px;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 12px;
            margin-top: 24px;
        }

        .footer-links {
            list-style: none;
            text-align: center;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        /* Newsletter Styling */
        .footer-newsletter {
            background: rgba(212, 175, 55, 0.1);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            margin-bottom: 24px;
        }

        .footer-newsletter h5 {
            color: var(--gold);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            margin-top: 0;
        }

        .footer-newsletter p {
            font-size: 13px;
            color: #ccc;
            margin-bottom: 16px;
            line-height: 1.4;
        }

        .newsletter-form {
            display: flex;
            gap: 8px;
            margin-bottom: 12px;
        }

        .newsletter-input {
            flex: 1 !important;
            padding: 10px 12px !important;
            border: 1px solid rgba(255, 255, 255, 0.2) !important;
            border-radius: 6px !important;
            background: rgba(255, 255, 255, 0.1) !important;
            color: white !important;
            font-size: 14px !important;
        }

        .newsletter-input::placeholder {
            color: #999 !important;
        }

        .newsletter-btn {
            background: var(--gold);
            color: #000;
            border: none;
            padding: 10px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: var(--gold-dark);
        }

        .newsletter-benefits {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .newsletter-benefits span {
            font-size: 12px;
            color: #ccc;
        }

        /* Footer Stats */
        .footer-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 24px;
        }

        .footer-stat {
            text-align: center;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .footer-stat-number {
            font-size: 16px;
            font-weight: bold;
            color: var(--gold);
            margin-bottom: 4px;
        }

        .footer-stat-label {
            font-size: 11px;
            color: #999;
        }

        /* Service Highlights */
        .footer-service-highlight {
            background: rgba(212, 175, 55, 0.1);
            padding: 16px;
            border-radius: 8px;
            margin-top: 20px;
        }

        .footer-service-highlight h5 {
            margin-top: 0;
            margin-bottom: 8px;
        }

        .footer-service-highlight p {
            font-size: 13px;
            color: #ccc;
            margin-bottom: 12px;
        }

        .footer-vip-services {
            list-style: none;
            padding: 0;
        }

        .footer-vip-services li {
            font-size: 12px;
            color: #999;
            margin-bottom: 4px;
        }

        /* Office Info */
        .footer-office-info {
            background: rgba(255, 255, 255, 0.05);
            padding: 16px;
            border-radius: 8px;
            margin-top: 20px;
        }

        .footer-office-info h5 {
            margin-top: 16px;
            margin-bottom: 8px;
        }

        .footer-office-info h5:first-child {
            margin-top: 0;
        }

        .footer-office-info p {
            font-size: 13px;
            color: #ccc;
            line-height: 1.4;
            margin-bottom: 12px;
        }

        /* Market Insights */
        .footer-market-insights {
            background: rgba(255, 255, 255, 0.05);
            padding: 16px;
            border-radius: 8px;
            margin-top: 20px;
        }

        .market-insight-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .market-insight-item:last-child {
            border-bottom: none;
        }

        .insight-title {
            font-size: 12px;
            color: #ccc;
        }

        .insight-trend {
            font-size: 12px;
            color: var(--gold);
            font-weight: 600;
        }

        /* Certifications */
        .footer-certifications {
            margin-top: 20px;
        }

        .certification-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 16px;
        }

        .certification-badge {
            background: rgba(212, 175, 55, 0.1);
            color: var(--gold);
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 500;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .footer-awards {
            background: rgba(255, 255, 255, 0.05);
            padding: 12px;
            border-radius: 6px;
        }

        .award-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .award-list li {
            font-size: 12px;
            color: #999;
            margin-bottom: 4px;
        }

        /* Featured Properties */
        .footer-featured {
            background: rgba(255, 255, 255, 0.05);
            padding: 16px;
            border-radius: 8px;
            margin-top: 20px;
        }

        .featured-property {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .featured-property:last-child {
            border-bottom: none;
        }

        .featured-property-name {
            font-size: 13px;
            color: var(--gold);
            font-weight: 600;
        }

        .featured-property-price {
            font-size: 12px;
            color: #ccc;
        }

        .featured-property-status {
            font-size: 11px;
            color: #999;
        }

        /* Trust Indicators */
        .footer-trust {
            background: rgba(212, 175, 55, 0.1);
            padding: 16px;
            border-radius: 8px;
            margin-top: 20px;
        }

        .trust-indicators {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .trust-indicators li {
            font-size: 12px;
            color: #ccc;
            margin-bottom: 6px;
        }

        /* Footer Middle */
        .footer-middle {
            background: rgba(255, 255, 255, 0.02);
            padding: 40px 0;
            margin: 48px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-locations {
            margin-bottom: 32px;
        }

        .footer-locations h4 {
            font-size: 20px;
            font-family: 'Playfair Display', serif;
            color: var(--gold);
            margin-bottom: 24px;
        }

        .location-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
        }

        .location-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 8px;
        }

        .location-item h5 {
            color: var(--gold);
            margin-bottom: 8px;
            font-size: 16px;
        }

        .location-item p {
            color: #ccc;
            font-size: 14px;
        }

        .footer-partnerships h4 {
            font-size: 20px;
            font-family: 'Playfair Display', serif;
            color: var(--gold);
            margin-bottom: 24px;
        }

        .partner-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
        }

        .partner-category {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 8px;
        }

        .partner-category h5 {
            color: var(--gold);
            margin-bottom: 8px;
            font-size: 16px;
        }

        .partner-category p {
            color: #ccc;
            font-size: 14px;
            line-height: 1.4;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding: 32px 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: start;
        }

        .footer-bottom-left {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-copyright {
            color: #999;
            font-size: 13px;
            line-height: 1.4;
        }

        .footer-disclaimer {
            color: #777;
            font-size: 12px;
            line-height: 1.4;
            font-style: italic;
        }

        .footer-bottom-right {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: flex-end;
        }

        .footer-legal {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .footer-legal a {
            color: #999;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--gold);
        }

        .footer-security {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .security-badge {
            background: rgba(212, 175, 55, 0.1);
            color: var(--gold);
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 500;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        /* Footer Newsletter */
        .footer-newsletter {
            background: rgba(212, 175, 55, 0.1);
            padding: 24px;
            border-radius: 12px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            margin-bottom: 24px;
        }

        .footer-newsletter h5 {
            color: var(--gold);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .footer-newsletter p {
            font-size: 14px;
            color: #ccc;
            margin-bottom: 16px;
            line-height: 1.4;
        }

        .newsletter-form {
            display: flex;
            gap: 8px;
        }

        .newsletter-input {
            flex: 1 !important;
            padding: 10px 12px !important;
            border: 1px solid rgba(255, 255, 255, 0.2) !important;
            border-radius: 6px !important;
            background: rgba(255, 255, 255, 0.1) !important;
            color: white !important;
            font-size: 14px !important;
        }

        .newsletter-input::placeholder {
            color: #999 !important;
        }

        .newsletter-btn {
            background: var(--gold);
            color: #000;
            border: none;
            padding: 10px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: var(--gold-dark);
        }

        /* Footer Stats */
        .footer-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 24px;
        }

        .footer-stat {
            text-align: center;
            padding: 16px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .footer-stat-number {
            font-size: 20px;
            font-weight: bold;
            color: var(--gold);
            margin-bottom: 4px;
        }

        .footer-stat-label {
            font-size: 12px;
            color: #999;
        }

        /* Footer Certifications */
        .footer-certifications {
            margin-top: 24px;
        }

        .footer-certifications h5 {
            color: var(--gold);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .certification-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .certification-badge {
            background: rgba(212, 175, 55, 0.1);
            color: var(--gold);
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 500;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 48px;
                padding: 0 10px;
            }

            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .footer-cta {
                grid-template-columns: 1fr;
                gap: 32px;
                text-align: center;
            }

            .footer-cta-stats {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-container {
                grid-template-columns: repeat(3, 1fr);
                gap: 32px;
            }
            
            .footer-bottom {
                grid-template-columns: 1fr;
                gap: 24px;
                text-align: center;
            }
            
            .footer-bottom-right {
                align-items: center;
            }

            .timeline-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-title {
                font-size: 3rem;
            }

            .hero-stats {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .timeline-content {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .timeline-line {
                display: none;
            }

            .achievement-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .awards-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .review-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .section-title {
                font-size: 36px;
            }

            .footer-cta {
                padding: 40px 0;
            }

            .footer-cta-content h3 {
                font-size: 28px;
            }

            .footer-cta-stats {
                grid-template-columns: 1fr;
            }

            .footer-cta-buttons {
                flex-direction: column;
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .footer-stats {
                grid-template-columns: 1fr;
            }

            .location-grid {
                grid-template-columns: 1fr;
            }

            .partner-categories {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                grid-template-columns: 1fr;
                gap: 24px;
                text-align: center;
            }

            .footer-bottom-right {
                align-items: center;
            }

            .footer-legal {
                justify-content: center;
            }
            .hero-title{
                font-size: 45px !important;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .achievement-stats {
                grid-template-columns: 1fr;
            }

            .awards-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .review-stats {
                grid-template-columns: 1fr;
            }

            .timeline-item {
                width: 100%;
            }

            .section-title {
                font-size: 28px;
            }

            .footer-cta-content h3 {
                font-size: 24px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-cta-buttons .btn-premium,
            .footer-cta-buttons .btn-secondary {
                width: 100%;
                text-align: center;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-btn {
                width: 100%;
                padding: 12px;
            }

            .footer-security {
                justify-content: center;
            }
            .hero-badge{
                font-size:13px;
            }
            .timeline-dot.top-icon {
                position: absolute;
                top: -68px;
            }
            .m-mt-70{
                margin-top: 70px;
            }
        }
        .btn-secondary.card,a.btn-premium.card{
            padding: 10px 12px !important;
            border-radius: 25px !important;
        }
        .text-center{
            text-align: center;
        }
        .justify-center{
            justify-content: center;
        }
        .mb-0{
            margin-bottom: 0;
        }