:root {
    --primary: #008e48;
    --secondary: #005e30;
    --dark: #0f1411;
    --light: #f1f8f3;
    --gray: #64748b;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0, 142, 72, 0.08);
    /* Updated diffused shadow */
    --shadow-2: 0 20px 80px rgba(0, 142, 72, 0.12);
    /* Even more diffused */
    --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    /* Faster, smoother transition */
    --glass: rgba(255, 255, 255, 0.85); /* Increased opacity for legibility */
    --blur: blur(40px);
    /* Stronger blur for glassmorphism */
    --radius: 40px;
    /* Consistent modern rounding */
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 1; /* Instant Visibility */
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
    text-align: left !important;
}

/* ===== UTILITY CLASSES ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 142, 72, 0.25);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 142, 72, 0.35);
    background: var(--secondary);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 1px solid rgba(0, 142, 72, 0.1);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background: var(--light);
    transform: translateY(-5px);
}

/* ===== FLOATING BUTTONS ===== */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.floating-btn.call {
    left: 30px;
    background: #28a745;
    animation: pulse-shake-call 2.5s infinite;
}

.floating-btn.whatsapp {
    right: 30px;
    background: #25d366;
    animation: pulse-shake-wa 2.5s infinite;
}

.floating-btn:hover {
    animation-play-state: paused;
    transform: scale(1.1);
}

@keyframes pulse-shake-call {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    10% {
        transform: scale(1.1) rotate(-10deg);
    }

    20% {
        transform: scale(1.1) rotate(10deg);
    }

    30% {
        transform: scale(1.1) rotate(-10deg);
    }

    40% {
        transform: scale(1.1) rotate(10deg);
    }

    50% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
    }

    100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

@keyframes pulse-shake-wa {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(11, 143, 59, 0.7);
    }

    10% {
        transform: scale(1.1) rotate(-10deg);
    }

    20% {
        transform: scale(1.1) rotate(10deg);
    }

    30% {
        transform: scale(1.1) rotate(-10deg);
    }

    40% {
        transform: scale(1.1) rotate(10deg);
    }

    50% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== HEADER / NAVBAR ===== */
.navbar {
    position: sticky;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1300px;
    height: 85px;
    background: var(--glass);
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    /* Modern Pill Navbar */
    box-shadow: var(--shadow);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.navbar.scrolled {
    height: 75px;
    top: 10px;
    background: rgba(255, 255, 255, 1); /* Solid white on scroll */
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--white);
    padding: 5px;
    box-shadow: 0 0 15px rgba(0, 142, 72, 0.4);
    border: 2px solid var(--primary);
    /* Matched with button color */
    transition: var(--transition);
    animation: liveBorder 2.5s infinite ease-in-out;
    filter: saturate(2) brightness(1) contrast(1.1) drop-shadow(0 0 2px var(--primary));
    /* Forces the logo to match button green */
}

@keyframes liveBorder {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(0, 142, 72, 0.3);
        border-color: var(--primary);
    }

    50% {
        box-shadow: 0 0 25px hwb(150 0% 44% / 0.6);
        border-color: #045c30;
    }
}

.logo img:hover {
    transform: rotate(360deg) scale(1.1);
    animation-play-state: paused;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu li {
    list-style: none;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 18px;
    border-radius: 30px;
}

.nav-menu a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Dropdown (Modern Mega-Menu style) */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    box-shadow: var(--shadow-2);
    border-radius: 50px;
    padding: 10px 30px;
    display: flex;
    /* Horizontal layout */
    gap: 15px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Invisible bridge to prevent closing on gap */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 25px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
    display: flex;
    align-items: center;
}

.dropdown-menu a {
    color: var(--dark);
    font-size: 0.95rem;
    padding: 10px 15px;
    border-radius: 20px;
}

.dropdown-menu a:hover {
    color: var(--white);
    background: var(--primary);
}

/* Ensure mobile compatibility – keep standard list for mobile */
@media (max-width: 992px) {
    .navbar {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
        height: 75px;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(40px);
        border: none;
        border-bottom: 1px solid rgba(0, 142, 72, 0.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        padding: 0;
    }

    .logo img {
        height: 45px;
        width: 45px;
        object-fit: contain;
    }

    .hamburger {
        display: flex;
        width: 45px;
        height: 45px;
        margin-right: 15px;
        z-index: 2000;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        /* Hidden on left */
        width: 85%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.85);
        /* Slightly clearer glass */
        backdrop-filter: blur(40px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 50px;
        gap: 20px;
        transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 1500;
        box-shadow: 25px 0 60px rgba(0, 0, 0, 0.15);
        border-radius: 0 50px 50px 0;
        /* Pinned to left: only right corners rounded */
        border-right: 1px solid rgba(255, 255, 255, 0.6);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.4rem;
        font-weight: 600;
        width: 100%;
        padding: 15px 25px;
        border-radius: 20px;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        display: none;
        background: rgba(0, 142, 72, 0.03);
        border: none;
        padding-left: 20px;
        margin-top: 10px;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: var(--light);
    width: 50px;
    height: 50px;
    border-radius: 100px;
    /* Matching the pill navbar */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    position: relative;
    z-index: 2000;
}

.hamburger:hover {
    background: var(--white);
    transform: scale(1.05);
}

.hamburger.active {
    background: var(--primary);
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    border-radius: 5px;
    transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--white);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--white);
}

/* Ensure hamburger is above menu panel */
.hamburger {
    z-index: 2000;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
    margin-top: -105px;
    /* Pulling up to clear the sticky navbar gap */
    width: 100%;
    max-width: none;
    border-radius: 0 0 80px 80px;
    /* Only bottom rounded for professional full-bleed feel */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .hero-slider {
        height: 65vh;
        width: 100%;
        margin: 0;
        border-radius: 0 0 40px 40px;
    }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1), transform 10s linear;
    transform: scale(1.1);
    /* Cinematic start zoom */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centered layout */
    text-align: center;
    color: var(--white);
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    display: block;
    width: 100%;
    margin: 0 auto 20px;
}

.typing-content {
    color: var(--white);
    border-right: 4px solid var(--white);
    padding-right: 5px;
    animation: blink 0.75s step-end infinite;
    white-space: normal;
    /* Allow wrapping */
}

@keyframes blink {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--primary)
    }
}

@media (max-width: 992px) {
    .hero-slider {
        height: 65vh;
        width: 100%;
        border-radius: 0 0 40px 40px;
    }

    .slide-content h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .slide-content p {
        font-size: 1rem;
        padding: 0 10px;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 0 20px;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .slide-content .btn {
        width: 100%;
        margin-bottom: 15px;
        padding: 14px 25px;
    }

    .slide-content .btn:last-child {
        margin-bottom: 0;
    }
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    /* Slightly darker for readability */
}

.slide-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    width: 100%;
    padding: 0 50px;
    margin: 0 auto;
    text-align: center;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.slide-content .btn {
    margin: 0 10px;
    animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.slider-nav button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-nav button.active {
    background: var(--white);
    transform: scale(1.2);
}

/* ===== PAGE HEADER ===== */
.page-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh; /* Increased for full-screen impact */
    margin-top: -105px; /* Pulling up under sticky navbar */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Overlay to make text readable */
}

.page-header-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.page-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.page-header-content p {
    font-size: 1.2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

@media (max-width: 768px) {
    .page-header {
        height: 60vh;
    }

    .page-header-content h1 {
        font-size: 2rem;
    }

    .page-header-content p {
        font-size: 1rem;
    }
}

/* ===== SECTION HEADERS ===== */
.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -2px;
    color: var(--dark);
    position: relative;
    padding-bottom: 15px;
    background: linear-gradient(135deg, var(--dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== CARDS GRID ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 10px;
    border: 1px solid rgba(0, 142, 72, 0.05);
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-2);
    border-color: rgba(0, 142, 72, 0.15);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 30px;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.card-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

.card-content .btn {
    padding: 8px 20px;
}

/* ===== DESTINATION CARDS ===== */
.destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 20px;
}

.destination-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.destination-info p {
    font-size: 0.9rem;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.why-item {
    padding: 30px;
    background: var(--light);
    border-radius: 15px;
    transition: var(--transition);
}

.why-item:hover {
    background: var(--primary);
    color: var(--white);
}

.why-item i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.why-item:hover i {
    color: var(--white);
}

.why-item h3 {
    margin-bottom: 10px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), #004d27);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-buttons .btn {
    background: var(--white);
    color: var(--primary);
}

.cta-buttons .btn:hover {
    background: var(--secondary);
    color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-col p {
    color: #ccc;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

/* Base brand colors for social icons */
.social-links a .fa-facebook-f {
    color: #1877f2;
}

.social-links a .fa-twitter {
    color: #1da1f2;
}

.social-links a .fa-instagram {
    color: #e1306c;
}

.social-links a .fa-linkedin-in {
    color: #0077b5;
}

.social-links a:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE STYLES – FULL MOBILE OPTIMIZATION ===== */

/* Tablet & small desktop (992px and below) */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 20px;
        bottom: 20px;
        left: -100%;
        width: calc(100% - 40px);
        max-width: 300px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 60px 20px 30px;
        gap: 15px;
        box-shadow: 10px 0 40px rgba(0, 0, 0, 0.15);
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        pointer-events: auto;
        z-index: 1001;
        border-radius: 30px;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 20px;
        pointer-events: all;
    }

    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.4s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-menu.active li {
        opacity: 1 !important;
        transform: translateX(0) !important;
        visibility: visible !important;
    }

    /* Staggered animation for menu items */
    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-menu.active li:nth-child(6) {
        transition-delay: 0.6s;
    }

    /* Standardized Menu Buttons */
    .nav-menu a,
    .dropdown-menu a {
        background: var(--light);
        padding: 11px 25px;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        color: var(--dark) !important;
        /* Ensure text is visible */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
        width: 90%;
        max-width: 250px;
        text-align: left;
        display: block;
        min-width: auto;
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.02);
    }

    .nav-menu a:hover,
    .dropdown-menu a:hover {
        background: var(--primary);
        color: var(--white);
        transform: scale(1.03);
        box-shadow: 0 8px 20px rgba(0, 142, 72, 0.2);
    }

    /* Dropdown on mobile – ensure the toggle has a visual indicator */
    .dropdown>a i {
        transition: transform 0.3s;
    }

    .dropdown.active>a i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0 !important;
        margin: 0 !important;
        display: none;
        background: transparent;
        margin-top: 10px;
        width: 100%;
        text-align: left;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .dropdown-menu li {
        padding: 5px 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }



    .slide-content h1 {
        font-size: 2.5rem;
    }
}

/* Mobile landscape & small tablets (768px and below) */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-slider {
        height: 60vh;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slide-content .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .cards-grid {
        gap: 20px;
    }

    .card img {
        height: 180px;
    }

    .destination-card {
        height: 250px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .gallery-item {
        height: 200px;
    }

    .why-grid {
        gap: 20px;
    }

    .why-item {
        padding: 20px;
    }

    .why-item i {
        font-size: 2.5rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 80%;
        max-width: 300px;
    }

    .footer-grid {
        gap: 30px;
    }

    /* ===== CONTACT PAGE – STACK FORM & MAP ON MOBILE ===== */
    /* Method 1: If you added class="contact-grid" to the wrapping div */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Method 2: Fallback – target the most common inline grid style */
    .section .container>div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Extra small devices (576px and below) – phones */
@media (max-width: 576px) {
    .container {
        width: 95%;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-slider {
        height: 50vh;
    }

    .page-header {
        height: 50vh;
    }

    .slide-content h1,
    .page-header-content h1 {
        font-size: 1.8rem;
    }

    .slide-content p,
    .page-header-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .slide-content .btn {
        display: block;
        width: 80%;
        margin: 10px 0;
    }

    .slider-nav {
        bottom: 15px;
    }

    .slider-nav button {
        width: 8px;
        height: 8px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        /* Single column on very small screens */
        gap: 20px;
    }

    .card img {
        height: 160px;
    }

    .destination-card {
        height: 220px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 180px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        /* Two columns if space permits */
        gap: 15px;
    }

    .why-item {
        padding: 15px;
    }

    .why-item i {
        font-size: 2rem;
    }

    .why-item h3 {
        font-size: 1rem;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-buttons .btn {
        width: 90%;
        padding: 12px 20px;
    }

    /* Footer stacking */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-col {
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }

    /* Floating buttons adjustment */
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
    }

    .floating-btn.call {
        left: 15px;
    }

    .floating-btn.whatsapp {
        right: 15px;
    }
}

/* Very small devices (400px and below) */
@media (max-width: 400px) {
    .section-title {
        font-size: 1.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        /* Stack them */
    }

    .nav-menu a {
        min-width: 160px;
        padding: 10px 20px;
        font-size: 1rem;
    }

    .dropdown-menu a {
        min-width: 140px;
    }
}

/* Touch-friendly adjustments */
@media (hover: none) and (pointer: coarse) {

    .btn:hover,
    .card:hover,
    .floating-btn:hover {
        transform: none;
        /* Disable hover effects on touch devices */
    }

    .nav-menu a:hover {
        transform: none;
    }
}


/* Ensure dropdown links are clickable on mobile */
@media (max-width: 992px) {
    .dropdown-menu a {
        pointer-events: auto;
        position: relative;
        z-index: 1001;
    }
}


.cards-grid .card {
    position: relative;
}


/* Airline partner logo overlay */
.partner-logo {
    position: absolute;
    bottom: 15px;
    /* Slightly more spacing */
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    /* Clean white background */
    padding: 8px 12px;
    border-radius: 12px;
    /* Modern rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    /* Soft premium shadow */
    backdrop-filter: blur(5px);
    /* Modern glass effect */
    transition: var(--transition);
}

.card:hover .partner-logo {
    transform: scale(1.05);
    /* Subtle hover lift */
}

/* ===== ADVANCED ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 20px 0;
}

.about-image-side .image-wrapper {
    position: relative;
    border-radius: 30px;
}

.about-featured-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow-2);
}

.years-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--primary);
    color: var(--white);
    padding: 25px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 142, 72, 0.3);
    animation: floating 3s ease-in-out infinite;
}

.years-badge h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.years-badge p {
    font-size: 0.9rem;
    font-weight: 500;
}

.about-text-side .description {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--gray);
}

.feature-bullets {
    margin-bottom: 40px;
}

.bullet {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.bullet i {
    font-size: 2rem;
    color: var(--primary);
    background: var(--light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.bullet-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.bullet-text p {
    font-size: 0.95rem;
    color: var(--gray);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-side .image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-featured-img {
        height: 350px;
    }
}

/* ===== CONTACT CARDS REFINEMENT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 45px 35px;
    border-radius: 30px;
    text-align: left; /* Left-aligned for premium typography */
    transition: var(--transition);
    border: 1px solid rgba(0, 142, 72, 0.08);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2);
    border-color: var(--primary);
}

.contact-icon {
    width: 75px;
    height: 75px;
    background: var(--light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.contact-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 700;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-card a {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--secondary);
    letter-spacing: 0.5px;
}

.contact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(0, 142, 72, 0.03) 50%);
    border-radius: 30px 0 0 0;
}

/* ===== PREMIUM 3D CONTACT FORM ===== */
.premium-form-container {
    background: var(--white);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 142, 72, 0.05);
    position: relative;
    transform: perspective(1200px) rotateX(1deg); /* Subtle 3D Depth */
    transition: var(--transition);
}

.premium-form-container:hover {
    transform: perspective(1200px) rotateX(0deg) translateY(-5px);
    box-shadow: 0 40px 100px rgba(0, 142, 72, 0.12);
}

.premium-form-container h3 {
    font-size: 2rem;
    margin-bottom: 35px;
    color: var(--dark);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.premium-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    padding: 20px 25px;
    border: 2px solid transparent;
    border-radius: 18px;
    background: #f8faf9;
    font-size: 1rem;
    color: var(--dark);
    font-family: inherit;
    transition: var(--transition);
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.02), 0 4px 10px rgba(255, 255, 255, 0.8);
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 142, 72, 0.1), 0 0 0 4px rgba(0, 142, 72, 0.05);
    transform: translateY(-2px);
}

.premium-form .btn-submit {
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 18px;
    background: var(--primary);
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 142, 72, 0.3);
    margin-top: 10px;
}

.premium-form .btn-submit:hover {
    background: var(--secondary);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 142, 72, 0.4);
}



@keyframes floating {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.partner-logo img {
    width: 90px;
    /* Increased size as requested */
    height: 45px;
    /* Fixed height for consistency */
    object-fit: contain;
    /* Maintain ratio */
    display: block;
}


/* Sirf PIA logo ke liye */
#pia-logo {
    border: 1px solid rgba(0, 100, 0, 0.2);
    border-radius: 10px;
    padding: 10px;
    background: #fff;
}

#pia-logo:hover {
    transform: scale(1.1);
}

/* Sirf Emirates logo ke liye */
#emirates-logo {
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
    padding: 10px;
}

#emirates-logo:hover {
    transform: scale(1.1);
}

/* Sirf Air India logo ke liye */
#airindia-logo {
    opacity: 1;
    padding: 10px;
}

#airindia-logo:hover {
    transform: scale(1.1);
}

/* Sirf Saudia logo ke liye */
#saudia-logo {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
}

#saudia-logo:hover {
    transform: scale(1.1);
}


/* Airline Logo Container */
.airline-logo-pic {
    width: 100%;
    height: 1000px;
    /* Desktop ke liye height */
    overflow: hidden;
    border-radius: 15px;
    /* Rounded corners */
    background: #f8f8f8;
    /* Fallback background */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Image Styling */
.airline-logo-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover size */
    display: block;
    transition: transform 0.3s ease;
}

/* Hover Effect */
.airline-logo-pic:hover img {
    transform: scale(1.05);
}

/* ===== Mobile Responsive ===== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .airline-logo-pic {
        height: 200px;
        /* Tablet pe chhoti height */
        border-radius: 12px;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .airline-logo-pic {
        height: 180px;
        /* Mobile pe aur chhoti */
        border-radius: 10px;
    }
}

/* Small Mobile (400px and below) */
@media (max-width: 400px) {
    .airline-logo-pic {
        height: 150px;
        /* Chhoti screens ke liye */
        border-radius: 8px;
    }
}

/* Hotel description styling */
.card-content p:last-of-type {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    min-height: 45px;
    /* Har card mein equal height ke liye */
}

@media (max-width: 576px) {
    .card-content p:last-of-type {
        font-size: 0.85rem;
        min-height: 40px;
    }
}

/* ===== TEAM SECTION ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-info p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
}

.timeline-year {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    z-index: 1;
}

.timeline-content {
    width: 45%;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.timeline-content p {
    color: var(--gray);
}

/* Timeline responsive */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-end;
    }

    .timeline-year {
        left: 30px;
        transform: translateX(0);
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ===== CORE VALUES ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-item:hover {
    background: var(--primary);
    color: var(--white);
}

.value-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
    transition: var(--transition);
}

.value-item:hover i {
    color: var(--white);
}

.value-item h3 {
    margin-bottom: 10px;
}

.value-item p {
    color: var(--gray);
    transition: var(--transition);
}

.value-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.menu-footer-decoration {
    display: none;
}

/* ===== MENU FOOTER DECORATION (Mobile Only) ===== */
.menu-footer-decoration {
    display: none !important;
}

@media (max-width: 992px) {
    .nav-menu.active .menu-footer-decoration {
        display: flex !important;
        position: relative;
        width: 100%;
        height: 180px;
        margin-top: 30px;
        align-items: center;
        justify-content: center;
        overflow: visible;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding-top: 20px;
    }

    .tech-glow {
        position: absolute;
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, rgba(0, 142, 72, 0.25) 0%, transparent 70%);
        border-radius: 50%;
        animation: pulseGlow 3s infinite ease-in-out;
        z-index: 1;
    }

    .tech-gears {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2;
        opacity: 0.15;
    }

    .gear-big {
        font-size: 80px;
        color: var(--primary);
        animation: rotateCW 12s infinite linear;
        position: absolute;
        left: 20%;
    }

    .gear-small {
        font-size: 50px;
        color: var(--primary);
        animation: rotateCCW 8s infinite linear;
        position: absolute;
        right: 20%;
    }

    .spinning-logo {
        position: relative !important;
        z-index: 3 !important;
        width: 100px !important;
        height: 100px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: var(--white) !important;
        border-radius: 50% !important;
        box-shadow: 0 0 20px rgba(0, 142, 72, 0.4) !important;
        border: 2px solid var(--primary) !important;
        animation: logoFloat 4s infinite ease-in-out, liveBorder 2.5s infinite ease-in-out !important;
    }

    .spinning-logo img {
        width: 70% !important;
        height: auto !important;
        animation: rotateCW 10s infinite linear !important;
        display: block !important;
        margin: auto !important;
        filter: saturate(2) brightness(1) contrast(1.1) drop-shadow(0 0 2px var(--primary));
        /* Match button color */
    }
}

@keyframes rotateCW {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateCCW {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.8;
    }
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== THANK YOU MODAL ===== */
.thank-you-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 20, 17, 0.95);
    backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.thank-you-overlay.active {
    display: flex;
    opacity: 1;
}

.thank-you-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    transform: scale(0.7) translateY(50px);
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    border: 1px solid rgba(0, 142, 72, 0.1);
}

.thank-you-overlay.active .thank-you-card {
    transform: scale(1) translateY(0);
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
    animation: success-pop 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0, 142, 72, 0.3);
}

@keyframes success-pop {
    0% { transform: scale(0) rotate(-45deg); opacity: 0; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

.thank-you-card h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 800;
}

.thank-you-card p {
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
    text-align: center !important;
}

.btn-close-modal {
    background: var(--primary);
    color: white;
    padding: 18px 45px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.4s;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 142, 72, 0.2);
}

.btn-close-modal:hover {
    background: var(--dark);
    transform: translateY(-5px);
}
/* ===== COUNTRY CODE PICKER (ITI) CUSTOM STYLES ===== */
.iti { width: 100%; margin-bottom: 20px; }
.iti__flag-container { border-radius: 12px 0 0 12px; }
.iti--separate-dial-code .iti__selected-dial-code { color: #444; font-weight: 600; font-size: 0.9rem; margin-left: 8px; }
.iti__country-list { 
    border-radius: 15px; 
    box-shadow: 0 15px 45px rgba(0,0,0,0.1) !important; 
    border: 1px solid #eee !important; 
    max-width: 300px; 
    z-index: 1000;
}
.iti__country { padding: 10px 15px !important; transition: 0.2s; }
.iti__country:hover { background: #f4f7f6 !important; color: #008e48; }
.iti__country-name { font-size: 0.85rem; font-weight: 500; }
.iti__dial-code { color: #888; }

#phoneNumber { padding-left: 95px !important; }
@media (max-width: 480px) {
    #phoneNumber { padding-left: 85px !important; }
}

