/* FILE: style.css (Updated) */
/* Ali Pet Transport Stylesheet
  Colors:
    --deep-teal: #007C7C;
    --warm-beige: #FFF8E1;
    --mustard: #EAB543;
    --white: #FFFFFF;
    --charcoal: #2E2E2E;
    --text-light: #555;
    --bg-light: #f9f9f9;
    --border-light: #eee;
*/

:root {
    --deep-teal: #007C7C;
    --warm-beige: #FFF8E1;
    --mustard: #EAB543;
    --white: #FFFFFF;
    --charcoal: #2E2E2E;
    --text-light: #555;
    --bg-light: #f9f9f9;
    --border-light: #eee;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.08);
    --radius: 14px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}
html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--charcoal);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

a {
    color: var(--deep-teal);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--mustard);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Global Header --- */
#siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 15px 0;
    background: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

#siteHeader.solid {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 10px 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand .logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--deep-teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 18px;
}

.brand h1 {
    font-size: 18px;
    margin: 0;
    color: var(--charcoal);
}

nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

nav a {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 15px;
    color: var(--charcoal);
    padding: 8px 14px;
    border-radius: 8px;
}

nav a:hover,
nav a.active {
    background-color: var(--warm-beige);
    color: var(--deep-teal);
}

.nav-cta {
    background-color: var(--mustard);
    color: var(--charcoal);
    border-radius: 8px;
    padding: 9px 16px;
    font-weight: 700;
}

.nav-cta:hover {
    background-color: #d4a33a;
    color: var(--charcoal);
}

#mobileMenuToggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 64px;
    /* Adjust based on solid header height */
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 998;
}

.mobile-nav a {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-light);
    font-family: 'Poppins';
    font-weight: 600;
}

/* --- Global Footer --- */
footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Poppins';
    color: var(--white);
    font-size: 18px;
}

.footer-col p {
    color: #aaa;
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: #ccc;
    font-size: 15px;
}

.footer-col ul a:hover {
    color: var(--mustard);
}
.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 20px;
}

.social-icon {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--deep-teal);
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 109, 119, 0.25);
}

.social-icon:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 109, 119, 0.35);
}

/* Unique brand color glow */
.social-icon.fb:hover {
  background: #1877F2;
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.5);
}

.social-icon.ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 10px 30px rgba(220, 39, 67, 0.5);
}

.social-icon.yt:hover {
  background: #FF0000;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
}

.social-icon svg,
.social-icon img {
  width: 28px;
  height: 28px;
}


.copyright {
    border-top: 1px solid #333;
    padding: 25px 0;
    font-size: 13px;
    color: #888;
}

.copyright .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.designer-credit {
    font-style: italic;
}

/* --- WA Float Button --- */
.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 900;
    transition: transform 0.2s ease;
}

.wa-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--deep-teal);
    color: var(--white);
}

.btn-primary:hover {
    background: #006363;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 124, 124, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: 0.5px solid var(--charcoal);
}

.btn-outline:hover {
    background: var(--warm-beige);
    color: var(--deep-teal);
    border-color: var(--warm-beige);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

/* --- Global Utility --- */
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}


/* === PAGE: HOME (NEW HERO) === */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><text x="100" y="100" font-size="100" fill="%23006d77" opacity="0.05">🐾</text></svg>'),
    linear-gradient(135deg, var(--warm-beige) 0%, #ffffff 100%);

    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-left {
    flex: 1.2;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    border-radius: 20px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(0, 109, 119, 0.06), rgba(226, 149, 71, 0.02));
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--mustard);
    color: var(--charcoal);
    border-radius: 20px;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.hero h2 {
    font-size: 44px;
    line-height: 1.2;
}

.hero p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-meta {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-kpis {
    display: flex;
    gap: 30px;
}

.kpi {
    text-align: center;
}

.kpi strong {
    font-family: 'Poppins';
    font-size: 36px;
    font-weight: 700;
    color: var(--deep-teal);
    display: block;
}

/* --- Hero Van Animation --- */
/* --- Hero Van Animation --- */
/* --- Hero Van Animation --- */
.vehicle-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 420px;
    height: 250px;
    border-radius: 65px;
    background: linear-gradient(180deg, #fff, #fbfffe);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}


.dog-head {
    position: absolute;
    top: 10px;
    /* Adjusted up */
    left: 175px;
    /* Adjusted horizontally */
    font-size: 55px;
    /* **Made smaller** */
    z-index: 10;
    transform-origin: bottom;
    animation: dog-wag 3s ease-in-out infinite;
}

.cat-head {
    position: absolute;
    top: 10px;
    /* Adjusted up */
    left: 70px;
    /* Adjusted horizontally */
    font-size: 55px;
    /* **Made smaller** */
    z-index: 10;
    transform-origin: bottom;
    animation: dog-wag 3s ease-in-out infinite;
}

.van-body {
    width: 250px;
    height: 120px;
    background: var(--deep-teal);
    border-radius: 20px 10px 10px 10px;
    position: relative;
    /* Removed margin: 0 auto; and animation from here */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.van-body::before {
    /* Cab */
    content: '';
    position: absolute;
    left: -20px;
    top: 30px;
    width: 80px;
    height: 90px;
    background: var(--mustard);
    border-radius: 10px 0 0 10px;
}

.van-window {
    position: absolute;
    left: -10px;
    top: 40px;
    width: 50px;
    height: 40px;
    background: var(--warm-beige);
    border-radius: 5px;
    border: 4px solid var(--mustard);
}

.van-wheel {
    position: absolute;
    bottom: -20px;
    left: 0px;
    width: 40px;
    height: 40px;
    background: var(--charcoal);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px var(--charcoal);
}

.van-wheel.r {
    left: auto;
    right: 30px;
}

/* Updated Van Bounce Animation for the entire group */
.moving-van-group {
    position: relative;
    /* Apply the new drive + bounce animation */
    animation: van-drive 3s ease-in-out infinite;
    /* **Slower animation for realistic driving** */
    /* **Scale down the entire group** */
    transform: scale(0.9);
}
.road {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 8px;
  background: #333;
  overflow: hidden;
  border-radius: 5px;
}

.road::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 200%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #fff 0 20px,
    transparent 20px 40px
  );
  transform: translateY(-50%);
  animation: moveRoad 2s linear infinite;
}

@keyframes moveRoad {
  from { left: 0; }
  to { left: -40px; }
}

/* New Dog Wag Animation */
@keyframes dog-wag {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(3deg);
    }

    75% {
        transform: rotate(-3deg);
    }
}

/* New Driving Animation */
@keyframes van-drive {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -8px);
    }

    /* Combines drive with peak bounce */
    100% {
        transform: translate(0, 0);
    }
}

.paw-trail {
    position: absolute;
    top: 20%;
    left: 0;
    font-size: 24px;
    opacity: 0.1;
    color: var(--deep-teal);
    animation: paw-move 10s linear infinite;
    white-space: nowrap;
    z-index: 10;
}

@keyframes paw-move {
    0% {
        transform: translateX(-100px);
    }

    100% {
        transform: translateX(100px);
    }
}

.overview-section {
    padding: 80px 0;
    background: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.overview-card {
    border: 1px solid var(--mustard);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.overview-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.overview-card h3 {
    font-size: 22px;
}

/* --- Home Services --- */
.home-services-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* --- PREMIUM FUNFACT SECTION STYLING --- */
/* ================================================= */

.funfact-section {
    position: relative;
    padding-bottom: 50px;
    /* Space for the stats block below the image */
}

/* 1. Top Emotional Image Section */
.funfact-top {
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--mustard) 100%);
    height: 350px;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.funfact-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Placeholder Image with Paw Print Overlay for Warmth */
    background-image: url('https://placehold.co/1200x350/006d77/ffffff?text=Happy+Pet+and+Owner+Image'),
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.08) 1px, transparent 0);
    background-size: cover, 150px 150px;
    background-position: center;
    opacity: 0.8;
}

/* Section Title on top of the image area */
.funfact-section .section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    white-space: nowrap;
}

/* 2. Bottom Stats Overlapping Section */
.funfact-bottom {
    position: relative;
    margin-top: -120px;
    /* Overlap the image section */
    z-index: 30;
}

.funfact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Pill-Shaped Card Style */
.funfact-item {
    /* Initial colors for the items */
    --bg-color: var(--pastel-blue);
    --icon-color: var(--icon-blue);
    border: 1px solid var(--mustard);
    background-color: var(--bg-color);
    color: var(--dark-text);
    padding: 40px 15px 30px;
    text-align: center;

    /* Rounded Corners: High radius for the pill-shape */
    border-radius: 50px 50px 25px 25px;

    /* Initial Shadow and transition for hover */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-out;
    cursor: pointer;
}

/* Card Specific Colors (Pastel Backgrounds) */
.funfact-item:nth-child(2) {
    --bg-color: var(--pastel-coral);
    --icon-color: var(--icon-coral);
    background-color: var(--pastel-coral);
}

.funfact-item:nth-child(3) {
    --bg-color: var(--pastel-yellow);
    --icon-color: var(--icon-yellow);
    background-color: var(--pastel-yellow);
}

.funfact-item:nth-child(4) {
    --bg-color: var(--pastel-aqua);
    --icon-color: var(--icon-aqua);
    background-color: var(--pastel-aqua);
}

/* Hover Effect: Rise and Shadow Glow */
.funfact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 15px var(--icon-color);
}

/* Circular Icon Container */
.funfact-item .icon-wrapper {
    font-size: 32px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    margin: 0 auto 15px;
    background-color: var(--mustard);
    border-radius: 50%;
    color: var(--white);
    /* Icons are white */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
    /* Ensure emoji looks good */
}

.funfact-item h2 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    color: var(--dark-text);
    margin: 0 0 5px;
    line-height: 1;
}

.funfact-item h3 {
    font-family: var(--font-label);
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-text);
    margin: 0;
    letter-spacing: 0.5px;
}

/* ============================= */
/* --- Responsive Design --- */
/* ============================= */

/* Tablet View (Max 1024px) */
@media (max-width: 1024px) {
    .funfact-top {
        height: 250px;
    }

    .funfact-bottom {
        margin-top: -80px;
    }

    .funfact-section .section-title {
        font-size: 36px;
    }

    .funfact-grid {
        /* 2 columns on tablets */
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .funfact-item {
        padding: 30px 15px 20px;
    }

    .funfact-item h2 {
        font-size: 48px;
    }

    .funfact-item h3 {
        font-size: 16px;
    }
}

/* Mobile View (Max 576px): 2x2 grid */
@media (max-width: 576px) {
    .funfact-top {
        height: 180px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    .funfact-bottom {
        margin-top: -60px;
    }

    .funfact-section .section-title {
        font-size: 24px;
        white-space: normal;
        width: 80%;
        text-align: center;
    }

    .funfact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .funfact-item {
        padding: 20px 10px 15px;
        border-radius: 30px 30px 15px 15px;
    }

    .funfact-item h2 {
        font-size: 36px;
    }

    .funfact-item h3 {
        font-size: 13px;
    }

    .funfact-item .icon-wrapper {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 24px;
        margin-bottom: 10px;
    }
}


.footer-teaser {
    padding: 80px 0;
    background: var(--deep-teal);
    color: var(--white);
    text-align: center;
}

.footer-teaser h3 {
    font-size: 32px;
    color: var(--white);
}

.footer-teaser p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

/* === SUBPAGE HERO === */
.hero-subpage {
    padding-top: 140px;
    padding-bottom: 60px;
    background-color: var(--deep-teal);
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero-subpage h2 {
    font-size: 40px;
    color: var(--deep-teal);
}

.hero-subpage p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.hero-about {
    background: linear-gradient(135deg, var(--warm-beige) 0%, #ffffff 100%);
}

.hero-services {
    background: linear-gradient(135deg, var(--warm-beige) 0%, #ffffff 100%);
}



.hero-gallery {
    background: linear-gradient(135deg, var(--warm-beige) 0%, #ffffff 100%);
}

.hero-testimonials {
    background-color: var(--warm-beige);
}

.hero-testimonials h2 {
    color: var(--charcoal);
}

.hero-testimonials p {
    color: var(--text-light);
}

.hero-contact {
     background: linear-gradient(135deg, var(--warm-beige) 0%, #ffffff 100%);
}


/* === PAGE: ABOUT === */
.content-section {
    padding: 80px 0;
background:
url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><text x="100" y="100" font-size="100" fill="%23006d77" opacity="0.05">🐾</text></svg>'),
linear-gradient(135deg, var(--warm-beige) 0%, #ffffff 100%);
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    font-size: 18px;
}

.mission-vision {
    padding: 80px 0;
    background: var(--bg-light);
}

.mission-vision .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
}

.mission-card .icon {
    font-size: 30px;
}

.timeline-section {
    padding: 80px 0;
}

.timeline-section h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Basic timeline line */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--border-light);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 10px 40px;
    margin-bottom: 30px;
}

/* Align left/right */
.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

/* Timeline dot */
.timeline-dot {
    position: absolute;
    top: 15px;
    width: 20px;
    height: 20px;
    background: var(--mustard);
    border: 4px solid var(--warm-beige);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

/* Timeline content */
.timeline-content {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.timeline-content strong {
    font-family: 'Poppins';
    font-size: 18px;
}

.timeline-item:nth-child(odd) {
    text-align: right;
}

.timeline-year {
    font-family: 'Poppins';
    font-size: 20px;
    font-weight: 700;
    color: var(--deep-teal);
    position: absolute;
    top: 12px;
}

.timeline-item:nth-child(odd) .timeline-year {
    right: 80px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: 80px;
}

.team-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.team-section h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--white);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.team-member .team-info {
    padding: 20px;
}

.team-member h4 {
    margin: 0;
    font-size: 20px;
}

.team-member span {
    color: var(--text-light);
    font-style: italic;
}


/* === PAGE: SERVICES === */
.services-grid-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--deep-teal);
    padding: 30px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-card .icon {
    /* Replaces font-size: 40px; from the emoji version */
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    /* Set a fixed size for the icon circle */
    height: 60px;
    background-color: var(--mustard);
    /* Light background for the circle */
    border-radius: 50%;
    /* Makes it a perfect circle */
}

/* New rule to style the image inside the icon container */
.service-card .icon img {
    width: 35px;
    /* Size of the image within the circle */
    height: 35px;
    object-fit: contain;
    /* Ensures the image scales properly */
}

.service-card h4 {
    font-size: 20px;
}


/* === PAGE: PRICING === */
.pricing-table-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card h3 {
    font-size: 22px;
}

.pricing-card .price {
    font-family: 'Poppins';
    font-size: 36px;
    font-weight: 700;
    color: var(--deep-teal);
    margin-bottom: 10px;
}

.pricing-card .plan-desc {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
    min-height: 40px;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-light);
}

.pricing-card .btn {
    width: 100%;
}

/* Popular Plan */
.pricing-card.popular {
    border: 2px solid var(--mustard);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mustard);
    color: var(--charcoal);
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 20px;
}


/* === PAGE: GALLERY === */
.gallery-grid-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.ig-placeholder {
    background: var(--bg-light);
    border: 1px dashed var(--border-light);
    padding: 80px 30px;
    border-radius: var(--radius);
    text-align: center;
}

.ig-placeholder p {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 20px;
    color: var(--charcoal);
}

    .services-section {
      padding: 100px 0;
      background: var(--white);
      text-align: center;
    }

    .services-section h2 {
      font-size: 38px;
      color: var(--deep-teal);
      margin-bottom: 60px;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 40px;
      width: 90%;
      margin: 0 auto;
    }

    .service-card {
      background: var(--bg-light);
      border-radius: 20px;
      padding: 40px 25px;
      transition: all 0.3s ease;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .service-card img {
      width: 70px;
      margin-bottom: 20px;
    }

    .service-card h3 {
      color: var(--deep-teal);
      margin-bottom: 10px;
    }




 /* HOW IT WORKS */
    .how-it-works {
      background: var(--white);
      padding: 100px 0;
      text-align: center;
    }

    .how-it-works h2 {
      color: var(--deep-teal);
      margin-bottom: 60px;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      width: 90%;
      margin: 0 auto;
    }

    .step {
      position: relative;
      padding: 30px;
      border-radius: 20px;
      background: var(--bg-light);
      transition: transform 0.3s ease;
    }

    .step:hover {
      transform: translateY(-10px);
    }

    .step-number {
      display: inline-block;
      background: var(--mustard);
      color: white;
      font-weight: bold;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      line-height: 45px;
      margin-bottom: 15px;
    }

/* SERVICE REGIONS */
.regions {
    position: relative;
    background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
  }

  .regions::before {
    content: "";
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.08;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
  }

  .regions h2 {
    color: #006d77;
    font-size: 42px;
    margin-bottom: 15px;
    position: relative;
  }

  .region-subtext {
    color: #555;
    font-size: 18px;
    margin-bottom: 60px;
    position: relative;
  }

  .region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .region-card {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 40px 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .region-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #83c5be, #006d77);
    opacity: 0.1;
    transition: top 0.4s ease;
  }

  .region-card:hover::before {
    top: 0;
  }

  .region-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 109, 119, 0.15);
  }

  .region-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }

  .region-card h3 {
    color: #006d77;
    margin-bottom: 8px;
    font-size: 20px;
  }

  .region-card p {
    color: #555;
    font-size: 15px;
  }
 /* FAQ */
    .faq {
      padding: 100px 0;
      background: var(--white);
    }

    .faq h2 {
      text-align: center;
      color: var(--deep-teal);
      margin-bottom: 50px;
    }

    .faq-item {
      width: 80%;
      margin: 15px auto;
      background: var(--bg-light);
      padding: 20px 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .faq-item h4 {
      margin-bottom: 10px;
      color: var(--deep-teal);
    }

/* --- NEW: TESTIMONIAL SLIDER STYLING --- */
/* ================================================= */
/* --- Unique Testimonial Story Layout --- */
/* ================================================= */

.testimonial-slider-section.unique-style {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fcfb 0%, #e5f4f3 100%);
  position: relative;
  overflow: hidden;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonial-header h2 {
  font-size: 42px;
  color: var(--deep-teal);
  font-weight: 700;
  margin-bottom: 15px;
}

.testimonial-header p {
  color: var(--text-light);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Testimonial Rows --- */
.testimonial-rows {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.testimonial-row {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}

.testimonial-row.reverse {
  flex-direction: row-reverse;
}

.testimonial-img {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.testimonial-row:hover .testimonial-img img {
  transform: scale(1.05);
}

/* --- Glass Content Card --- */
.testimonial-content {
  flex: 1;
  padding: 50px 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 40px rgba(0, 109, 119, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 109, 119, 0.25);
}

.testimonial-content p {
  font-size: 18px;
  color: var(--char);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-content h4 {
  color: var(--deep-teal);
  font-weight: 700;
  font-size: 17px;
}

.rating {
  font-size: 22px;
  color: var(--mustard);
  margin-bottom: 10px;
}

/* Floating Background Accent */
.testimonial-slider-section.unique-style::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 109, 119, 0.1), transparent 70%);
  border-radius: 50%;
  animation: floatBg 6s ease-in-out infinite alternate;
}

@keyframes floatBg {
  from { transform: translateY(0px); }
  to { transform: translateY(30px); }
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .testimonial-row,
  .testimonial-row.reverse {
    flex-direction: column;
  }
}
/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 18px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    min-width: 280px;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.info-card .icon img {
    width: 30px;
    height: 30px;
}

.info-card strong {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--deep-teal);
    display: block;
}

.info-card span {
    font-size: 14px;
    color: #555;
}

@media (max-width: 768px) {
    .contact-info-cards {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}
/* 🌟 Enhanced Contact Form Styling */
.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    max-width: 850px;
    margin: auto;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--deep-teal);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid Layout for Desktop */
.contact-form .form-group-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Full width for textarea */
.contact-form .form-group.full {
    grid-column: span 2;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--deep-teal);
    box-shadow: 0 0 6px rgba(0,153,153,0.2);
    background-color: #fff;
    outline: none;
}

/* Floating Label */
.form-group label {
    position: absolute;
    left: 16px;
    top: 14px;
    background: #fff;
    padding: 0 6px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #555;
    transition: all 0.2s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 12px;
    color: var(--deep-teal);
}

/* ✅ Mobile Responsive Fix */
@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
        border-radius: 12px;
    }

    .contact-form h3 {
        font-size: 20px;
    }

    .contact-form .form-group-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-form .form-group.full {
        grid-column: span 1;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 15px;
        padding: 12px;
    }

    .contact-form .btn {
        font-size: 15px;
        padding: 12px;
    }
}

.contact-form .btn {
    width: 100%;
    background: var(--deep-teal);
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    color: #fff;
    transition: 0.3s ease;
}

.contact-form .btn:hover {
    background-color: #0e5c5c;
    transform: translateY(-2px);
}

.map-section {
    padding-bottom: 0;
}

.map-embed {
    width: 100%;
    height: 450px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* === WHY CHOOSE US SECTION === */
.why-section {
    padding: 80px 0;
    background: var(--light-bg);
    text-align: center;
}

.why-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.why-item {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease-in-out;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.why-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-item p {
    font-size: 15px;
    color: var(--text-light);
}
/* === FAQ SECTION === */
.faq-section {
    padding: 60px 15px;
    max-width: 900px;
    margin: auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 600;
}

.faq-item {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 18px;
    margin: 0;
}

.faq-toggle {
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s;
}

.faq-answer {
    display: none;
    padding: 0 18px 18px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* === Active State === */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* === Responsive === */
@media (max-width: 600px) {
    .faq-section h2 {
        font-size: 24px;
    }
    .faq-question h4 {
        font-size: 16px;
    }
}


/* === CTA SECTION (Call to Action) === */
.cta-section {
    padding: 60px 20px;
    text-align: center;
    background: var(--deep-teal);
    color: #fff;
    border-radius: var(--radius);
    width: 90%;
    max-width: 1100px;
    margin: 50px auto;
}

.cta-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.cta-section p {
    margin-bottom: 20px;
    font-size: 16px;
}

.cta-section .btn {
    background: #fff;
    color: var(--deep-teal);
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.cta-section .btn:hover {
    background: var(--warm-beige);
}

/* === RESPONSIVE FIXES === */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        width: 100%;
        border-radius: 0;
    }
}

    /* --- NEW: VIDEO & COLLAGE SECTION STYLING --- */
    /* ================================================= */

    .video-collage-section {
        padding: 80px 0;
        background: linear-gradient(135deg, var(--collage-bg-start) 0%, var(--collage-bg-end) 100%);
        position: relative;
        overflow: hidden;
    }

    /* Subtle Paw Print Watermark/Parallax */
    .video-collage-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: 150px 150px;
        background-attachment: fixed; /* Simple Parallax effect */
        pointer-events: none;
        z-index: 1;
    }
    
    .video-collage-header {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
        z-index: 2;
    }

    .video-collage-header h2 {
        font-size: 42px;
        color: var(--deep-teal);
        margin-bottom: 10px;
    }

    .video-collage-header p {
        font-size: 18px;
        color: var(--char);
    }
    
    .video-collage-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two columns on desktop */
        gap: 40px;
        align-items: center;
        position: relative;
        z-index: 2;
    }
    
    /* LEFT SIDE: VIDEO EMBED */
    .video-column {
        padding: 20px;
    }

    .video-container {
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio (9/16 * 100%) */
        position: relative;
        height: 0;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        background-color: var(--char); /* Fallback color */
        transform: translateZ(0); /* Fix for smoothing transitions/3D */
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 20px;
    }

    /* RIGHT SIDE: IMAGE COLLAGE */
    .collage-column {
        padding: 20px;
    }

    .image-collage {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 15px;
        height: 600px; /* Fixed height for visual consistency with video */
        max-width: 100%;
    }

    .collage-item {
        overflow: hidden;
        border-radius: 16px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        cursor: pointer;
    }

    .collage-item:first-child { /* Main large image (top left, spanning two rows) */
        grid-row: 1 / 3;
        grid-column: 1 / 2;
    }

    .collage-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth cubic-bezier for premium zoom */
    }

    .collage-item:hover img {
        transform: scale(1.08); /* Gentle zoom effect */
    }


    /* ================================================= */
    /* --- Responsive Adjustments --- */
    /* ================================================= */
    
    /* Tablet View */
    @media (max-width: 1024px) {
        /* Stack columns vertically */
        .video-collage-grid {
            grid-template-columns: 1fr; 
            gap: 30px;
        }
        
        .video-column, .collage-column {
            padding: 0; /* Remove padding on the columns for small screens */
        }

        .image-collage {
            height: 450px; /* Reduce collage height */
            margin-top: 20px;
        }
    }

    /* Mobile View */
    @media (max-width: 576px) {
        .video-collage-section { padding: 40px 0; }
        .video-collage-header h2 { font-size: 28px; }

        .image-collage {
            height: 350px; /* Further reduce collage height */
            gap: 10px;
        }

        /* Funfacts Mobile (retained adjustments) */
        .funfact-top { height: 180px; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; }
        .funfact-bottom { margin-top: -60px; }
        .funfact-section .section-title { font-size: 24px; white-space: normal; width: 80%; text-align: center; }
        .funfact-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
        .funfact-item { padding: 20px 10px 15px; border-radius: 30px 30px 15px 15px; }
        .funfact-item h2 { font-size: 36px; }
        .funfact-item h3 { font-size: 13px; }
    }

/* === RESPONSIVE === */
@media (max-width: 992px) {
    nav {
        display: none;
    }

    #mobileMenuToggle {
        display: block;
    }

    .mobile-nav.open {
        display: flex;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .socials {
        justify-content: center;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        order: 2;
    }

    .hero-right {
        order: 1;
        min-height: 250px;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-kpis {
        justify-content: center;
    }

    .overview-grid,
    .services-grid,
    .pricing-grid,
    .gallery-grid,
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-services-grid,
    .funfact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .split-content,
    .mission-vision .container {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .timeline::before {
        left: 10px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-dot {
        left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 0;
    }

    .timeline-year {
        position: static;
        margin-bottom: 5px;
    }

    .timeline-item:nth-child(odd) {
        text-align: left;
    }

    .copyright .container {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 32px;
    }
    .hero{
        padding-top: 80px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .overview-grid,
    .services-grid,
    .pricing-grid,
    .gallery-grid,
    .team-grid,
    .home-services-grid {
        grid-template-columns: 1fr;
    }

    .funfact-grid {
        grid-template-columns: 1fr 1fr;
        /* Keep 2 columns for funfacts on mobile */
    }

    .pricing-card.popular {
        transform: scale(1);
        /* No zoom on mobile */
    }
}