:root {
    --primary: #FF5A5F;
    --primary-dark: #E0484D;
    --secondary: #00A699;
    --dark: #1A1A1A;
    --light: #F7F7F7;
    --white: #FFFFFF;
    --text-muted: #717171;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 8px 30px rgba(0,0,0,0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 96%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 90, 95, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.text-center { text-align: center; }
.full-width { width: 100%; }

/* Main Header */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Dark background to contrast with white menu text */
    padding: 20px 0;
    position: relative;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    text-decoration: none;
}

.brand img {
    height: 50px;
}

.brand-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066ff;
}

.header-nav {
    display: flex;
    gap: 30px;
    flex: 2;
    justify-content: center;
}

.nav-item {
    color: #333333;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
    padding-bottom: 5px;
}

.nav-item:hover {
    color: #0066ff;
}

.nav-item.active {
    color: #0066ff;
    border-bottom: 2px solid #0066ff;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    z-index: 1001;
}

/* Hero Banner Section */
.hero-banner-section {
    padding: 40px 20px 0 20px;
    background-color: var(--light);
    display: flex;
    justify-content: center;
}

.hero-banner {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 400px;
    background: url('../img/goa_hero_beach.png') center/cover no-repeat;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 40px;
}

.hero-title {
    position: relative;
    z-index: 1;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 5rem;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    margin-bottom: 40px;
}

.search-card {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    width: 90%;
    max-width: 1000px;
    border-radius: 25px;
    padding: 20px 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    z-index: 10;
}

.search-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-customize {
    background-color: #1a56db;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.header-left h2 {
    font-size: 1.2rem;
    color: var(--dark);
    margin: 0;
}

.chat-link {
    color: #4CAF50;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-link:hover {
    text-decoration: underline;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: center;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 10px 15px;
    background: #fdfdfd;
}

.input-group i {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-right: 10px;
}

.input-group input,
.input-group select {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--dark);
}

.input-group select {
    appearance: none;
    cursor: pointer;
}

.btn-quote {
    background-color: #ef4444;
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-quote:hover {
    background-color: #dc2626;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 1.1rem;
}

.features i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.glass-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.5);
}

.glass-card h3 {
    color: var(--primary);
    font-size: 1.8rem;
}

/* Destinations Section */
.destinations {
    padding: 100px 0;
    background-color: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.dest-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.dest-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.dest-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dest-card:hover img {
    transform: scale(1.05);
}

.dest-info {
    padding: 25px;
}

.dest-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.dest-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Trending Packages (Old Style) */
.trending-packages {
    background-color: #f9f9f9;
}
.package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}
.package-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease;
}
.package-card:hover {
    transform: translateY(-10px);
}
.package-card.premium {
    border: 2px solid var(--primary);
}
.package-card .badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}
.package-card.premium .badge {
    background: var(--primary);
}
.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.package-card .price {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}
.package-card .price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}
.package-card .duration {
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 25px;
}
.package-card ul {
    margin-bottom: 30px;
}
.package-card ul li {
    margin-bottom: 12px;
    color: #444;
}
.package-card ul li i {
    color: var(--secondary);
    margin-right: 10px;
}

/* Packages Section */
.packages {
    padding: 60px 0 30px 0;
    background-color: var(--white);
}

.new-package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.new-package-card {
    background: var(--white);
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.new-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pkg-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.pkg-meta {
    display: flex;
    border-bottom: 1px solid #eaeaea;
    background: #fdfdfd;
}

.meta-item {
    flex: 1;
    text-align: center;
    padding: 12px 5px;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.meta-item.border-sides {
    border-left: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
}

.meta-item i {
    color: #3b82f6;
    margin-right: 5px;
}

.pkg-content {
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pkg-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 5px;
}

.pkg-stars {
    color: #FFC107;
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.pkg-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 25px;
    min-height: 65px;
    flex-grow: 1;
}

.pkg-desc li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.pkg-desc li i {
    margin-top: 4px;
    flex-shrink: 0;
}

.pkg-buttons {
    display: flex;
    justify-content: center;
}

.pkg-buttons a {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.btn-read {
    border-radius: 20px 0 0 20px;
    border-right: 1px solid rgba(255,255,255,0.3);
}

.btn-book {
    border-radius: 0 20px 20px 0;
}

.pkg-buttons a:hover {
    background-color: var(--primary-dark);
}

/* Enquiry Section */
.enquiry {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #FF8A8E 100%);
    color: var(--white);
}

.enquiry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 60px;
    border-radius: 30px;
}

.enquiry-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.enquiry-info p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

.contact-item i {
    background: rgba(255,255,255,0.2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.enquiry-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--primary);
}

/* Footer */
.main-footer {
    background-color: #171923; /* Very dark blue/black matching reference */
    color: #e2e8f0;
    padding-top: 60px;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Footer Brand and About */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand img {
    height: 40px;
}

.footer-brand .brand-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #a0aec0;
    margin-bottom: 30px;
    max-width: 90%;
}

.footer-social h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #4a5568;
    color: #ffffff;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #3b82f6;
    border-color: #3b82f6;
}

/* Footer Links Columns */
.links-col h4, .contact-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
}

.links-col ul, .contact-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-col ul li {
    margin-bottom: 15px;
}

.links-col ul li a {
    color: #e2e8f0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.links-col ul li a i {
    font-size: 0.7rem;
    color: #cbd5e1;
}

.links-col ul li a:hover {
    color: #3b82f6;
}

/* Contact Column */
.contact-col ul li {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #e2e8f0;
}

.contact-col ul li i {
    margin-top: 4px;
    color: #e2e8f0;
}

.contact-col ul li p {
    margin: 0;
    line-height: 1.5;
}

.contact-link-item {
    margin-top: 10px;
}

.contact-page-link {
    color: #ffffff !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-page-link i {
    margin: 0 !important;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #2d3748;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #a0aec0;
}

.footer-bottom a.bottom-home {
    color: #ffffff;
    font-weight: 500;
}

/* Floating Buttons */
.float-phone {
    position: fixed;
    right: 20px;
    bottom: 140px; /* Above whatsapp */
    background-color: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.float-phone:hover {
    transform: scale(1.1);
}

.float-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 80px;
    background-color: #25D366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

.float-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #3b82f6;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.float-top:hover {
    background-color: #2563eb;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards ease-out;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.3s ease;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-header h2 {
    color: var(--primary);
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .header-container { padding: 0 20px; }
    .new-package-grid { grid-template-columns: repeat(2, 1fr); }
    .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-row { grid-template-columns: 1fr 1fr; gap: 30px; }
    .search-form { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
    /* Header */
    .main-header { padding: 10px 0; }
    
    .hamburger {
        display: block;
    }
    
    .header-nav { 
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0f172a;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .header-nav.active {
        display: flex;
    }
    
    .footer-brand .brand-text { font-size: 1.1rem; }
    
    /* Hero Banner */
    .hero-banner {
        height: auto;
        min-height: 400px;
        padding: 40px 20px 20px 20px;
        border-radius: 20px;
        flex-direction: column;
        justify-content: center;
    }
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
        word-wrap: break-word;
        text-align: center;
    }
    
    /* Search Form */
    .search-card {
        position: relative;
        bottom: 0;
        transform: none;
        left: 0;
        width: 100%;
        margin-top: 0;
    }
    .search-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .search-form {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .search-form > .input-group:nth-child(1),
    .search-form > .input-group:nth-child(2),
    .search-form > .btn-quote {
        grid-column: span 2;
    }
    
    /* Packages */
    .new-package-grid {
        grid-template-columns: 1fr;
    }
    
    /* Destinations & About */
    .about, .destinations, .packages, .enquiry {
        padding: 60px 0;
    }
    .section-title h2, .about-text h2, .enquiry-info h2 {
        font-size: 2rem;
    }
    .about-grid, .enquiry-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .dest-grid {
        grid-template-columns: 1fr;
    }
    .features {
        grid-template-columns: 1fr;
    }
    .glass-card {
        bottom: 10px;
        left: 10px;
        padding: 15px 20px;
    }
    .enquiry-wrapper {
        padding: 30px 20px;
    }
    
    /* Footer */
    .footer-row {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: flex-end;
}
.header-phone-btn {
    background-color: var(--primary);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 90, 95, 0.4);
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.header-phone-btn:hover {
    background-color: #e0484d;
    transform: translateY(-2px);
}
@media (max-width: 1024px) {
    .header-phone-btn {
        display: none;
    }
}


/* --- New Premium Modal Design --- */
.new-modal-design {
    display: flex;
    padding: 0;
    max-width: 850px;
    width: 90%;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.modal-left {
    background: linear-gradient(135deg, rgba(30,136,229,0.9) 0%, rgba(11,28,60,0.9) 100%), url('../img/palolem.png') center/cover no-repeat;
    color: white;
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-title-left {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.modal-subtitle-left {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.modal-benefits {
    list-style: none;
    padding: 0;
}

.modal-benefits li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-benefits i {
    color: #FFC107;
}

.modal-right {
    flex: 1;
    padding: 30px 40px;
    background: #ffffff;
    position: relative;
}

.new-modal-design .modal-header h2 {
    font-size: 1.8rem;
    color: #0b1c3c;
    margin-bottom: 8px;
}

.new-modal-design .modal-header p {
    color: #666;
    margin-bottom: 15px;
}

.new-input-group {
    position: relative;
    margin-bottom: 15px;
}

.new-input-group .input-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #999;
}

.new-input-group input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.new-input-group input:focus {
    border-color: #1e88e5;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(30,136,229,0.1);
    outline: none;
}

.modern-submit-btn {
    background: linear-gradient(to right, #FF5A5F, #ff3b41);
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 8px 20px rgba(255,90,95,0.3);
    transition: all 0.3s ease;
    margin-top: 10px;
    cursor: pointer;
}

.modern-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255,90,95,0.4);
}

@media (max-width: 768px) {
    .new-modal-design {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
        width: 95%;
        max-width: 500px;
    }
    .modal-left {
        padding: 30px 20px;
        text-align: center;
    }
    .modal-title-left {
        font-size: 2rem;
    }
    .modal-benefits li {
        justify-content: center;
    }
    .modal-right {
        padding: 30px 20px;
    }
}


/* --- Custom Reference Modal Design --- */
.custom-modal {
    display: flex;
    max-width: 800px;
    width: 95%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.3s ease;
}

.modal-overlay.active .custom-modal {
    transform: translateY(0) scale(1);
}

.custom-modal-left {
    background-color: #2563eb; /* Vibrant Blue matching screenshot */
    padding: 40px;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.c-modal-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 0;
}

.c-modal-categories {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
}

.c-category-btn {
    background: white;
    color: #111;
    border: none;
    border-radius: 12px;
    padding: 25px 10px;
    font-weight: 600;
    flex: 1;
    cursor: pointer;
    font-size: 0.85rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}
.c-category-btn:hover {
    transform: translateY(-2px);
}

.c-modal-help p {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.c-help-buttons {
    display: flex;
    gap: 15px;
}

.c-phone-btn, .c-chat-btn {
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    border: none;
    cursor: pointer;
}

.c-phone-btn {
    background: white;
    color: #111;
}

.c-chat-btn {
    background: #22c55e; /* Green */
    color: white;
}

.custom-modal-right {
    flex: 1;
    padding: 40px;
    position: relative;
    background: #ffffff;
}

.c-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #555;
    cursor: pointer;
}

.c-right-title {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 35px;
    margin-top: 0;
    font-weight: 700;
}

.c-input-group {
    margin-bottom: 12px;
}

.c-input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background: #fff;
}
.c-input-group input::placeholder {
    color: #999;
}

.phone-group {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.phone-group .country-code {
    background: #f8fafc;
    padding: 12px 15px;
    color: #333;
    border-right: 1px solid #ddd;
    font-weight: 500;
}

.phone-group input {
    border: none;
    border-radius: 0;
    flex: 1;
}

.c-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.c-checkbox-group input {
    margin-top: 4px;
    transform: scale(1.1);
}

.c-checkbox-group label {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}

.c-submit-btn {
    width: 100%;
    padding: 12px;
    background: #FF5A5F;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}
.c-submit-btn:hover {
    background: #e0484d;
}

@media (max-width: 768px) {
    .custom-modal {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }
    .custom-modal-left {
        padding: 30px 20px;
    }
    .c-modal-categories {
        margin-bottom: 30px;
    }
    .custom-modal-right {
        padding: 30px 20px;
    }
}


/* --- Mobile Header Fixes to Match Reference --- */
@media (max-width: 768px) {
    .main-header {
        background-color: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        padding: 10px 20px !important;
    }
    .header-container {
        padding: 0 !important;
    }
    .brand {
        gap: 8px !important;
    }
    .brand img {
        height: 35px !important;
    }
    .brand-text {
        font-size: 1.15rem !important;
        white-space: nowrap !important;
        color: #0066ff !important;
    }
    .hamburger {
        color: #666666 !important;
        border: 1px solid #dddddd;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 1.2rem !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    .header-nav {
        background-color: #ffffff !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
        border-top: 1px solid #eeeeee;
    }
    .nav-item {
        color: #333333 !important;
        text-align: center;
        padding: 15px 0 !important;
        border-bottom: 1px solid #f5f5f5;
    }
}

@media (max-width: 768px) {
    .header-left h2 {
        font-size: 1.1rem !important;
        margin: 0;
    }
    .header-left {
        gap: 10px !important;
        align-items: center !important;
    }
    .badge-customize {
        padding: 3px 8px !important;
        font-size: 0.75rem !important;
    }
}

@media (max-width: 768px) {
    .section-title {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media (max-width: 768px) {
    .container-full {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}
