/* Global Styles */
:root {
    --primary-color: #1a1a1a;
    --accent-color: #c5a059;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #f9f9f9;
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
    --font-script: 'Great Vibes', cursive;
    --letter-spacing: 1px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #b08d4b;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 20px;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.btn-text {
    color: var(--accent-color);
    font-weight: 700;
}

.btn-text .arrow {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.btn-text:hover .arrow {
    margin-left: 10px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background-color 0.4s ease, padding 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 20px 0;
}

.navbar.scrolled {
    background-color: #fff;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar.scrolled .btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.navbar.scrolled .btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo img {
    max-height: 70px;
    /* Adjust height to fit navbar */
    width: auto;
    /* Maintain aspect ratio */
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Dropdown Menu */
/* Mega Menu Dropdown */
/* Mega Menu Dropdown */
/* Mega Menu Dropdown */
.dropdown {
    position: static !important;
}

.nav-links {
    position: static;
    height: 100%;
    /* Keep height 100% for hit area */
}

/* Reset li behavior */
.nav-links li {
    display: block;
    /* Default block behavior */
    height: auto;
}

.dropdown-content {
    display: none;
    position: absolute;
    /* Absolute relative to fixed Navbar */
    top: 100%;
    /* Directly below navbar */
    left: 50%;
    margin-left: -450px;
    /* Rigid Centering: Half of 900px width */
    transform: none;
    /* Remove transform to avoid blurring/context issues */

    background-color: #fff;
    width: 900px;
    max-width: 90vw;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    border-radius: 8px;
    padding: 30px;
    flex-direction: row;
    gap: 30px;
    border-top: 3px solid var(--accent-color);
}

/* Hover Bridge */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: transparent;
    z-index: 10001;
}

/* Simple Dropdown Override */
.dropdown.simple-dropdown {
    position: relative !important;
    /* Override static from mega menu */
}

.simple-dropdown .dropdown-content {
    width: 250px;
    /* Narrower width */
    left: 0;
    /* Align left */
    margin-left: 0;
    /* Remove centering margin */
    flex-direction: column;
    /* Stack items vertically */
    padding: 15px 0;
    /* Less padding */
    gap: 0;
    /* No gap between columns */
    top: 100%;
}

.simple-dropdown .dropdown-content a {
    padding: 10px 20px;
    color: #333;
    display: block;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
}

.simple-dropdown .dropdown-content a:hover {
    background-color: #f9f9f9;
    color: var(--accent-color);
}


.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content {
    display: flex;
    animation: fadeInUp 0.3s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        margin-top: 10px;
        /* Animate margin instead of transform */
    }

    to {
        opacity: 1;
        margin-top: 0;
    }
}

/* Mega Menu Columns */
.mega-menu-col {
    flex: 1;
    min-width: 200px;
}

.mega-menu-col h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mega-menu-col ul {
    padding: 0;
}

.mega-menu-col li {
    list-style: none;
    margin-bottom: 10px;
}

.mega-menu-col a {
    color: #555 !important;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.mega-menu-col a:hover {
    color: var(--accent-color) !important;
    padding-left: 5px;
    background: none;
    /* Override previous hover bg */
}

.mega-menu-col a i {
    font-size: 0.7rem;
    margin-right: 10px;
    color: #ccc;
    transition: color 0.2s;
}

.mega-menu-col a:hover i {
    color: var(--accent-color);
}

.dropdown-content a::after {
    display: none;
}

/* Mega Menu Promo Section */
.mega-menu-promo {
    flex: 1.2;
    /* Slightly wider */
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.mega-menu-promo h3 {
    font-family: var(--font-heading);
    color: #333;
    margin-bottom: 10px;
}

.mega-menu-promo p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.mega-menu-promo img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mega-menu-promo .btn {
    width: 100%;
    padding: 10px;
}

/* Ensure arrow has some space */
.fa-caret-down {
    margin-left: 5px;
}

/* Hero Section */


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Darker overlay for text readability */
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    /* Darkens bg for text readability */
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-subtitle {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

/* Intro Section - Split Layout */
.intro-split {
    display: flex;
    align-items: stretch;
    min-height: 600px;
    background-color: #D69E2E;
    /* Safari Gold */
}

.intro-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    color: #fff;
}

.intro-content .section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff;
    text-transform: none;
    /* Override global uppercase if needed, or keep it */
}

.intro-content .section-lead {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 90%;
}

.intro-content .section-signature {
    font-family: var(--font-script);
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
    transform: rotate(-2deg);
    /* Slight tilt for handwriting feel */
}

.intro-content .btn-outline {
    align-self: flex-start;
    border-color: #fff;
    color: #fff;
    padding: 15px 40px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.intro-content .btn-outline:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* Destinations Full Width */
.destination-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    margin-top: 40px;
}

.destination-card {
    display: block;
    /* Ensure anchor tag behaves as block */
    position: relative;
    cursor: pointer;
    overflow: hidden;
    height: 60vh;
    /* Taller for dramatic effect */
    min-height: 400px;
}

.card-image {
    position: relative;
    height: 100%;
    width: 100%;
}

.card-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    /* Smoother, slower zoom */
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.card-content {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    transition: transform 0.4s ease;
}

.card-title {
    color: #fff;
    font-size: 1.8rem;
    /* Larger font */
    font-weight: 500;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
    text-transform: uppercase;
}

.tour-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    /* Softer corners */
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Motion Effects */
.destination-card {
    border-radius: 8px;
    /* Rounded card corners */
    overflow: hidden;
    /* Ensure image stays inside */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    /* Base shadow */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    /* Lift effect */
}

.destination-card:hover .card-image img {
    transform: scale(1.1);
    /* Subtle zoom */
}

.destination-card:hover .card-content {
    transform: translateY(-5px);
    /* Content moves up slightly */
}

/* How It Works */
.steps-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    text-align: center;
}

.step-item {
    flex: 1;
    min-width: 250px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    line-height: 50px;
    margin: 0 auto 20px;
}

.step-item p {
    color: #666;
    margin-top: 10px;
}

/* Footer */
.footer {
    position: relative;
    background-color: #111;
    color: #999;
    padding: 60px 0 20px;
    overflow: hidden;
    /* Ensure video stays within footer */
}

/* Footer Brand Styles */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 120px;
    /* Reduced size */
    background-color: rgba(255, 255, 255, 0.9);
    /* White overlay/background */
    padding: 10px;
    border-radius: 8px;
    /* Rounded corners */
    display: block;
}

.brand-desc {
    font-size: 0.9rem;
    /* Reduced size */
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.brand-text {
    font-size: 0.8rem;
    /* Reduced size */
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 300px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Dark overlay for readability */
    z-index: 1;
}

.footer-content,
.footer-bottom {
    position: relative;
    z-index: 2;
    /* Ensure content is above video */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3,
.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
}

.social-links a {
    color: #fff;
    margin-right: 15px;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.8rem;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.newsletter-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.newsletter-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #333;
    background-color: #222;
    color: #fff;
    border-radius: 4px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 20px 0;
        opacity: 0;
    }

    .nav-links.active li {
        opacity: 1;
        transition: opacity 0.5s ease 0.2s;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: #fff;
        transition: all 0.3s ease;
    }

    .hamburger.toggle span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.toggle span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Intro Split Responsive */
    .intro-split {
        flex-direction: column;
    }

    .intro-image {
        height: 300px;
    }

    .intro-content {
        padding: 40px 20px;
        text-align: center;
    }

    .intro-content .btn-outline {
        align-self: center;
    }

    /* Destination Grid Responsive */
    .destination-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Mega Menu Responsive */
    .dropdown-content {
        position: static;
        width: 100%;
        max-width: 100%;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        padding: 0;
        margin-top: 10px;
        border-top: none;
        flex-direction: column;
        gap: 15px;
    }

    .dropdown:hover .dropdown-content,
    .dropdown.active .dropdown-content {
        animation: none;
    }

    .mega-menu-col {
        min-width: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .mega-menu-col h3 {
        color: #fff;
        /* White text on mobile menu bg */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mega-menu-col a {
        color: rgba(255, 255, 255, 0.8) !important;
        justify-content: center;
        padding: 8px 0;
    }

    .mega-menu-col a:hover {
        color: #fff !important;
        background: none;
        padding-left: 0;
    }

    .mega-menu-promo {
        display: none;
        /* Hide promo on mobile to save space */
    }
}

@media (max-width: 480px) {
    .destination-grid-full {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* CTA Parallax Section */
.cta-section {
    background-image: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 120px 0;
    /* Increase padding for better parallax feel */
    color: #fff;
    text-align: center;
    margin-top: 0;
    /* Ensure no gap */
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Contact Highlight Section */
.contact-highlight {
    position: relative;
    padding: 80px 0;
    background-color: #f4f4f4;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.contact-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Floating Buttons */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.review-float-container {
    position: fixed;
    bottom: 120px;
    left: 40px;
    /* Moved to left */
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align items to start */
}

.review-btn {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
}

.review-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.review-links.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.review-item {
    background: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.review-item:hover {
    background: #f0f0f0;
}

.review-item.google i {
    color: #DB4437;
}

.review-item.tripadvisor i {
    color: #00AF87;
}

/* Safari Plan Section */
.safari-plan-section {
    padding: 100px 0;
    background-color: #fff;
}

.safari-plan-section .container {
    max-width: 98vw;
    /* Almost full width */
    width: 98%;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.plan-card {
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.plan-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.plan-card:hover .plan-bg img {
    transform: scale(1.1);
}

.plan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2), transparent);
    z-index: 2;
}

.plan-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    color: #fff;
    z-index: 3;
    text-align: center;
}

.plan-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.plan-desc {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Utilities - Keep existing */
.mt-3 {
    margin-top: 1rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Contact Form Success Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.success-modal {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10001;
}

.modal-overlay.active .success-modal {
    transform: translateY(0);
}

.success-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.success-message {
    color: #666;
    margin-bottom: 25px;
}

.close-modal-btn {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.close-modal-btn:hover {
    background-color: #b08d4b;
}