
        /* ============================================
           CSS VARIABLES
           ============================================ */
        :root {
            --navy: #1a2744;
            --navy-light: #243352;
            --gold: #c8a951;
            --gold-light: #e8d590;
            --green-dark: #2d5016;
            --green-medium: #4a7c23;
            --green-light: #6ba339;
            --green-accent: #8bc34a;
            --cream: #faf8f3;
            --white: #ffffff;
            --text-dark: #1a2744;
            --text-muted: #6b7a8d;
            --border-light: #e8ecf1;
            --shadow-sm: 0 2px 8px rgba(26, 39, 68, 0.06);
            --shadow-md: 0 4px 20px rgba(26, 39, 68, 0.1);
            --shadow-lg: 0 10px 40px rgba(26, 39, 68, 0.12);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
        }

        /* ============================================
           RESET & BASE
           ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Barlow', sans-serif;
            color: var(--text-dark);
            background: var(--cream);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ============================================
           NAVBAR
           ============================================ */
   

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero-section {
            position: relative;
            min-height: 100vh;
            padding-top: 80px;
            display: flex;
            overflow: hidden;
        }

        .hero-layout {
            display: grid;
            grid-template-columns: 1fr 1.6fr;
            width: 100%;
            min-height: calc(100vh - 80px);
        }

        /* Left Panel - Info */
        .hero-left {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px 50px;
            background: linear-gradient(180deg, rgba(26, 39, 68, 0.05) 0%, rgba(26, 39, 68, 0.02) 100%);
            overflow: hidden;
        }

        .hero-left::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?w=800') center/cover no-repeat;
            opacity: 0.12;
            z-index: 0;
        }

        .hero-left-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--navy);
            line-height: 1.15;
            margin-bottom: 8px;
        }

        .hero-title-underline {
            width: 60px;
            height: 4px;
            background: var(--gold);
            border-radius: 2px;
            margin: 15px 0 20px;
        }

        .hero-subtitle {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 340px;
            margin-bottom: 40px;
        }

        /* Feature List */
        .hero-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 40px;
        }

        .hero-features li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .feature-icon {
            width: 42px;
            height: 42px;
             background: linear-gradient(135deg, #1a2332 0%, #2a3c54 50%, #1f3044 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon i {
            color: var(--white);
            font-size: 1rem;
        }

        .feature-text h5 {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 2px;
        }

        .feature-text p {
            font-size: 0.75rem;
            color: var(--text-muted);
            line-height: 1.4;
        }

        /* Bottom Banner */
        .hero-banner {
                background: linear-gradient(135deg, #1a2332 0%, #2a3c54 50%, #1f3044 100%);
            border-radius: var(--radius-md);
            padding: 18px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 10px;
        }

        .hero-banner-icon {
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .hero-banner-icon i {
            color: var(--gold-light);
            font-size: 1rem;
        }

        .hero-banner-text {
            color: var(--white);
            font-size: 0.82rem;
            font-weight: 600;
        }

        .hero-banner-text span {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            color: var(--gold-light);
        }

        /* Decorative Plant */
        .hero-plant {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            opacity: 0.6;
            z-index: 1;
        }

        /* Right Panel - Form */
        .hero-right {
            background: var(--white);
            padding: 40px 50px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }

        /* ============================================
           FORM STYLES
           ============================================ */
        .form-container {
            max-width: 880px;
            width: 100%;
        }

        /* Interest Selection (Top Cards) */
        .interest-section {
            margin-bottom: 35px;
        }

        .interest-label {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 15px;
        }

        .interest-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }

        .interest-card {
            position: relative;
            border: 2px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 20px 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: var(--white);
        }

        .interest-card:hover {
            border-color: var(--green-medium);
            box-shadow: var(--shadow-sm);
        }

        .interest-card.selected {
            border-color: var(--green-dark);
            background: rgba(45, 80, 22, 0.04);
            box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
        }

        .interest-card input[type="radio"] {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 16px;
            height: 16px;
            accent-color: var(--green-dark);
        }

        .interest-card-icon {
            font-size: 2rem;
            margin-bottom: 8px;
            display: block;
        }

        .interest-card-label {
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--navy);
            line-height: 1.3;
        }

        /* Form Sections */
        .form-section {
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--border-light);
        }

        .form-section:last-of-type {
            border-bottom: none;
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
        }

        .section-number {
            width: 28px;
            height: 28px;
             background: linear-gradient(135deg, #1a2332 0%, #2a3c54 50%, #1f3044 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .section-number i {
            color: var(--white);
            font-size: 0.75rem;
        }

        .section-title {
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--navy);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Form Grid */
        .form-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }

        .form-grid-2 {
            grid-template-columns: repeat(2, 1fr);
        }

        .form-grid-full {
            grid-template-columns: 1fr;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .form-group.span-2 {
            grid-column: span 2;
        }

        .form-group.span-3 {
            grid-column: span 3;
        }

        .form-label {
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .form-input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .form-input-wrapper i {
            position: absolute;
            left: 12px;
            color: var(--text-muted);
            font-size: 0.85rem;
            pointer-events: none;
        }

        .form-input,
        .form-select {
            width: 100%;
            padding: 11px 12px 11px 36px;
            font-family: 'Barlow', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--text-dark);
            background: var(--white);
            border: 1.5px solid var(--border-light);
            border-radius: var(--radius-sm);
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .form-input:focus,
        .form-select:focus {
            border-color: var(--green-medium);
            box-shadow: 0 0 0 3px rgba(74, 124, 35, 0.08);
        }

        .form-input::placeholder {
            color: #b0b8c4;
            font-weight: 400;
        }

        .form-select {
            cursor: pointer;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            padding-right: 36px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7a8d' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
        }

        .form-input-no-icon {
            padding-left: 14px;
        }

        /* Textarea */
        .form-textarea {
            width: 100%;
            padding: 12px 14px;
            font-family: 'Barlow', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--text-dark);
            background: var(--white);
            border: 1.5px solid var(--border-light);
            border-radius: var(--radius-sm);
            outline: none;
            resize: vertical;
            min-height: 80px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .form-textarea:focus {
            border-color: var(--green-medium);
            box-shadow: 0 0 0 3px rgba(74, 124, 35, 0.08);
        }

        .form-textarea::placeholder {
            color: #b0b8c4;
            font-weight: 400;
        }

        /* Two Column Sections */
        .form-two-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .form-column-section {
            padding: 0;
        }

        /* Submit Button */
        .form-submit-section {
            text-align: center;
            margin-top: 35px;
        }

        .btn-submit-quote {
         display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 38px;
    background: linear-gradient(135deg, #0f94ac 0%, #066aab 50%, #2a3c54 100%);
    background-size: 200% 200%;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(15, 148, 172, 0.35);
    z-index: 1;
        }

        .btn-submit-quote:hover {
   
    background-position: 100% 100%;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 148, 172, 0.5);
    color: #fff;
        }

        .btn-submit-quote i {
            font-size: 1.1rem;
            transition: transform 0.3s;
        }

        .btn-submit-quote:hover i {
            transform: translateX(4px);
        }

        .form-security-note {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-top: 14px;
            font-size: 0.72rem;
            color: var(--text-muted);
        }

        .form-security-note i {
            color: var(--green-medium);
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1200px) {
            .hero-layout {
                grid-template-columns: 1fr 1.4fr;
            }
            .hero-left {
                padding: 40px 30px;
            }
            .hero-right {
                padding: 30px 35px;
            }
        }

        @media (max-width: 992px) {
            .hero-layout {
                grid-template-columns: 1fr;
            }

            .hero-left {
                padding: 40px 30px;
                min-height: auto;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .hero-features {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }

            .hero-right {
                padding: 30px 25px;
            }

            .form-two-columns {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .interest-cards {
                grid-template-columns: repeat(2, 1fr);
            }

   

       
        }

        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }

            .form-grid-2 {
                grid-template-columns: 1fr;
            }

            .form-group.span-2,
            .form-group.span-3 {
                grid-column: span 1;
            }

            .hero-features {
                grid-template-columns: 1fr;
            }

            .hero-title {
                font-size: 1.8rem;
            }

            .interest-cards {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 480px) {
            .interest-cards {
                grid-template-columns: 1fr;
            }

       

            .hero-left {
                padding: 30px 20px;
            }

            .hero-right {
                padding: 25px 18px;
            }
        }

















             * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --lime: #b1e314;
            --lime-light: #c8f53d;
            --teal: #04b0ac;
            --teal-light: #1dd4cf;
            --teal-dark: #038d8a;
            --navy: #2a3c54;
            --navy-dark: #1a2738;
            --navy-deeper: #0f1923;
            --primary: #04b0ac;
            --secondary: #2a3c54;
            --white: #ffffff;
            --bg-cream: #f4f1ea;
            --bg-light: #faf9f6;
            --text-dark: #2a3c54;
            --text-medium: #333333;
            --text-light: #666666;
            --text-muted: #999999;
            --border-color: #e2dfd8;
            --orange: #ff6b35;
            --gradient-1: linear-gradient(135deg, #b1e314 0%, #04b0ac 100%);
            --gradient-2: linear-gradient(135deg, #04b0ac 0%, #2a3c54 100%);
            --gradient-3: linear-gradient(135deg, #2a3c54 0%, #04b0ac 100%);
            --gradient-rainbow: linear-gradient(90deg, #ff6b35, #04b0ac, #b1e314, #2a3c54);
             --font-smooch: 'Smooch', cursive;
        }

      
            body {
    /* font-family: 'Poppins', sans-serif; */
    overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-cream);
            color: var(--text-medium);
            line-height: 1.6;
        }

  
        @font-face {
        font-family: 'Barlow';
        src: url('fonts/barlow-7chqv4kjgogqm7e3j-ws51os.woff2') format('woff2');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
        }

        @font-face {
        font-family: 'Barlow';
        src: url('fonts/barlow-7chqv4kjgogqm7e3j-ws51os.woff2') format('woff2');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
        }

        /* ==================== NAVBAR ==================== */
    

        /* ==================== HERO 900px ==================== */
        .plan-hero {
            position: relative;
            height: 800px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        .plan-hero .hero-bg {
            position: absolute;
            inset: 0;
            background: url('https://cadejomarinotours.com/ren-a-car-header.webp') center/cover no-repeat;
        }

        .plan-hero .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg,
                rgba(42, 60, 84, 0.4) 0%,
                rgba(42, 60, 84, 0.5) 50%,
                rgba(15, 25, 35, 0.85) 100%
            );
        }

        .plan-hero .hero-content {
            position: relative;
            z-index: 2;
            color: var(--white);
            padding: 40px 20px;
        }

        .plan-hero h1 {
             font-family: 'Montserrat', sans-serif;
            font-size: 4rem;
            /* font-weight: 700; */
            margin-bottom: 5px;
        }

        .plan-hero h1 .script-text {
            /* font-family: 'Pacifico', cursive; */
            font-size: 3.5rem;
            background: linear-gradient(135deg, var(--lime), var(--teal));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .plan-hero .hero-banner {
            background: var(--teal);
            padding: 12px 30px;
            border-radius: 6px;
            margin: 25px auto;
            max-width: 700px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .plan-hero .hero-desc {
            font-size: 1rem;
            opacity: 0.8;
            max-width: 650px;
            margin: 20px auto 0;
            line-height: 1.7;
        }
















        


/* ---- Modern Gradient Button #0f94ac ---- */
.btn.btn-primary.btn-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 38px;
    background: linear-gradient(135deg, #0f94ac 0%, #066aab 50%, #2a3c54 100%);
    background-size: 200% 200%;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(15, 148, 172, 0.35);
    z-index: 1;
}

/* Hover: shift gradient + lift */
.btn.btn-primary.btn-lg:hover {
    background-position: 100% 100%;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 148, 172, 0.5);
    color: #fff;
}

/* Active: press down */
.btn.btn-primary.btn-lg:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 148, 172, 0.4);
}

/* Shine sweep animation on hover */
.btn.btn-primary.btn-lg::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.25) 50%,
        transparent 100%
    );
    transition: left 0.5s ease;
    z-index: -1;
}

.btn.btn-primary.btn-lg:hover::after {
    left: 100%;
}














/* ---- Background Gradient #2a3c54 con brillo hover ---- */
.cm-gradient-bg {
    background: linear-gradient(135deg, #1a2332 0%, #2a3c54 50%, #1f3044 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

/* Capa de brillo radial (invisible por defecto) */
.cm-gradient-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(29, 174, 185, 0.25) 0%,
        rgba(42, 60, 84, 0.1) 40%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    z-index: 1;
}

/* Línea de brillo sweep */
.cm-gradient-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 30%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 70%,
        transparent 100%
    );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    z-index: 1;
}

/* ---- Hover: activa ambos efectos ---- */
.cm-gradient-bg:hover {
    background: linear-gradient(135deg, #1a2332 0%, #344d6b 50%, #2a3c54 100%);
    box-shadow: 0 0 40px rgba(29, 174, 185, 0.15), inset 0 0 60px rgba(29, 174, 185, 0.05);
}

/* Brillo radial se expande */
.cm-gradient-bg:hover::before {
    width: 120%;
    height: 120%;
    opacity: 1;
}

/* Línea de brillo sweep cruza */
.cm-gradient-bg:hover::after {
    left: 150%;
}


