:root {
    --primary-green: #2E4A3B;
    --secondary-green: #3F5E4D;
    --accent-gold: #D4AF37;
    /* Metallic Gold */
    --accent-gold-light: #F3E5AB;
    --light-cream: #FAF9F6;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #555555;
    --border-color: #E6E6E6;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-subheading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--light-cream);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
}

ul {
    list-style: none;
}

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

* {
    max-width: 100%;
}

html,
body {
    overflow-x: hidden;
}

/* Typography Enhancements */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

h1 {
    font-size: clamp(2rem, 5vw + 1rem, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
    position: relative;
    display: inline-block;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw + 0.5rem, 2rem);
    letter-spacing: 0.02em;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
    font-weight: 300;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(46, 74, 59, 0.2);
    box-sizing: border-box;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #F6D365 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    color: var(--primary-green);
}

.btn:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    box-shadow: none;
}

.btn-secondary:hover {
    /* Fixed: remove pseudo-element conflict */
    background: var(--white);
    color: var(--primary-green);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-secondary::before {
    display: none;
}

/* Ensure gold gradient doesn't overlay */


/* Header & Nav */
/* Header & Nav */
header {
    background-color: var(--white);
    padding: 1.25rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    z-index: 1001;
    line-height: 1;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    border-left: 1.5px solid rgba(46, 74, 59, 0.15);
    padding-left: 0.85rem;
    text-align: left;
}

.logo-text span:first-child {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
    line-height: 1.1;
    letter-spacing: 0.2px;
}

.logo-text span:last-child {
    font-family: var(--font-body);
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-top: 2px;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .logo img {
        height: 55px;
    }
    
    .logo-text {
        gap: 0;
        padding-left: 0.75rem;
    }

    .logo-text span:first-child {
        font-size: 0.95rem;
    }

    .logo-text span:last-child {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 2rem;
}

nav ul {
    display: flex;
    gap: 3.5rem;
    /* More breathing room */
    align-items: center;
    margin: 0;
    padding: 0;
}

nav a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 5px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

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

nav a:hover,
nav a.active {
    color: var(--primary-green);
    /* Active link color */
}

header .btn {
    padding: 12px 30px;
    font-size: 0.8rem;
    background: var(--primary-green);
    box-shadow: none;
}

header .btn:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 74, 59, 0.2);
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-green);
    z-index: 1001;
    transition: transform 0.3s ease;
}

.mobile-toggle.active {
    transform: rotate(90deg);
}

/* Hide mobile-only items on desktop */
nav .mobile-only {
    display: none;
}

/* Body scroll lock when nav is open */
body.nav-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 500px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    padding: 0 2rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.5s;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(1.75rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    margin-bottom: 2rem;
    font-family: var(--font-subheading);
    line-height: 1.5;
}

/* Hero Buttons — unified system */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: stretch;
}

.hero-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 16px 36px;
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    border: 2px solid transparent;
    box-sizing: border-box;
    text-align: center;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
}

.hero-btn-primary::before {
    display: none;
}

.hero-btn-primary:hover {
    background: var(--white);
    color: var(--primary-green);
    border-color: var(--white);
}

.hero-btn-outline {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
    box-shadow: none;
}

.hero-btn-outline::before {
    display: none;
}

.hero-btn-outline:hover {
    background: var(--white);
    color: var(--primary-green);
    border-color: var(--white);
}

/* Responsive hero buttons */
@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.85rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        min-width: unset;
        padding: 15px 28px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons .btn {
        max-width: 260px;
        padding: 14px 24px;
        font-size: 0.82rem;
        letter-spacing: 1.2px;
    }
}

@media (max-width: 375px) {
    .hero-buttons .btn {
        max-width: 240px;
        padding: 13px 20px;
        font-size: 0.78rem;
        letter-spacing: 1.1px;
    }
}

/* Sections */
section {
    padding: 8rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 1.5rem auto 0;
}

.small-banner {
    padding: 8rem 5% 5rem;
    background-image: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
}

/* Cards & Grids */
.services-grid,
.category-grid,
.grid-2-col,
.service-list-grid {
    display: grid;
    gap: 3rem;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.category-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-2-col {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.service-card {
    background: var(--white);
    padding: 0;
    /* Remove padding to let image fill */
    text-align: center;
    border: none;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 400px;
    /* Fixed height for consistency */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
    z-index: 1;
}

.service-card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.category-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
}

.category-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.category-item h4 {
    color: var(--primary-green);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.category-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.service-card:hover .service-card-bg {
    transform: scale(1.1);
}

.service-card:hover .service-card-content {
    transform: translateY(0);
}

.service-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    color: white;
    /* Override default green */
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.service-card .subtitle {
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.service-card p:not(.subtitle) {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    height: 0;
    /* Collapse height initially */
    overflow: hidden;
}

.service-card:hover p:not(.subtitle) {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    /* Expand on hover - simplistic approach */
    margin-bottom: 1rem;
    /* better approach for height transition is max-height but keeping simple */
    display: block;
    height: auto;
    max-height: 100px;
    /* Limit expansion */
}

/* Areas of Care Section */
.areas-of-care {
    background: linear-gradient(135deg, #f8f5f0 0%, #ffffff 100%);
    padding: 8rem 5%;
    overflow: hidden;
}

.care-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 2rem;
    margin-bottom: 5rem;
    position: relative;
}

.care-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    animation: fadeInCard 0.8s ease forwards;
}

.care-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.care-card:hover img {
    transform: scale(1.08);
}

/* Card positioning and rotation */
.card-1 {
    grid-column: 1;
    grid-row: 1;
    transform: rotate(-3deg);
    animation-delay: 0.2s;
}

.card-2 {
    grid-column: 3;
    grid-row: 1;
    transform: rotate(3deg);
    animation-delay: 0.4s;
}

.card-3 {
    grid-column: 1;
    grid-row: 2;
    transform: rotate(2deg);
    animation-delay: 0.6s;
}

.card-4 {
    grid-column: 3;
    grid-row: 2;
    transform: rotate(-2deg);
    animation-delay: 0.8s;
}

.care-card:hover {
    transform: rotate(0deg) translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Center Info Card */
.care-info-card {
    grid-column: 2;
    grid-row: 1 / 3;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 50px rgba(46, 74, 59, 0.3);
    position: relative;
    z-index: 5;
    opacity: 0;
    animation: fadeInCard 0.8s ease forwards 0.3s;
}





.care-info-card h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.care-info-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 300px;
}

/* Care Details Section */
.care-details {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.care-details h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.care-details h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
}

.care-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.care-detail-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.care-detail-item:nth-child(1) {
    animation-delay: 0.2s;
}

.care-detail-item:nth-child(2) {
    animation-delay: 0.4s;
}

.care-detail-item:nth-child(3) {
    animation-delay: 0.6s;
}

.care-detail-item:nth-child(4) {
    animation-delay: 0.8s;
}

.care-detail-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.care-detail-item h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.care-detail-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Animations */
@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: translateY(40px) rotate(0deg);
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.about-snapshot {
    display: flex;
    align-items: center;
    gap: 6rem;
    background-color: var(--light-cream);
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    flex: 1;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-gold);
    z-index: 0;
}

.about-image img {
    position: relative;
    z-index: 1;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: #1a2e25;
    /* Darker than primary green */
    color: rgba(255, 255, 255, 0.8);
    padding: 3.5rem 5% 2rem;
}

.footer-logo {
    display: inline-block;
    height: 80px;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.footer-logo:hover {
    transform: translateY(-3px);
}

.footer-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-column h4 {
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1.25rem;
    margin-top: 2rem;
    justify-content: flex-start;
}

.social-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--primary-green);
    transform: translateY(-5px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    display: block;
}

.footer-bottom {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* About Us Page Styles */

/* About Hero Section */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(46, 74, 59, 0.7), rgba(46, 74, 59, 0.5));
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    color: var(--white);
}

.about-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--white);
}

.about-hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

/* About Intro Section */
.about-intro {
    padding: 8rem 5%;
    background: var(--light-cream);
}

.about-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-green);
}

.about-intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* About Philosophy Section */
.about-philosophy {
    padding: 8rem 5%;
    background: var(--white);
}

.about-philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-green);
}

.about-philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.philosophy-list {
    list-style: none;
    padding: 0;
}

.philosophy-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.05rem;
}

.philosophy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-philosophy-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* About Features Section */
.about-features {
    padding: 8rem 5%;
    background: var(--light-cream);
}

.about-features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 4rem;
}

.about-feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.about-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-feature-card:nth-child(2) {
    direction: rtl;
}

.about-feature-card:nth-child(2) .feature-card-content {
    direction: ltr;
}

.feature-card-image {
    height: 100%;
    min-height: 350px;
}

.feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card-content {
    padding: 3rem;
}

.feature-card-content h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.feature-card-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* About Why Choose Section */
.about-why-choose {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    text-align: center;
}

.about-why-choose h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.why-choose-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.why-choose-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.why-choose-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--accent-gold);
}

.why-choose-icon svg {
    width: 100%;
    height: 100%;
}

.why-choose-item h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.why-choose-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About CTA Section */
.about-cta {
    padding: 8rem 5%;
    background: var(--white);
    text-align: center;
}

.about-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.about-cta-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.about-cta-content .btn {
    font-size: 1.1rem;
    padding: 16px 40px;
}

/* Services Page Styles */

/* Services Hero Section */
.services-hero {
    position: relative;
    height: 55vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(46, 74, 59, 0.75), rgba(46, 74, 59, 0.6));
}

.services-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    color: var(--white);
}

.services-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    margin-bottom: 1.5rem;
    color: var(--white);
}

.services-hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.95);
}

/* Services Intro Section */
.services-intro {
    padding: 6rem 5% 0;
    background: var(--white);
    text-align: center;
}

.services-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.services-intro-content h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.services-intro-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Services Category Section */
.services-category {
    padding: 6rem 5%;
    background: var(--light-cream);
}

.services-category:nth-child(even) {
    background: var(--white);
}

.category-header {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.category-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.category-title-wrapper h2 {
    font-size: 2.3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.category-title-wrapper p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    position: relative;
    min-height: 300px;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Individual service card backgrounds — unique image per card */
.service-card[data-service="back-pain-steam"] {
    background-image: linear-gradient(to bottom, rgba(46, 74, 59, 0.25), rgba(46, 74, 59, 0.85)), url('images/new/back_pain_steam_men.png');
}

.service-card[data-service="deep-tissue"] {
    background-image: linear-gradient(to bottom, rgba(46, 74, 59, 0.25), rgba(46, 74, 59, 0.85)), url('images/new/deep_tissue_massage_men.png');
}

.service-card[data-service="kati-vasti"] {
    background-image: linear-gradient(to bottom, rgba(46, 74, 59, 0.25), rgba(46, 74, 59, 0.85)), url('images/new/kati_vasti_men.png');
}

.service-card[data-service="kizhi-massage"] {
    background-image: linear-gradient(to bottom, rgba(46, 74, 59, 0.25), rgba(46, 74, 59, 0.85)), url('images/new/kizhi_massage_men.png');
}

.service-card[data-service="manjal-kizhi"] {
    background-image: linear-gradient(to bottom, rgba(46, 74, 59, 0.25), rgba(46, 74, 59, 0.85)), url('images/new/manjal_kizhi_men.png');
}

.service-card[data-service="shirodhara-abhyangam"] {
    background-image: linear-gradient(to bottom, rgba(46, 74, 59, 0.25), rgba(46, 74, 59, 0.85)), url('images/new/shirodhara_abhyangam_men.png');
}

.service-card[data-service="pizhichil"] {
    background-image: linear-gradient(to bottom, rgba(46, 74, 59, 0.25), rgba(46, 74, 59, 0.85)), url('images/new/pizhichil_oil_bath_men.png');
}

.service-card[data-service="marma-massage"] {
    background-image: linear-gradient(to bottom, rgba(46, 74, 59, 0.25), rgba(46, 74, 59, 0.85)), url('images/new/marma_fullbody_men.png');
}

.service-card[data-service="navara-kizhi"] {
    background-image: linear-gradient(to bottom, rgba(46, 74, 59, 0.25), rgba(46, 74, 59, 0.85)), url('images/new/navara_kizhi_men.png');
}

.service-card[data-service="udwartanam"] {
    background-image: linear-gradient(to bottom, rgba(46, 74, 59, 0.25), rgba(46, 74, 59, 0.85)), url('images/new/udwartanam_steam_men.png');
}

.service-card[data-service="steam-therapy"] {
    background-image: linear-gradient(to bottom, rgba(46, 74, 59, 0.25), rgba(46, 74, 59, 0.85)), url('images/new/ayurvedic_steam_therapy_men.png');
}

.service-card[data-service="upper-body"] {
    background-image: linear-gradient(to bottom, rgba(46, 74, 59, 0.25), rgba(46, 74, 59, 0.85)), url('images/new/upper_body_massage_men.png');
}

.service-card[data-service="lower-body"] {
    background-image: linear-gradient(to bottom, rgba(46, 74, 59, 0.25), rgba(46, 74, 59, 0.85)), url('images/new/lower_body_massage_men.png');
}

.service-card[data-service="henna-hair"] {
    background-image: linear-gradient(to bottom, rgba(46, 74, 59, 0.25), rgba(46, 74, 59, 0.85)), url('images/new/henna_hair_dye_men.png');
}

/* Relaxation & Wellness individual card images */
.service-card[data-service="abhyangam"] {
    background-image: linear-gradient(to bottom, rgba(46, 74, 59, 0.25), rgba(46, 74, 59, 0.85)), url('images/new/abhyangam_fullbody_men.png');
}

.service-card[data-service="head-neck-shoulder"] {
    background-image: linear-gradient(to bottom, rgba(46, 74, 59, 0.25), rgba(46, 74, 59, 0.85)), url('images/new/head_neck_shoulder_men.png');
}

.service-card[data-service="leg-foot"] {
    background-image: linear-gradient(to bottom, rgba(46, 74, 59, 0.25), rgba(46, 74, 59, 0.85)), url('images/new/leg_foot_massage_men.png');
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 0.8;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.service-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-duration {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.service-duration svg {
    width: 18px;
    height: 18px;
}

.service-card p {
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Services Features Section */
.services-features {
    padding: 7rem 5%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    text-align: center;
}

.services-features h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.features-benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--accent-gold);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-item h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

/* Services CTA Section */
.services-cta {
    padding: 7rem 5%;
    background: var(--white);
    text-align: center;
}

.services-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.services-cta-content h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.services-cta-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.services-cta-content .btn {
    font-size: 1.1rem;
    padding: 16px 40px;
}

/* Responsive */



/* Large Desktop - 1200px and above (default styles) */

/* Medium Desktop / Tablet Landscape - 1200px */
@media (max-width: 1200px) {
    section {
        padding: 6rem 5%;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
}

/* Tablet Landscape - 1024px */
@media (max-width: 1024px) {
    header {
        padding: 1rem 4%;
        height: 100px;
    }

    .logo img {
        height: 95px;
    }

    nav ul {
        gap: 2.5rem;
    }

    section {
        padding: 5rem 4%;
    }

    .about-snapshot {
        gap: 4rem;
    }

    .features-grid {
        gap: 2rem;
        max-width: 900px;
    }

    .feature-box {
        padding: 2.5rem 1.5rem;
    }

    .care-container {
        grid-template-rows: repeat(2, 250px);
        gap: 1.5rem;
    }

    .care-info-card {
        padding: 2.5rem 1.5rem;
    }

    .care-info-card h2 {
        font-size: 2rem;
    }

    .care-details-grid {
        gap: 2rem;
    }
}

/* Tablet Portrait - 992px */
@media (max-width: 992px) {
    .about-snapshot {
        flex-direction: column;
        gap: 3rem;
    }

    .about-image {
        order: -1;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-image::before {
        display: none;
    }

    .about-content {
        text-align: center;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
    }
}

/* Tablet - 900px */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-box:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Reset */
    .feature-box:nth-child(2n) {
        border-right: none;
    }

    .feature-box:nth-last-child(-n+3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Reset */
    .feature-box:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .why-choose-us h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
}

/* Mobile Landscape / Large Phone - 768px */
@media (max-width: 768px) {
    header {
        padding: 0.75rem 5%;
        height: 80px;
        flex-wrap: wrap;
    }

    .logo img {
        height: 70px;
    }

    .header-right {
        width: 100%;
        margin-top: 0.5rem;
        display: flex;
        justify-content: center;
    }

    .header-right .btn {
        display: none;
    }

    section {
        padding: 4rem 5%;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        margin-left: auto;
        width: 44px;
        height: 44px;
    }

    nav {
        margin: 0;
        flex: none;
        order: 3;
        width: 100%;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background-color: var(--white);
        padding: 100px 8% 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        gap: 0;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    nav ul.active {
        transform: translateX(0);
    }

    /* Show mobile-only items on mobile */
    nav .mobile-only {
        display: block;
    }

    nav li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    nav ul.active li {
        opacity: 1;
        transform: translateX(0);
    }

    nav ul.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    nav ul.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    nav ul.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    nav ul.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    nav ul.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    nav li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        padding: 1.1rem 0;
        width: 100%;
        font-size: 1rem;
        letter-spacing: 1px;
    }

    nav a::after {
        display: none;
    }

    nav .btn {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 0.85rem;
    }

    /* Mobile nav overlay backdrop */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }

    .hero {
        height: auto;
        min-height: 550px;
        padding: 140px 0 60px;
        background-attachment: scroll;
    }

    .hero-content {
        padding: 0 6%;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(1.65rem, 6.5vw, 2.8rem);
        margin-bottom: 1rem;
        line-height: 1.25;
    }

    .hero p {
        font-size: clamp(1.15rem, 3.5vw, 1.4rem);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

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

    .service-card {
        height: 350px;
    }

    /* Make service card content visible on mobile (no hover needed) */
    .service-card .service-card-content {
        transform: translateY(0);
    }

    .service-card p:not(.subtitle) {
        opacity: 1;
        transform: translateY(0);
        height: auto;
        max-height: 100px;
        display: block;
        margin-bottom: 0.5rem;
    }

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

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    }

    .why-choose-us {
        padding: 4rem 5% 3rem;
        height: auto !important;
        min-height: auto !important;
    }

    .features-grid {
        margin-bottom: 3rem;
    }

    .footer-content {
        grid-template-columns: 1.2fr 0.8fr 1fr;
        gap: 2rem;
    }

    .care-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .care-card {
        grid-column: auto !important;
        grid-row: auto !important;
        transform: rotate(0deg) !important;
        height: 200px;
    }

    .care-info-card {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        transform: rotate(0deg) !important;
        padding: 2.5rem 2rem;
        order: -1;
    }

    .care-info-card h2 {
        font-size: 1.8rem;
    }

    .care-details h3 {
        font-size: 1.6rem;
    }

    .care-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    /* About Page Responsive */
    .about-hero {
        height: 50vh;
        min-height: 350px;
        background-attachment: scroll;
    }

    .about-intro-container,
    .about-philosophy-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-intro {
        padding: 5rem 5%;
    }

    .about-intro-content h2,
    .about-philosophy-content h2 {
        font-size: 2rem;
    }

    .about-philosophy {
        padding: 5rem 5%;
    }

    .about-features {
        padding: 5rem 5%;
    }

    .about-feature-card {
        grid-template-columns: 1fr;
    }

    .about-feature-card:nth-child(2) {
        direction: ltr;
    }

    .feature-card-image {
        min-height: 220px;
    }

    .feature-card-content {
        padding: 2rem;
    }

    .feature-card-content h3 {
        font-size: 1.6rem;
    }

    .about-why-choose {
        padding: 5rem 5%;
    }

    .about-why-choose h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }

    .why-choose-item {
        padding: 2rem 1.5rem;
    }

    .about-cta {
        padding: 5rem 5%;
    }

    .about-cta-content h2 {
        font-size: 2.2rem;
    }

    /* Services Page Responsive */
    .services-hero {
        height: 50vh;
        min-height: 350px;
        background-attachment: scroll;
    }

    .services-intro {
        padding: 4rem 5% 0;
    }

    .services-intro-content h2 {
        font-size: 2rem;
    }

    .services-category {
        padding: 4rem 5%;
    }

    .category-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .category-image {
        height: 200px;
        width: 100%;
    }

    .category-title-wrapper h2 {
        font-size: 1.8rem;
    }

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

    .service-card {
        padding: 2rem;
        min-height: 260px;
    }

    .services-features {
        padding: 5rem 5%;
    }

    .services-features h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .features-benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .benefit-item {
        padding: 2rem 1.5rem;
    }

    .services-cta {
        padding: 5rem 5%;
    }

    .services-cta-content h2 {
        font-size: 2.2rem;
    }

    /* About content alignment on tablet */
    .about-content h2 {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
    }
}

/* Large Phone - 600px */
@media (max-width: 600px) {

    .services-grid,
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        border: none !important;
        gap: 1rem !important;
        height: auto !important;
        max-height: none !important;
    }

    .feature-box {
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        padding: 2rem 1.5rem !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .feature-box:nth-child(2n) {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero {
        height: auto;
        min-height: 540px;
        padding: 110px 0 55px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        padding: 0 5.5%;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.9rem;
        margin-bottom: 1rem;
        line-height: 1.3;
        letter-spacing: -0.01em;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 1.85rem;
        line-height: 1.6;
    }

    section {
        padding: 3.5rem 5%;
    }

    .service-card {
        height: 320px;
    }

    .about-snapshot {
        gap: 2rem;
    }

    .about-content {
        padding: 0 5%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .footer-logo {
        align-self: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
        padding: 0;
        background: none;
        box-shadow: none;
    }

    .footer-logo img {
        height: 60px;
    }

    .footer-column a {
        display: inline-block;
        margin: 0 0.6rem 0.5rem;
        font-size: 0.9rem;
    }

    .social-links {
        margin-top: 1.25rem !important;
        justify-content: center;
    }

    /* Care section - single column on small phones */
    .care-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .care-card {
        height: 220px;
    }

    .care-details-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Why choose grid single column */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Contact page form name fields stack */
    .contact-form-wrapper .grid-2-col {
        grid-template-columns: 1fr !important;
    }
}

/* Small Phone - 480px */
@media (max-width: 480px) {
    header {
        height: 75px;
    }

    .header-right .btn {
        display: none;
    }

    .logo img {
        height: 65px;
    }

    .mobile-toggle {
        font-size: 1.6rem;
    }

    nav ul {
        padding: 90px 6% 2rem;
    }

    .hero {
        height: auto;
        min-height: 520px;
        padding: 100px 0 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        padding: 0 5.5%;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 0.9rem;
        line-height: 1.3;
        letter-spacing: -0.01em;
    }

    .hero p {
        font-size: 1.15rem;
        margin-bottom: 1.6rem;
        line-height: 1.6;
    }

    section {
        padding: 3rem 5%;
    }

    h1 {
        font-size: clamp(1.6rem, 5vw + 0.5rem, 3rem);
    }

    h2 {
        font-size: clamp(1.4rem, 4vw + 0.3rem, 2.2rem);
    }

    p {
        font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
        line-height: 1.7;
    }

    .btn {
        padding: 13px 28px;
        font-size: 0.82rem;
        letter-spacing: 1px;
    }

    .service-card {
        height: 300px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card-content {
        padding: 1.5rem;
    }

    .category-item {
        padding: 1.75rem 1.25rem;
    }

    .about-snapshot {
        padding: 3rem 5%;
    }

    .about-content h2 {
        font-size: clamp(1.4rem, 4vw, 2.2rem);
    }

    .why-choose-us h2 {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
        margin-bottom: 2.5rem;
    }

    .why-choose-us .section-tagline {
        font-size: 0.7rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .feature-box {
        padding: 1.75rem 1.25rem;
    }

    .feature-box .icon svg {
        width: 35px;
        height: 35px;
    }

    .feature-box h3 {
        font-size: 1.1rem;
    }

    .feature-box p {
        font-size: 0.85rem;
    }

    /* Care section */
    .care-info-card {
        padding: 2rem 1.5rem;
    }

    .care-info-card h2 {
        font-size: 1.5rem;
    }

    .care-info-card p {
        font-size: 0.95rem;
    }

    .care-card {
        height: 180px;
    }

    .care-detail-item {
        padding: 1.5rem;
    }

    .care-detail-item h4 {
        font-size: 1.2rem;
    }

    /* About page */
    .about-hero {
        height: 45vh;
        min-height: 300px;
    }

    .about-intro,
    .about-philosophy,
    .about-features {
        padding: 3.5rem 5%;
    }

    .about-intro-content h2,
    .about-philosophy-content h2 {
        font-size: 1.7rem;
    }

    .feature-card-content {
        padding: 1.5rem;
    }

    .feature-card-content h3 {
        font-size: 1.4rem;
    }

    .about-why-choose {
        padding: 3.5rem 5%;
    }

    .about-why-choose h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .why-choose-item {
        padding: 1.75rem 1.25rem;
    }

    .about-cta {
        padding: 3.5rem 5%;
    }

    .about-cta-content h2 {
        font-size: 1.8rem;
    }

    .about-cta-content p {
        font-size: 1rem;
    }

    /* Services page */
    .services-hero {
        height: 45vh;
        min-height: 300px;
    }

    .services-intro-content h2 {
        font-size: 1.8rem;
    }

    .category-title-wrapper h2 {
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .services-features h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .services-cta-content h2 {
        font-size: 1.8rem;
    }

    .services-cta-content p {
        font-size: 1rem;
    }

    /* Footer */
    footer {
        padding: 2rem 5% 1.25rem;
    }

    .footer-logo {
        height: 50px;
        margin-bottom: 0.75rem;
    }

    .footer-logo img {
        height: 45px;
    }

    .footer-column h4 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    .footer-column p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }

    .social-links {
        margin-top: 1rem !important;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

/* Extra Small Phone - 375px (iPhone SE, etc) */
@media (max-width: 375px) {
    .logo img {
        height: 55px;
    }

    header {
        height: 70px;
        padding: 0.6rem 5%;
    }

    nav ul {
        padding: 80px 5% 2rem;
    }

    .hero {
        height: auto;
        min-height: 480px;
        padding: 85px 0 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        padding: 0 7%;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.4rem;
        margin-bottom: 0.7rem;
        line-height: 1.25;
        letter-spacing: -0.02em;
    }

    .hero p {
        font-size: 0.88rem;
        margin-bottom: 1.4rem;
        line-height: 1.5;
    }

    section {
        padding: 2.75rem 5%;
    }

    .service-card {
        height: 280px;
    }

    .btn {
        padding: 13px 26px;
        font-size: 0.8rem;
    }

    .service-card h3 {
        font-size: 1.15rem;
    }

    .care-card {
        height: 160px;
    }

    .care-info-card h2 {
        font-size: 1.3rem;
    }

    .care-detail-item {
        padding: 1.25rem;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        max-width: 320px;
        margin: 0 auto 3rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .feature-box {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    }

    .feature-box:last-child {
        border-bottom: none !important;
    }

    /* Small banner (contact page) */
    .small-banner {
        padding: 4.5rem 5% 3rem;
    }

    .small-banner h1 {
        font-size: 1.5rem;
    }
}

/* Ensure minimum touch targets on all touch devices */
@media (hover: none) and (pointer: coarse) {

    .btn,
    nav a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-toggle {
        min-height: 44px;
        min-width: 44px;
    }

    /* Make cards touch-friendly: show content without hover */
    .service-card .service-card-bg {
        transform: scale(1);
    }

    .service-card .service-card-content {
        transform: translateY(0);
    }

    .service-card p:not(.subtitle) {
        opacity: 1;
        transform: translateY(0);
        height: auto;
        max-height: 120px;
        display: block;
        margin-bottom: 0.5rem;
    }

    /* Disable hover transforms on touch */
    .service-card:hover {
        transform: none;
    }

    .category-item:hover {
        transform: none;
    }

    .care-card:hover {
        transform: rotate(0deg) !important;
    }

    .care-detail-item:hover {
        transform: none;
    }

    .about-feature-card:hover {
        transform: none;
    }

    /* Better tap feedback */
    .btn:active {
        transform: scale(0.97);
        opacity: 0.9;
    }

    .service-card:active {
        opacity: 0.95;
    }

    .category-item:active,
    .care-detail-item:active,
    .feature-box:active {
        opacity: 0.9;
    }

    /* Footer links touch targets */
    .footer-column a {
        display: inline-block;
        padding: 6px 0;
        min-height: 44px;
        line-height: 32px;
    }
}

/* iOS-specific: Disable parallax which is buggy on iOS Safari */
@supports (-webkit-touch-callout: none) {

    .hero,
    .about-hero,
    .services-hero,
    .why-choose-us {
        background-attachment: scroll !important;
    }
}

/* Safe area insets for modern phones with notches */
@supports (padding: env(safe-area-inset-bottom)) {
    footer {
        padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    }

    nav ul {
        padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    }
}

/* Why Choose Us Section */
.why-choose-us {
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 5% 4rem;
    height: auto;
    min-height: auto;
    /* Adjusted padding */
}

.why-choose-us .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 74, 59, 0.85);
    /* Dark Green Overlay */
    z-index: 1;
}

.why-choose-us .content-wrapper,
.why-choose-us .trusted-brands {
    position: relative;
    z-index: 2;
}

.why-choose-us .section-tagline {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.why-choose-us h2 {
    color: white;
    /* Override default green */
    font-size: 3rem;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns */
    gap: 0;
    /* No gap for border effect */
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 1100px;
    margin: 0 auto 5rem;
}

.feature-box {
    padding: 3rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s;
}

/* Remove right border for last item in row */
.feature-box:nth-child(3n) {
    border-right: none;
}

/* Remove bottom border for last row */
.feature-box:nth-last-child(-n+3) {
    border-bottom: none;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.05);
}

.feature-box .icon {
    margin-bottom: 1.5rem;
    color: white;
}

.feature-box .icon svg {
    width: 40px;
    height: 40px;
}

.feature-box h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
}

.feature-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.trusted-brands {
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
}

.trusted-brands p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.brand-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.5;
}

.brand-logos span {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Mobile Alignment Fix for 360px screens */
@media (max-width: 480px) {
    .why-choose-us h2 {
        font-size: 1.8rem !important;
        padding: 0 10px;
        word-wrap: break-word;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border: none !important;
        /* Remove container border */
        gap: 1rem !important;
        /* Add gap between boxes */
    }

    .feature-box {
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        /* Full border around each box */
        padding: 2rem 1.5rem !important;
    }

    .feature-box:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
        /* Ensure last child also has full border */
    }
}

/* =============================
   Language Toggle (EN / AR)
   ============================= */

/* Keep Google's widget in DOM but invisible so the select works */
#google_translate_element {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.lang-toggle {
    display: flex;
    align-items: center;
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(46, 74, 59, 0.12);
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 8px 18px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-green);
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease;
    line-height: 1;
    outline: none;
    user-select: none;
}

.lang-btn.active {
    background: var(--primary-green);
    color: #ffffff;
    border-radius: 50px;
}

.lang-btn:hover:not(.active) {
    background: rgba(46, 74, 59, 0.08);
}

/* Suppress the Google top-bar banner when translating */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
body > .skiptranslate,
iframe.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

html body {
    position: static !important;
    min-height: auto !important;
}

#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
}

@media (max-width: 768px) {
    .lang-toggle {
        margin: 0.75rem auto 0;
        width: 100%;
        max-width: 320px;
        border-radius: 8px;
        justify-content: stretch;
    }

    .lang-btn {
        flex: 1;
        padding: 13px 10px;
        font-size: 0.82rem;
        text-align: center;
    }

    .lang-btn.active {
        border-radius: 6px;
    }
}