
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

body > main,
body > footer {
    animation: pageEnter var(--page-transition-duration) ease-out both;
}

.main-content {
    position: relative;
}

:root {
    --glass-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.14) 100%);
    --glass-bg-hover: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
    --glass-border: 1px solid rgba(255, 255, 255, 0.38);
    --glass-shadow: 0 12px 36px rgba(14, 90, 103, 0.16);
    --glass-shadow-hover: 0 20px 48px rgba(14, 90, 103, 0.22);
    --glass-blur: blur(14px);
    --navbar-offset: clamp(100px, 11vh, 140px);
    --page-transition-duration: 380ms;
    --reveal-duration: 760ms;
}

html {
    scroll-padding-top: var(--navbar-offset);
}

/* ============ NAVBAR ============ */
@keyframes pageEnter {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageExit {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(8px);
    }
}

body.page-is-exiting {
    pointer-events: none;
}

body.page-is-exiting > main,
body.page-is-exiting > footer {
    animation: pageExit var(--page-transition-duration) ease-in forwards;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity var(--reveal-duration) ease, transform var(--reveal-duration) ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    body,
    body.page-is-exiting,
    body > main,
    body > footer,
    body.page-is-exiting > main,
    body.page-is-exiting > footer,
    .reveal-on-scroll,
    .reveal-on-scroll.is-visible,
    .floating-whatsapp {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}
.navbar {
    background: rgba(14, 90, 103, 0.42) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
    position: fixed !important;
    width: 100%;
    top: 0;
    z-index: 1400;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 32px rgba(27, 169, 154, 0.25), 
                -11px 4px 20px 2px rgba(78, 205, 196, 0.28) !important;
    
}

@keyframes navbarDrop {
    from {
        transform: translateY(-14px);
        opacity: 0.96;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    border-radius: 10px;
    padding: 0.35rem 0.55rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.28) !important;
}

.navbar-toggler-icon {
    filter: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.92%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.subtitle_logo{
    font-size: 2REM;
    FONT-FAMILY: math;
    FONT-WEIGHT: 1000;
    color: #ffffff;
    margin: auto 0 auto 0.5rem 15px;
}
.navbar-brand:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

.navbar-logo {
    height: auto;
    width: 100px;
    font-size: 5rem;
    object-fit: contain;
    /* margin: -40px 0px; */
    margin-left: 25px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.94) !important;
    font-weight: 700;
    FONT-FAMILY: math;
    font-size: 1.222rem !important;
    margin: 0 15px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1BA99A, #0E5A67);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #4ECDC4 !important;
}

.nav-link.active,
.nav-link:focus-visible {
    color: #4ECDC4 !important;
}

.navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.96) !important;
    border-bottom: 1px solid rgba(14, 90, 103, 0.16);
    animation: navbarDrop 0.26s ease-out;
}

.navbar.navbar-scrolled .nav-link {
    color: #0E5A67 !important;
}

.navbar.navbar-scrolled .subtitle_logo {
    color: #0E5A67;
}

.navbar.navbar-scrolled .nav-link:hover,
.navbar.navbar-scrolled .nav-link.active,
.navbar.navbar-scrolled .nav-link:focus-visible {
    color: #1BA99A !important;
}

@media (max-width: 991.98px) {
    .navbar .container-fluid {
        padding-left: 0.65rem;
        padding-right: 0.65rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
        max-width: calc(100% - 58px);
    }

    .navbar-logo {
        width: 58px;
        margin-left: 0;
    }

    .subtitle_logo {
        font-size: 1.1rem;
        margin: 0 0 0 8px;
        line-height: 1.2;
    }

    .navbar-toggler {
        margin-left: auto;
    }

    .navbar-collapse {
        margin-top: 0.75rem;
        padding: 0.75rem 0.6rem;
        border-radius: 12px;
        background: rgba(8, 31, 62, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .navbar .nav-link {
        margin: 0.25rem 0;
        padding: 0.5rem 0.6rem;
        font-size: 1rem !important;
    }

    .nav-link::after {
        display: none;
    }

    .navbar.navbar-scrolled .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-color: rgba(14, 90, 103, 0.2);
    }

    .navbar.navbar-scrolled .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2814,90,103,0.92%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar.navbar-scrolled .navbar-collapse .nav-link {
        color: #0E5A67 !important;
    }
}

@media (max-width: 420px) {
    .subtitle_logo {
        font-size: 0.98rem;
        margin-left: 6px;
    }

    .navbar-logo {
        width: 50px;
    }
}

/* Dropdown Menu Styling */
.dropdown-menu {
    background: linear-gradient(135deg, #0E5A67 0%, #1BA99A 100%);
    border: 1px solid rgba(27, 169, 154, 0.3);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(14, 90, 103, 0.2);
    padding: 0.5rem 0;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
}

.dropdown-item:hover {
    background: rgba(27, 169, 154, 0.3);
    color: #4ECDC4;
    padding-left: 2rem;
}

.dropdown-item.active,
.dropdown-item:active {
    background: rgba(27, 169, 154, 0.2);
    color: #4ECDC4;
}

.btn-nav {
    background: linear-gradient(135deg, #1BA99A, #0E5A67);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(27, 169, 154, 0.3);
    color: white;
}

/* Consistent glass effect for all card-like surfaces */
:where(.feature-card, .service-card, .testimonial-card, .contact-form, .visa-form-wrapper) {
    background: var(--glass-bg) !important;
    border: var(--glass-border) !important;
    box-shadow: var(--glass-shadow) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
}

:where(.feature-card, .service-card, .testimonial-card, .contact-form, .visa-form-wrapper):hover {
    background: var(--glass-bg-hover) !important;
    box-shadow: var(--glass-shadow-hover) !important;
}

/* ============ HERO SECTION ============ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgb(0 0 0 / 75%) 70%), url(/static/images/hero-lake.jpg) center / cover no-repeat;
    position: relative;
    top: 0%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--navbar-offset) !important;
    background-attachment: fixed;
}

.hero.page-hero {
    min-height: clamp(420px, 62vh, 560px) !important;
    padding-top: calc(var(--navbar-offset) + 18px) !important;
}

/* Animated Background Elements */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(27, 169, 154, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(14, 90, 103, 0.15) 0%, transparent 50%);
    animation: bgShift 15s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-50px, -50px);
    }
}



/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #4ECDC4;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #4ECDC4 50%, #1BA99A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 30px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #1BA99A, #0E5A67);
    border: none;
    color: white;
    padding: 15px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(27, 169, 154, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    text-decoration: none;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0E5A67, #1BA99A);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(34, 167, 199, 0.4);
    color: white;
}

.btn-primary-custom:hover::before {
    left: 0;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid #4ECDC4;
    color: #4ECDC4;
    padding: 13px 43px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: inline-block;
    text-decoration: none;
    overflow: hidden;
}

.btn-secondary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #4ECDC4;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-secondary-custom:hover {
    color: #081F3E;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(34, 167, 199, 0.3);
}

.btn-secondary-custom:hover::before {
    left: 0;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 80px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 1s ease-out 1s both;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4ECDC4;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #22A7C7;
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
    z-index: 10;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}



@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-40px) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn-primary-custom, .btn-secondary-custom {
        padding: 12px 35px;
        font-size: 1rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 40px;
    }
}

/* ============ FOOTER ============ */
footer {
    background: radial-gradient(circle at 15% 15%, rgba(27, 169, 154, 0.18) 0%, transparent 45%),
                radial-gradient(circle at 85% 10%, rgba(14, 90, 103, 0.14) 0%, transparent 40%),
                linear-gradient(135deg, #0a3d47 0%, #0e5a67 45%, #1b7d89 100%);
    color: rgba(255, 255, 255, 0.86);
    padding: 80px 20px 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 35%, transparent 65%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 26px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Logo & About Container */
.logo-about-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    grid-column: span 1;
}

.footer-logo-section {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.footer-logo-section img {
    max-width: 150px;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.footer-logo-tagline {
    font-size: 0.75rem;
    color: #4ECDC4;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-about-content {
    flex: 1;
}

.footer-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 14px 34px rgba(5, 30, 42, 0.32);
    border-radius: 18px;
    padding: 24px 22px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.footer-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(5, 30, 42, 0.38);
    border-color: rgba(255, 255, 255, 0.35);
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #4ECDC4;
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #4ECDC4;
    transform: translateX(5px);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    color: #4ECDC4;
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-info h5 {
    color: #4ECDC4;
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 600;
}

.footer-contact-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 22px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(27, 169, 154, 0.28), rgba(14, 90, 103, 0.45));
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 26px rgba(18, 102, 124, 0.5);
}

.floating-whatsapp {
    position: fixed;
    right: 50px;
    bottom: 50px;
    margin: 0;
    width: 60px;
    height: 60px;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.75rem;
    background: linear-gradient(135deg, #25d366, #1ea952);
    box-shadow: 0 14px 28px rgba(30, 169, 82, 0.34), 0 6px 16px rgba(8, 31, 62, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: whatsappBob 2.8s ease-in-out infinite, whatsappGlow 4.2s ease-in-out infinite;
}

.floating-whatsapp i {
    transition: transform 0.25s ease;
}

.floating-whatsapp:hover {
    color: #ffffff;
    animation-play-state: paused;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 36px rgba(30, 169, 82, 0.46), 0 10px 20px rgba(8, 31, 62, 0.24);
}

.floating-whatsapp:hover i {
    transform: scale(1.12) rotate(-8deg);
}

@keyframes whatsappBob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes whatsappGlow {
    0%,
    100% {
        box-shadow: 0 14px 28px rgba(30, 169, 82, 0.34), 0 6px 16px rgba(8, 31, 62, 0.2);
    }
    50% {
        box-shadow: 0 16px 30px rgba(30, 169, 82, 0.42), 0 8px 18px rgba(8, 31, 62, 0.23);
    }
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(155, 239, 255, 0.8), transparent);
    margin: 40px 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.footer_logo{
    width: 2250px;
    height: auto;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #4ECDC4;
}

/* Responsive */
@media (max-width: 768px) {
    footer {
        padding: 60px 15px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-section {
        padding: 20px 18px;
    }
    
    .logo-about-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo-section {
        min-width: auto;
    }
    
    .footer-about-content {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }

    .floating-whatsapp {
        width: 52px;
        height: 52px;
        right: 14px;
        bottom: 14px;
        margin: 0;
        font-size: 1.55rem;
    }
}