 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gold: #D4AF37;
            --secondary-gold: #FFD700;
            --accent-gold: #B8860B;
            --dark-black: #0A0A0A;
            --light-black: #1A1A1A;
            --card-black: #141414;
            --text-white: #FFFFFF;
            --text-gray: #B8B8B8;
        }

        body {
                font-family: "Inter", "Satoshi", "Helvetica Neue", Arial, sans-serif; 
            background-color: var(--dark-black);
            color: var(--text-white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3 {
          
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 50px;
        }

        .logo {
            font-size: 28px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
       
            letter-spacing: 2px;
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
            color: var(--dark-black);
            padding: 12px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
              background-image: linear-gradient(to top, #000000 0%, #0e1518 100%);
            z-index: 0;
        }

        .hero-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background-image: 
                linear-gradient(30deg, transparent 12%, rgba(212, 175, 55, 0.05) 12%, rgba(212, 175, 55, 0.05) 14%, transparent 14%);
            background-size: 60px 60px;
            opacity: 0.3;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
                padding-top: 41px;
            padding-bottom: 63px;
        }

        .hero-content h1 {
             font-size: 59px;
    line-height: 68px;
    margin-bottom: 25px;
    font-family: "Inter", "Satoshi", "Helvetica Neue", Arial, sans-serif;
    font-weight: 800;
    color: var(--text-white);
        }

        .hero-content h1 .highlight {
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .hero-subtitle {
            font-size: 23px;
            color: var(--text-gray);
            margin-bottom: 30px;
            line-height: 1.5;
            font-weight: 300;
        }

        .hero-features {
            display: flex;
            gap: 40px;
            margin: 40px 0;
        }

        .hero-feature {
            text-align: center;
        }

        .hero-feature-number {
            font-size: 48px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
          
        }

        .hero-feature-text {
            font-size: 14px;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .cta-group {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }

        .cta-primary {
            background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
            color: var(--dark-black);
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            display: inline-block;
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
        }

        .cta-secondary {
            background: transparent;
            color: var(--primary-gold);
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-gold);
            display: inline-block;
        }

        .cta-secondary:hover {
            background: rgba(212, 175, 55, 0.1);
        }

        .hero-visual {
            position: relative;
            height: 600px;
        }

        .phone-mockup {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 320px;
            height: 526px;
            background: linear-gradient(135deg, var(--light-black), var(--card-black));
            border-radius: 45px;
            border: 8px solid var(--primary-gold);
            box-shadow: 0 30px 80px rgba(212, 175, 55, 0.3);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }

        .voice-wave {
            width: 200px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            margin-bottom: 20px;
        }

        .wave-bar {
            width: 4px;
            background: linear-gradient(to top, var(--accent-gold), var(--secondary-gold));
            border-radius: 4px;
            animation: wave 1s ease-in-out infinite;
        }

        .wave-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
        .wave-bar:nth-child(2) { height: 40px; animation-delay: 0.1s; }
        .wave-bar:nth-child(3) { height: 60px; animation-delay: 0.2s; }
        .wave-bar:nth-child(4) { height: 45px; animation-delay: 0.3s; }
        .wave-bar:nth-child(5) { height: 70px; animation-delay: 0.4s; }
        .wave-bar:nth-child(6) { height: 35px; animation-delay: 0.5s; }
        .wave-bar:nth-child(7) { height: 55px; animation-delay: 0.6s; }
        .wave-bar:nth-child(8) { height: 25px; animation-delay: 0.7s; }

        @keyframes wave {
            0%, 100% { transform: scaleY(1); }
            50% { transform: scaleY(1.5); }
        }

        .phone-text {
            text-align: center;
            color: var(--primary-gold);
            font-weight: 600;
            font-size: 18px;
            margin-top: 20px;
        }

        .floating-element {
            position: absolute;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid var(--primary-gold);
            border-radius: 15px;
            padding: 15px 25px;
            backdrop-filter: blur(10px);
            animation: float 3s ease-in-out infinite;
        }

        .floating-1 {
            top: 10%;
            right: -4%;
            animation-delay: 0s;
        }

        .floating-2 {
            bottom: 15%;
            right: -5%;
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Section 2: How It Works */
        .how-it-works {
            padding: 120px 0;
        background-image: linear-gradient(to top, #000000 30%, #0e1518 141%);
            position: relative;
        }

        .section-badge {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            color: var(--primary-gold);
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: 1px solid var(--primary-gold);
            margin-bottom: 20px;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
        }

        .section-title {
            font-size: 56px;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 900;
        }

        .section-subtitle {
            font-size: 20px;
            text-align: center;
            color: var(--text-gray);
            margin-bottom: 80px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .video-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
            border: 2px solid var(--primary-gold);
        }

        .video-placeholder {
            width: 100%;
            height: 560px;
            background: linear-gradient(135deg, var(--card-black), var(--light-black));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .play-button {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
        }

        .play-button:hover {
            transform: scale(1.1);
        }

        .play-button::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 25px solid var(--dark-black);
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            margin-left: 5px;
        }

        .workflow-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 80px;
        }

        .workflow-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 700;
            color: var(--dark-black);
            margin: 0 auto 25px;
            position: relative;
            z-index: 2;
        }

        .workflow-step::after {
            content: '';
            position: absolute;
            top: 40px;
            left: 50%;
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, var(--primary-gold), transparent);
            z-index: 1;
        }

        .workflow-step:last-child::after {
            display: none;
        }

        .step-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-white);
        }

        .step-description {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Section 3: Values/Benefits */
        .values-benefits {
            padding: 120px 0;
            background-image: linear-gradient(to top, #000000 30%, #0e1518 141%);
            position: relative;
            overflow: hidden;
        }

        .dubai-skyline {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 300px;
            background: linear-gradient(to top, rgba(212, 175, 55, 0.05), transparent);
            opacity: 0.3;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
            position: relative;
            z-index: 1;
        }

        .benefit-card {
            background: var(--light-black);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            padding: 50px 40px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
            border-color: var(--primary-gold);
        }

        .benefit-card:hover::before {
            transform: scaleX(1);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 30px;
        }

        .benefit-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-gold);
        }

        .benefit-description {
            font-size: 16px;
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .benefit-stat {
            font-size: 48px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
             margin-top: 20px;
        }

        /* Section 4: Social Proof */
        .social-proof {
            padding: 120px 0;
                background-image: linear-gradient(to top, #000000 30%, #0e1518 141%);
            position: relative;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: var(--card-black);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            padding: 40px;
            position: relative;
        }

        .quote-icon {
            font-size: 60px;
            color: var(--primary-gold);
            opacity: 0.3;
            line-height: 1;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-size: 16px;
            color: var(--text-white);
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            color: var(--dark-black);
        }

        .author-info h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-white);
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 14px;
            color: var(--text-gray);
        }

        .stars {
            color: var(--primary-gold);
            font-size: 18px;
            margin-top: 20px;
        }

        .video-testimonials {
            margin-top: 80px;
            text-align: center;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 40px;
        }

        .video-card {
            background: var(--card-black);
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            height: 350px;
        }

        .video-thumbnail {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--light-black), var(--card-black));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .small-play-button {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .small-play-button::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 18px solid var(--dark-black);
            border-top: 11px solid transparent;
            border-bottom: 11px solid transparent;
            margin-left: 3px;
        }

        /* Section 5: CTA with Booking */
        .final-cta {
            padding: 120px 0;
              background-image: linear-gradient(to top, #000000 30%, #0e1518 141%);
            position: relative;
            overflow: hidden;
        }

        .cta-container {
            max-width: 1200px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--light-black), var(--card-black));
            border: 2px solid var(--primary-gold);
            border-radius: 30px;
            padding: 80px 60px;
            text-align: center;
            position: relative;
            box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
            border-radius: 50%;
        }

        .cta-title {
            font-size: 52px;
            font-weight: 900;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .cta-description {
            font-size: 20px;
            color: var(--text-gray);
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }

        .booking-options {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .booking-card {
            background: var(--dark-black);
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 20px;
            padding: 40px 35px;
            min-width: 280px;
            transition: all 0.3s ease;
        }

        .booking-card:hover {
            border-color: var(--primary-gold);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
        }

        .booking-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .booking-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary-gold);
            margin-bottom: 15px;
        }

        .booking-description {
            font-size: 15px;
            color: var(--text-gray);
            margin-bottom: 25px;
        }

        .booking-btn {
            background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
            color: var(--dark-black);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .booking-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-top: 60px;
            position: relative;
            z-index: 1;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--text-gray);
            font-size: 15px;
        }

        .trust-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-black);
            font-weight: 700;
        }

        /* Footer */
        footer {
           background-image: linear-gradient(to top, #000000 30%, #0e1518 141%);
            padding: 60px 0 30px;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-brand h3 {
            font-size: 28px;
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }

        .footer-brand p {
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .footer-links h4 {
            font-size: 18px;
            color: var(--primary-gold);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links ul li a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--primary-gold);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding: 30px 50px 0;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            text-align: center;
            color: var(--text-gray);
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .hero-visual {
                height: 400px;
            }

            .hero-content h1 {
                font-size: 56px;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .workflow-steps {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-container,
            .container {
                padding: 0 12px;
            }

            .hero-content h1 {
           font-size: 51px;
        line-height: 53px;
                font-weight: 900;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .hero-features {
                flex-direction: column;
                gap: 20px;
            }

            .section-title {
                font-size: 36px;
            }

            .benefits-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .workflow-steps {
                grid-template-columns: 1fr;
            }

            .workflow-step::after {
                display: none;
            }

            .video-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .cta-group {
                flex-direction: column;
            }

            .booking-options {
                flex-direction: column;
                align-items: center;
            }

            .trust-badges {
                flex-direction: column;
                gap: 20px;
            }
        }
@media (max-width: 768px) {
   .logo {
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}
.nav-cta {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    color: var(--dark-black);
    padding: 5px 6px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 15px;
}

.hero-container {
    padding: 0 13px;
    padding-top: 7px;
    padding-bottom: 63px;
}
.phone-mockup {
    margin-top: 20px;
}
    .hero-visual {
        height: 557px;
    }
    .floating-2 {
    bottom: 7%;
    right: -1%;
    animation-delay: 1s;
}
    .floating-1 {
    top: 13%;
    right: 0%;
    animation-delay: 0s;
}
    .how-it-works {
    padding: 46px 0;
    background-image: linear-gradient(to top, #000000 30%, #0e1518 141%);
    position: relative;
}
.values-benefits {
    padding: 46px 0;
    background-image: linear-gradient(to top, #000000 30%, #0e1518 141%);
    position: relative;
    overflow: hidden;
}
.social-proof {
    padding: 46px 0;
    background-image: linear-gradient(to top, #000000 30%, #0e1518 141%);
    position: relative;
}
    .cta-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--light-black), var(--card-black));
    border: 2px solid var(--primary-gold);
    border-radius: 30px;
    padding: 37px 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
}
}
input[type="text"] {
    height: 35px;
}
input[type="email"] {
     height: 35px;
}
textarea {
     height: 35px;
}
.froms {
    max-width: 1068px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-gold);
    padding: 10px 10px 16px 10px;
}

.form-box {
    width: 100%;
        max-width: 596px;
    margin: 30px auto;
    padding: 25px;
    background: #0e0e0e;
    border: 1px solid #caa449;
    border-radius: 12px;
}

.vertical-form label {
    color: #fff;
    font-size: 14px;
    margin-top: 12px;
    display: block;
}

.vertical-form input,
.vertical-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #caa449;
    background: #000;
    color: #fff;
    border-radius: 6px;
}

.vertical-form textarea {
    height: 90px;
}

.submit-btn {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    background: #caa449;
    border: none;
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #e0b85e;
}
