/* ==========================================================================
   Design System & Tokens
   ========================================================================== */
:root {
    /* Colors */
    --clr-primary: #5956E9;
    --clr-primary-light: #7c7aff;
    --clr-primary-dark: #3a37ba;
    
    --clr-secondary: #FFDC60;
    --clr-accent: #FAB8C4;
    
    --clr-dark: #27272E;
    --clr-dark-lighter: #3f3f4a;
    --clr-light: #ECF2F6;
    --clr-white: #ffffff;
    
    --clr-text-main: #525260;
    --clr-text-heading: #292930;
    --clr-text-muted: #999FAE;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #5956E9 0%, #9991FF 100%);
    --gradient-accent: linear-gradient(135deg, #FAB8C4 0%, #FFEDF0 100%);
    --gradient-dark: linear-gradient(180deg, #27272E 0%, #303035 100%);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(89, 86, 233, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-text-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.section {
    padding: var(--space-xl) 0;
}

.text-center { text-align: center; }
.text-white { color: var(--clr-white) !important; }
.text-accent { color: var(--clr-secondary); }

.bg-light { background-color: var(--clr-light); }
.bg-dark { background-color: var(--clr-dark); }
.gradient-bg { background: var(--gradient-primary); color: var(--clr-white); }

/* ==========================================================================
   Typography Utilities
   ========================================================================== */
.section-subtitle {
    color: var(--clr-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
    .section-title { font-size: 3rem; }
}

/* ==========================================================================
   Components
   ========================================================================== */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--clr-primary);
    color: var(--clr-white);
    box-shadow: 0 4px 15px rgba(89, 86, 233, 0.3);
}

.btn-primary:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(89, 86, 233, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--clr-white);
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--clr-white);
    color: var(--clr-white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--clr-white);
    color: var(--clr-primary);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
    background: #9fd2ff;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.navbar.scrolled {
    background: #8fc2ef;
    padding: 0.85rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.18);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a2a3a;
    white-space: nowrap;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--clr-white);
    border-radius: 10px;
    font-size: 1.25rem;
}

.logo-img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: nowrap;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #1a2a3a;
    position: relative;
    white-space: nowrap;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a2a3a;
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: #1a2a3a;
    opacity: 0.85;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: #fff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: var(--radius-md);
    padding: 0.6rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--clr-text-main);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    color: var(--clr-primary);
    background: var(--clr-light);
}

@media (max-width: 1200px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        display: none;
        padding-left: 0;
        background: rgba(0, 0, 0, 0.02);
        width: 100%;
        margin-top: 0.5rem;
        border-radius: var(--radius-sm);
    }
    
    .dropdown-menu a {
        padding: 0.6rem 1.5rem;
        text-align: center;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--clr-text-heading);
    z-index: 1001;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    overflow: hidden;
    background: #0f2942;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 6.5s ease-in-out;
    transform: scale(1.08);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 41, 66, 0.88) 0%, rgba(26, 58, 92, 0.78) 50%, rgba(30, 73, 118, 0.68) 100%);
    z-index: 3;
}

.hero-container {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr; /* Centered hero */
        text-align: center;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(135, 191, 220, 0.2);
    color: #87BFDC;
    border: 1px solid rgba(135, 191, 220, 0.4);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--clr-white);
}

.hero-title .highlight {
    background: linear-gradient(135deg, #87BFDC 0%, #a8d8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-title { font-size: 5rem; }
}

/* Shapes Animation */
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 3;
    animation: float 10s infinite ease-in-out alternate;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(89, 86, 233, 0.3);
    top: -50px;
    right: -50px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(250, 184, 196, 0.3);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background: var(--clr-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 5rem;
    }
}

.about-brand-title {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.rss-logo {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    margin: 0;
    letter-spacing: -1px;
}

.text-orange { color: #FF5722; }
.text-blue { color: #0D47A1; }

.about-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--clr-text-heading);
    font-family: var(--font-heading);
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1px;
}

.about-desc {
    font-size: 1.125rem;
    color: var(--clr-text-body);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.read-more {
    color: #FF8C42;
    font-weight: 600;
    margin-left: 5px;
    text-decoration: none;
    transition: var(--transition);
}

.read-more:hover {
    color: #ff6a00;
    text-decoration: underline;
}

.founder-desk-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--clr-text-heading);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.founder-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
}

@media (min-width: 768px) {
    .founder-box {
        flex-direction: row;
        align-items: flex-start;
    }
}

.founder-img-wrapper {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, #FFD3DB, #FFEDDC);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.founder-quote {
    background: #edf2f9;
    padding: 2rem;
    border-radius: 24px;
    font-size: 1rem;
    color: #42424a;
    line-height: 1.7;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    position: relative;
    border-left: 4px solid #87BFDC;
}

.leadership-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.leader-line {
    font-size: 1.125rem;
    color: var(--clr-text-body);
    margin: 0;
}

.leader-role.orange-text {
    color: #FF8C42;
    font-weight: 700;
}

.leader-name {
    font-weight: 700;
    color: var(--clr-text-heading);
}

.brochure-action {
    margin-top: 1rem;
}

.btn-brochure {
    display: inline-block;
    background: #FF8C42;
    color: var(--clr-white);
    padding: 1rem 2.5rem;
    border-radius: 16px;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 8px 20px rgba(255, 140, 66, 0.3);
    transition: var(--transition);
    text-decoration: none;
    font-size: 1.125rem;
}

.btn-brochure:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 140, 66, 0.4);
    background: #ff7a29;
    color: var(--clr-white);
}

/* About Illustration & Floating Bubbles */
.about-illustration {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.bg-bubble {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
    filter: blur(1px);
    animation: pulseBubble 8s infinite ease-in-out alternate;
}

.bubble-yellow {
    width: 250px;
    height: 250px;
    background: #FFF59D;
    top: 20px;
    right: 80px;
}

.bubble-green {
    width: 180px;
    height: 180px;
    background: #C8E6C9;
    top: 120px;
    right: 10px;
    animation-delay: 1s;
}

.bubble-blue {
    width: 320px;
    height: 320px;
    background: #BBDEFB;
    bottom: 80px;
    left: 20px;
    z-index: 1;
    animation-delay: 2s;
}

.bubble-orange {
    width: 220px;
    height: 220px;
    background: #FFCC80;
    bottom: 40px;
    left: 120px;
    z-index: 1;
    animation-delay: 3s;
}

.bubble-purple {
    width: 150px;
    height: 150px;
    background: #E1BEE7;
    top: 180px;
    left: 40px;
    animation-delay: 4s;
}

.bubble-light-blue {
    width: 140px;
    height: 140px;
    background: #B2EBF2;
    bottom: 10px;
    right: 50px;
    animation-delay: 5s;
}

@keyframes pulseBubble {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(10px, -15px); }
}

.polar-bear-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.polar-bear-img {
    width: 85%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.08));
}

.ice-sign-container {
    position: absolute;
    top: 60px;
    left: 10px;
    width: 65%;
    max-width: 320px;
    z-index: 4;
    animation: floatSign 6s infinite ease-in-out alternate;
}

.ice-sign-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
}

@keyframes floatSign {
    0% { transform: translateY(0px) rotate(-1deg); }
    100% { transform: translateY(-12px) rotate(1deg); }
}
}

.experience-badge .text {
    font-weight: 600;
    color: var(--clr-text-heading);
    line-height: 1.2;
}

/* What We Offer Section */
.offer-section {
    background: #1c1f26;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.offer-header {
    margin-bottom: 3.5rem;
    text-align: left;
}

.offer-subtitle {
    font-size: 1.125rem;
    color: #ff6b81;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.offer-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--clr-white);
    font-family: var(--font-heading);
    line-height: 1.1;
    margin: 0 0 0.5rem 0;
    letter-spacing: -1px;
}

.offer-desc {
    font-size: 1.125rem;
    color: #a0a5b1;
    margin: 0;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

@media (min-width: 768px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .offer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.offer-card {
    display: block;
    width: 100%;
    max-width: 400px;
    border-radius: 32px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.3));
}

.offer-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.offer-card-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Special Features Section */
.special-features-section {
    background: #ffb6b9;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Background Decorative Shapes */
.sf-shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.sf-circle-left {
    width: 350px;
    height: 700px;
    background: #8c7379;
    border-radius: 0 350px 350px 0;
    top: 20%;
    left: 0;
    opacity: 0.85;
}

.sf-circle-purple {
    width: 120px;
    height: 120px;
    background: #b388ff;
    border-radius: 50%;
    top: 28%;
    left: 15%;
    opacity: 0.7;
    animation: pulseBubble 6s infinite alternate ease-in-out;
}

.sf-circle-blue {
    width: 180px;
    height: 180px;
    background: #5c6bc0;
    border-radius: 50%;
    top: 5%;
    right: 32%;
    opacity: 0.9;
    animation: pulseBubble 8s infinite alternate ease-in-out;
}

.sf-dots {
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    top: 32%;
    left: 8%;
    box-shadow: -20px -30px 0 #8c7379, 10px 40px 0 rgba(255,255,255,0.5);
}

.sf-waves {
    top: 0;
    right: 0;
    width: 400px;
    height: 250px;
    background: radial-gradient(ellipse at top right, transparent 70%, rgba(217, 83, 79, 0.15) 70%, rgba(217, 83, 79, 0.15) 72%, transparent 72%);
}

.sf-container {
    position: relative;
    z-index: 2;
}

.sf-header {
    margin-bottom: 4rem;
    max-width: 650px;
    text-align: left;
}

.sf-subtitle {
    font-size: 1.125rem;
    color: #d9534f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.sf-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a2a3a;
    font-family: var(--font-heading);
    line-height: 1.1;
    margin: 0 0 1rem 0;
    letter-spacing: -1px;
}

.sf-desc {
    font-size: 1.125rem;
    color: #525260;
    line-height: 1.7;
    margin: 0;
}

.sf-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .sf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sf-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.25rem;
    }
}

.sf-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    border-radius: 24px;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.sf-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.2);
}

.bg-sp1 { background: #AB8389; }
.bg-sp2 { background: #B49F8A; }
.bg-sp3 { background: #AFB182; }
.bg-sp4 { background: #7CA187; }
.bg-sp5 { background: #8A9FB1; }

.sf-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sf-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
    transition: transform 0.4s ease;
}

.sf-card:hover .sf-icon img {
    transform: scale(1.1) rotate(-5deg);
}

.sf-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sf-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--clr-white);
    font-family: var(--font-heading);
    margin: 0;
    transition: color 0.3s ease;
}

.sf-content p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--clr-white);
    opacity: 0.9;
    margin: 0;
    font-weight: 500;
}

.card-dash {
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--clr-white);
    transition: width 0.3s ease;
}

.sf-card:hover .card-dash {
    width: 32px;
}

/* Sports Section */
.sports-section {
    background: #eef2f5;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.sports-top-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .sports-top-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.sports-brand-title {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.sports-complex-label {
    font-size: 1.125rem;
    color: #d9534f;
    font-weight: 600;
    font-family: var(--font-heading);
}

.sports-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a2a3a;
    font-family: var(--font-heading);
    line-height: 1.1;
    margin: 0 0 1.25rem 0;
    letter-spacing: -1px;
}

.sports-desc {
    font-size: 1.125rem;
    color: #525260;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.sports-badge-wrapper {
    margin-top: 0.5rem;
}

.sports-badge {
    display: inline-block;
    background: #ffc2c2;
    color: #d9534f;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-family: var(--font-heading);
}

.sports-media-wrapper {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    aspect-ratio: 16/9;
    background: #000;
}

.sports-turf-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Accordion Grid */
.sports-accordion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .sports-accordion-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.sports-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sport-accordion-item {
    background: transparent;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.sport-accordion-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 0;
    cursor: pointer;
    user-select: none;
    transition: opacity 0.3s ease;
}

.sport-accordion-header:hover {
    opacity: 0.8;
}

.sport-icon-box {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 16px;
    background: var(--clr-white);
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.sport-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sport-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a2a3a;
    font-family: var(--font-heading);
}

.sport-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.4s ease;
    padding: 0 1rem;
}

.sport-accordion-item.active .sport-accordion-body {
    max-height: 400px;
    padding: 0.5rem 1rem 1.5rem 1rem;
}

.sport-expanded-photo {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    aspect-ratio: 16/9;
}

.sport-expanded-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Experiences Section */
.experiences-section {
    background: #1c1f26;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Background Decorative Shapes */
.exp-bg-shape {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 450px;
    height: 450px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    z-index: 0;
}

.exp-bg-circle {
    position: absolute;
    bottom: 300px;
    left: 80px;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    z-index: 0;
}

.experiences-section .container {
    position: relative;
    z-index: 1;
}

.experiences-section .section-header {
    margin-bottom: 5rem;
}

.exp-subtitle {
    font-size: 1rem;
    color: #ff6b81;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.exp-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--clr-white);
    font-family: var(--font-heading);
    margin: 0 0 1rem 0;
}

.exp-quote {
    font-size: 1.125rem;
    color: #87BFDC;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
    line-height: 1.6;
}

.exp-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .exp-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .exp-stats-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1.25rem;
    }
}

.exp-card {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.exp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.exp-card:hover {
    transform: translateY(-10px);
}

.exp-card:hover::before {
    opacity: 0.1;
}

/* Card Borders & Glows */
.border-pink { border-color: rgba(255, 118, 117, 0.4); }
.border-pink:hover { border-color: #ff7675; box-shadow: 0 15px 35px rgba(255, 118, 117, 0.25); background: #ff7675; }

.border-yellow { border-color: rgba(255, 216, 117, 0.4); }
.border-yellow:hover { border-color: #ffd875; box-shadow: 0 15px 35px rgba(255, 216, 117, 0.25); background: #ffd875; }

.border-green { border-color: rgba(85, 239, 196, 0.4); }
.border-green:hover { border-color: #55efc4; box-shadow: 0 15px 35px rgba(85, 239, 196, 0.25); background: #55efc4; }

.border-blue { border-color: rgba(116, 185, 255, 0.4); }
.border-blue:hover { border-color: #74b9ff; box-shadow: 0 15px 35px rgba(116, 185, 255, 0.25); background: #74b9ff; }

.border-mauve { border-color: rgba(162, 155, 254, 0.4); }
.border-mauve:hover { border-color: #a29bfe; box-shadow: 0 15px 35px rgba(162, 155, 254, 0.25); background: #a29bfe; }

.border-peach { border-color: rgba(255, 218, 193, 0.4); }
.border-peach:hover { border-color: #ffdac1; box-shadow: 0 15px 35px rgba(255, 218, 193, 0.25); background: #ffdac1; }

.exp-icon {
    font-size: 1.75rem;
    color: var(--clr-white);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    transition: transform 0.4s ease;
}

.exp-card:hover .exp-icon {
    transform: scale(1.15) translateY(-5px);
}

.exp-number {
    font-size: 2.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin: 0 0 0.5rem 0;
    transition: transform 0.4s ease, color 0.4s ease;
}

.exp-card:hover .exp-number {
    transform: scale(1.05);
    color: var(--clr-white);
}

.text-pink { color: #ff7675; }
.text-yellow { color: #ffd875; }
.text-green { color: #55efc4; }
.text-blue { color: #74b9ff; }
.text-mauve { color: #a29bfe; }
.text-peach { color: #ffdac1; }

.exp-label {
    font-size: 0.85rem;
    color: var(--clr-white);
    opacity: 0.8;
    line-height: 1.4;
    margin: 0;
}

/* Video Wrapper */
.exp-video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border: 4px solid rgba(255,255,255,0.05);
}

.exp-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.exp-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Gallery Section */
.gallery-section {
    background: #f0f4f8; /* Very light grayish-blue */
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Background Mascot Pattern (simulated) */
.gallery-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 120' width='160' height='192'%3E%3Cg fill='none' stroke='%231a2a3a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M35 55 C 15 65, 15 105, 35 110 C 50 115, 50 115, 65 110 C 85 105, 85 65, 65 55 Z'/%3E%3Ccircle cx='50' cy='35' r='20'/%3E%3Cpath d='M35 22 C 25 10, 15 25, 30 31'/%3E%3Cpath d='M65 22 C 75 10, 85 25, 70 31'/%3E%3Ccircle cx='42' cy='32' r='2' fill='%231a2a3a'/%3E%3Ccircle cx='58' cy='32' r='2' fill='%231a2a3a'/%3E%3Ccircle cx='50' cy='40' r='2.5'/%3E%3Cpath d='M50 42.5 L 50 46'/%3E%3Cpath d='M63 65 C 80 50, 95 30, 85 20 C 75 10, 70 30, 68 55'/%3E%3Cpath d='M37 65 C 20 70, 5 80, 10 95 C 15 110, 25 90, 32 75'/%3E%3Cpath d='M35 50 C 50 58, 65 50, 65 50'/%3E%3Cpath d='M45 54 L 40 75 L 52 65 Z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 160px;
    background-repeat: repeat;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
}

/* Floating Circles */
.gallery-bg-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.gallery-bg-circle.pink {
    width: 80px;
    height: 80px;
    background: #ffb6b9;
    left: 5%;
    top: 50%;
}

.gallery-bg-circle.yellow {
    width: 150px;
    height: 150px;
    background: #ffd875;
    right: 35%;
    top: 10%;
}

.gallery-bg-circle.purple {
    width: 40px;
    height: 40px;
    background: #a29bfe;
    right: 15%;
    top: 25%;
}

.gallery-section .container {
    position: relative;
    z-index: 1;
}

.gallery-header {
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.gallery-subtitle {
    font-size: 1rem;
    color: #ff6b81;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.gallery-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a2a3a;
    font-family: var(--font-heading);
    line-height: 1.1;
    margin: 0 0 1rem 0;
    letter-spacing: -1px;
}

.gallery-badge {
    display: inline-block;
    background: #ffb6b9;
    color: #d9534f;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.gallery-filters {
    display: flex;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.filter-btn {
    flex: 1;
    border: none;
    padding: 1.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: #1a2a3a;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.filter-btn:hover {
    opacity: 0.8;
}

.filter-infra { background: #f8a5ad; }
.filter-sports { background: #fffaaa; }
.filter-activity { background: #ffdfba; }
.filter-students { background: #baffc9; }

/* Inactive state for buttons */
.gallery-filters .filter-btn:not(.active) {
    opacity: 0.6;
}
.gallery-filters .filter-btn.active {
    opacity: 1;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.gallery-card {
    border-radius: 30px;
    overflow: hidden;
    background: #ffb6b9; /* Pink bottom section */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, opacity 0.4s ease;
    display: flex;
    flex-direction: column;
}

.gallery-card.hidden {
    display: none;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-img-wrapper {
    aspect-ratio: 4/3;
    width: 100%;
    overflow: hidden;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-card:hover .gallery-img-wrapper img {
    transform: scale(1.05);
}

.gallery-label {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: #1a2a3a;
    font-size: 1rem;
    font-family: var(--font-heading);
}

/* Testimonial Section */
.testimonial-section {
    background: var(--clr-white);
    padding: 8rem 0;
}

.testi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.testi-title {
    font-size: 2.25rem;
    color: #1a2a3a;
    font-family: var(--font-heading);
    font-weight: 500;
    margin: 0;
}

.testi-logo {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -2px;
}
.testi-logo .logo-r { color: #ff5722; }
.testi-logo .logo-s1 { color: #0d47a1; }
.testi-logo .logo-s2 { color: #1565c0; }

.testi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .testi-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
    }
}

.testi-card {
    display: flex;
    flex-direction: column;
}

.testi-subtitle {
    color: #d9534f;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.testi-scroll-box {
    height: 140px;
    overflow-y: auto;
    padding-right: 1.5rem;
    margin-bottom: 2rem;
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #a0a0a0 transparent;
}

/* Custom Scrollbar for WebKit browsers */
.testi-scroll-box::-webkit-scrollbar {
    width: 6px;
}
.testi-scroll-box::-webkit-scrollbar-track {
    background: transparent;
}
.testi-scroll-box::-webkit-scrollbar-thumb {
    background-color: #999;
    border-radius: 4px;
}
/* Up and down buttons */
.testi-scroll-box::-webkit-scrollbar-button:single-button {
    background-color: transparent;
    display: block;
    height: 12px;
    width: 6px;
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}
/* Up arrow */
.testi-scroll-box::-webkit-scrollbar-button:single-button:vertical:decrement {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M12 8l-6 6h12z'/%3E%3C/svg%3E");
}
/* Down arrow */
.testi-scroll-box::-webkit-scrollbar-button:single-button:vertical:increment {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M12 16l-6-6h12z'/%3E%3C/svg%3E");
}

.testi-quote {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testi-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-avatar.wide {
    width: 120px;
    border-radius: 50%;
}

.testi-name {
    font-size: 0.85rem;
    color: #1a2a3a;
    font-weight: 500;
}

/* Quick Enquiry Section */
.enquiry-section {
    position: relative;
    background: #eff5f9;
    padding: 8rem 0;
    overflow: hidden;
}

/* Decorative Background Elements */
.enq-bg-shape-purple {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, rgba(210,214,255,0.4) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}
.enq-bg-wave {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='none' stroke='%23ffccd5' stroke-width='1.5' d='M0,160L48,138.7C96,117,192,75,288,80C384,85,480,139,576,149.3C672,160,768,128,864,112C960,96,1056,96,1152,112C1248,128,1344,160,1392,176L1440,192'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: cover;
    z-index: 0;
    opacity: 0.8;
}
.enq-bg-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}
.enq-bg-circle.light-blue {
    width: 60px;
    height: 60px;
    background: #bce0fd;
    top: 20%;
    left: 30%;
}
.enq-bg-circle.purple {
    width: 50px;
    height: 50px;
    background: #a9a1ff;
    top: 50%;
    left: 15%;
}
.enq-bg-circle.tiny-white {
    width: 15px;
    height: 15px;
    background: #fff;
    top: 40%;
    left: 12%;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.enq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .enq-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.enq-subtitle {
    color: #f17282;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.enq-title {
    font-size: 3.5rem;
    color: #27272e;
    font-family: var(--font-heading);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.enq-desc p {
    color: #525260;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Form Container */
.enq-form-wrapper {
    position: relative;
    margin-top: 80px; /* Space for the mascot */
}

@media (min-width: 992px) {
    .enq-form-wrapper {
        margin-top: 100px;
    }
}

.enq-mascot-container {
    position: absolute;
    bottom: 100%; /* Sits exactly on top of the card */
    margin-bottom: -50px; /* Overlaps the blue card slightly but avoids inputs */
    left: 50%;
    transform: translateX(-50%);
    width: 320px; /* Slightly larger to compensate for its internal whitespace */
    z-index: 3;
    pointer-events: none;
}

.enq-mascot {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.enq-form-card {
    background: #c3e2ff;
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.enq-form .form-group {
    margin-bottom: 1.25rem;
}

.form-control.pill {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    color: #27272e;
    outline: none;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.form-control.pill::placeholder {
    color: #99a1aa;
}

.select-wrapper {
    position: relative;
}
.select-wrapper::after {
    content: '\f107'; /* FontAwesome angle-down */
    font-family: var(--font-awesome);
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #99a1aa;
    pointer-events: none;
}
select.form-control.pill {
    appearance: none;
    cursor: pointer;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: #525260;
    margin: 1rem 0 1.5rem;
    line-height: 1.4;
}

.btn-purple {
    background: #6865ff;
    color: #fff;
    border: none;
    transition: var(--transition);
}
.btn-purple:hover {
    background: #5956e9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(104, 101, 255, 0.3);
}
.btn-full {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
.pill-btn {
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

/* Contact Details Section */
.contact-details-section {
    position: relative;
    background: #27272e;
    padding: 8rem 0;
    overflow: hidden;
    color: #e5e5e5;
}

/* Decorative Backgrounds */
.cd-bg-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}
.cd-bg-circle.large {
    width: 600px;
    height: 600px;
    background: #2d2d35;
    top: 50%;
    left: -300px;
    transform: translateY(-50%);
}
.cd-bg-circle.medium {
    width: 200px;
    height: 200px;
    background: #6865ff;
    top: 30%;
    right: -100px;
}
.cd-bg-dot {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    z-index: 0;
}
.cd-bg-dot.white {
    background: #ffffff;
    top: 25%;
    left: 20%;
}
.cd-bg-dot.purple {
    background: #6865ff;
    top: 60%;
    left: 22%;
    width: 40px;
    height: 40px;
}
.cd-bg-wave {
    position: absolute;
    top: 20%;
    right: -20%;
    width: 80%;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='2' d='M0,160L48,138.7C96,117,192,75,288,80C384,85,480,139,576,149.3C672,160,768,128,864,112C960,96,1056,96,1152,112C1248,128,1344,160,1392,176L1440,192'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: cover;
    z-index: 0;
}

.cd-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .cd-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

/* Contact Info */
.cd-info {
    position: relative;
    z-index: 2;
}

.cd-logo {
    margin-bottom: 3rem;
    font-size: 3.5rem;
}

.cd-item {
    margin-bottom: 2.5rem;
}

.cd-label {
    font-size: 1.1rem;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cd-value {
    font-size: 0.95rem;
    color: #999ab8;
    line-height: 1.6;
    margin: 0;
}

/* Map Wrapper */
.cd-map-wrapper {
    position: relative;
    z-index: 2;
    padding: 10px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.cd-map {
    width: 100%;
    height: 400px;
    border-radius: 2px;
    display: block;
}

/* New White Footer */
.footer-new {
    background: #ffffff;
    color: #555566;
    font-family: var(--font-primary);
}

.footer-social-bar {
    padding: 1rem 0;
}

.social-icons-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 1rem;
}

.social-icons-row a {
    color: #999ab8;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons-row a:hover {
    color: #6865ff;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

@media (min-width: 992px) {
    .footer-main-grid {
        grid-template-columns: 350px 1px 1fr;
        gap: 2rem;
        align-items: center;
    }
}

.footer-divider {
    display: none;
    background: #eaeaea;
    height: 100%;
    width: 1px;
}

@media (min-width: 992px) {
    .footer-divider {
        display: block;
    }
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.logo-mark {
    position: relative;
    width: 60px;
    height: 60px;
}

.logo-box-outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border: 4px solid #ef6c00;
    border-radius: 4px;
}

.logo-box-inner {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45px;
    height: 35px;
    border-top: 4px solid #ef6c00;
    border-left: 4px solid #ef6c00;
    background: #ffffff;
}

.logo-text h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #27272e;
}

.brand-slogan {
    font-style: italic;
    color: #777;
    margin-left: 75px;
    font-size: 0.95rem;
}

.footer-menus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-menus-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.footer-menu-column h4 {
    color: #27272e;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-column li {
    margin-bottom: 0.5rem;
}

.footer-menu-column a {
    color: #777;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-menu-column a:hover {
    color: #ef6c00;
}

.footer-bottom-new {
    border-top: 1px solid #eaeaea;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: #999;
}

@media (min-width: 768px) {
    .footer-bottom-new {
        flex-direction: row;
    }
}

.footer-legal a {
    color: #999;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #6865ff;
}

/* ==========================================================================
   Animations & Utilities
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Mobile Navigation */
@media (max-width: 1200px) {
    .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: var(--clr-white);
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        transition: 0.4s ease-in-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        overflow-y: auto;
        gap: 1.5rem;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-cta {
        margin-top: 1rem;
        width: 80%;
    }
    
    .hero-actions {
        flex-direction: column;
    }
}

/* ==========================================================================
   Floating Action Buttons
   ========================================================================== */
.float-btn {
    position: fixed;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    color: var(--clr-white) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 999;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* WhatsApp Floating Button (Bottom Left) */
.float-whatsapp {
    left: 30px;
    bottom: 30px;
    background-color: #25D366;
    animation: pulseWhatsapp 2s infinite;
}

.float-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Back to Top Floating Button (Bottom Right) */
.float-top {
    right: 30px;
    bottom: 30px;
    background: var(--clr-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.float-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-top:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(89, 86, 233, 0.3);
}

/* Mobile responsive positioning */
@media (max-width: 768px) {
    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 1.35rem;
    }
    .float-whatsapp {
        left: 20px;
        bottom: 20px;
    }
    .float-top {
        right: 20px;
        bottom: 20px;
    }
}

/* ==========================================================================
   Toast Notification
   ========================================================================== */
.toast-notification {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #27272E;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    font-weight: 500;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    pointer-events: none;
}

.toast-notification.show {
    top: 30px;
    opacity: 1;
    pointer-events: auto;
}

.toast-notification.success {
    border: 2px solid #25D366;
}

.toast-notification.error {
    border: 2px solid #ff4d4d;
}

.toast-notification i {
    font-size: 1.25rem;
}

.toast-notification.success i {
    color: #25D366;
}

.toast-notification.error i {
    color: #ff4d4d;
}
