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

/* Color Variables for Whatif Group */
:root {
    --primary-dark: #1a202c;
    --primary-medium: #2d3748;
    --primary-light: #4a5568;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --background: #f7fafc;
    --accent-orange: #ed8936;
    --accent-teal: #38b2ac;
    --accent-purple: #805ad5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #2d3748;
    line-height: 1.7;
    background-color: #f7fafc;
    font-weight: 400;
    letter-spacing: normal;
}

/* All heading elements use Montserrat Bold */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    position: relative;
}


.serif-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding-inline: 1.25rem;
}

@media (min-width: 640px) {
    .container {
        padding-inline: 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-inline: 3rem;
    }
}

/* Mobile container improvements */
@media (max-width: 640px) {
    .container {
        padding-inline: 1rem; /* 16px sides for mobile */
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: #f7fafc;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    width: 100%;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.header .container {
    position: relative;
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    z-index: 1;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 5.0625rem;
    width: auto;
    display: block;
    position: relative;
}

/* Reduce logo size on mobile for better header proportions */
@media (max-width: 768px) {
    .logo-img {
        height: 3.375rem; /* 50% smaller for mobile */
    }
    
    .header-content {
        padding: 0.75rem 0; /* Reduced padding on mobile */
    }
    
    .header {
        position: fixed;
        top: 0;
        will-change: transform;
    }
    
    .logo {
        position: relative;
    }
    
    .logo-link {
        position: relative;
    }
}

.nav-desktop {
    display: none;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.header-cta {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    margin-left: 1rem;
}

.nav-link {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
    font-family: 'Nunito', sans-serif;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1a365d, #2f3b69);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #1a202c;
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #2d3748;
    transition: color 0.3s ease;
}

@media (max-width: 767px) {
    .mobile-menu-btn {
        display: block; /* Show on mobile */
    }
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Hamburger Icon */
.mobile-menu-btn .hamburger-icon {
    width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-btn .hamburger-icon span {
    width: 100%;
    height: 3px;
    background-color: currentColor;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Close Icon (X) when menu is open */
.mobile-menu-btn.menu-open .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(0, 0);
    transform-origin: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -1.5px;
}

.mobile-menu-btn.menu-open .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.menu-open .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(0, 0);
    transform-origin: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -1.5px;
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: fixed;
    top: 70px; /* Adjusted for smaller mobile header */
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 2rem 0;
}

.nav-mobile.active {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-mobile .nav-link {
    color: #2d3748;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    padding: 1rem 2rem;
    margin: 0.5rem 0;
    transition: color 0.3s ease;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    font-family: 'Nunito', sans-serif;
}

.nav-mobile .nav-link:hover {
    color: #1a202c;
    background-color: #e3dddc;
}

/* Hero Section - Left-Right Layout with edge alignment */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0 4rem 0;
    margin-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    width: 100%;
    max-width: none;
    margin: 0;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 0; /* Remove asymmetric padding, let individual elements handle their own padding */
    }
}

.hero-text {
    text-align: left;
    max-width: 600px;
    padding: 2rem 1rem; /* Add vertical padding for better spacing */
}

@media (min-width: 640px) {
    .hero-text {
        padding: 2rem 1.5rem; /* Add vertical padding for better spacing */
    }
}

@media (min-width: 1024px) {
    .hero-text {
        padding: 2rem 2rem; /* Add vertical padding for better spacing */
    }
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem; /* Add vertical padding for better spacing */
}

@media (min-width: 640px) {
    .hero-logo {
        padding: 2rem 1.5rem; /* Add vertical padding for better spacing */
    }
}

@media (min-width: 1024px) {
    .hero-logo {
        padding: 2rem 2rem; /* Add vertical padding for better spacing */
        justify-content: flex-end;
    }
}

.hero-logo-img {
    max-width: 1600px;
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid white;
}

@media (min-width: 1024px) {
    .hero-logo-img {
        max-width: 2000px;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
    color: #1a202c;
    letter-spacing: -0.02em;
    position: relative;
}



.title-part {
    color: #2d3748;
}

.title-part.blue {
    color: #7BD0F0;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.4;
    color: #2d3748;
    font-family: 'Nunito', sans-serif;
}

/* Hide line breaks on mobile and tablet */
.desktop-only {
    display: none;
}

/* Show line breaks only on desktop */
@media (min-width: 1024px) {
    .desktop-only {
        display: inline;
    }
    
    .hero-description {
        max-width: 500px;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #059669, #10b981);
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-family: 'Nunito', sans-serif;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
}

.arrow-icon {
    margin-left: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(6px);
}

/* Orange Button Styling */
.orange-button {
    background: linear-gradient(135deg, #ed8936, #f6ad55) !important;
    color: white !important;
}

.orange-button:hover {
    box-shadow: 0 6px 20px rgba(237, 137, 54, 0.3) !important;
    transform: scale(1.04);
}

.orange-button:hover .arrow-icon {
    transform: translateX(6px);
}

/* Responsive Hero */
@media (min-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    .hero-description {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    .hero-text {
        max-width: 700px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
    }
    .hero-text {
        max-width: 600px;
    }
}

/* Mobile Hero improvements */
@media (max-width: 768px) {
    .hero {
        margin-top: 70px; /* Adjusted for smaller mobile header */
        padding: 4rem 0 3rem 0; /* Better balanced padding for mobile */
        min-height: 80vh;
    }
    
    .hero-content {
        padding: 0; /* Remove asymmetric padding for proper centering */
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
}

/* Section Styles */
.section {
    padding: 6rem 1rem;
    position: relative;
}

/* Mobile section spacing improvements */
@media (max-width: 768px) {
    .section {
        padding: 3rem 1.25rem; /* 48px top/bottom, 20px sides */
    }
}

.section.bg-light-blue {
    background: linear-gradient(135deg, #f8fafc 0%, #e3dddc 100%);
}

.section.bg-light-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2f3b69, transparent);
    opacity: 0.4;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 2px;
    background: linear-gradient(90deg, #4a5568, #2d3748);
    border-radius: 1px;
}

.section-subtitle {
    font-size: 1.25rem;
    max-width: 48rem;
    margin: 0 auto 1rem;
    color: #2d3748;
    font-family: 'Nunito', sans-serif;
}

.bg-light-blue {
    background-color: #e3dddc;
}

.content-max-width {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.content-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #2d3748;
    max-width: 65ch; /* Limit text width for better readability */
    font-family: 'Nunito', sans-serif;
}

.content-text:last-child {
    margin-bottom: 0;
}

/* Responsive Section Titles */
@media (min-width: 640px) {
    .section-title {
        font-size: 2.5rem;
    }
}

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

/* Services Grid - Standard responsive layout */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

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

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
    }
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a5568, #2d3748);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* Service Image Styling */
.service-image {
    margin: 1.5rem 0;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.02);
}

.service-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    position: relative;
    overflow: hidden;
}


.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 1rem;
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.service-image {
    width: 100%;
    height: 200px;
    border-radius: 0.75rem;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-img:hover {
    transform: scale(1.05);
}

.placeholder-image {
    background: linear-gradient(135deg, #f7fafc, #e2e8f0);
    border: 2px dashed #cbd5e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    position: relative;
}

.placeholder-image::before {
    content: 'Image Coming Soon';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
}

/* Regeneration Showcase Styles */
.regeneration-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

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

@media (min-width: 1024px) {
    .regeneration-showcase {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.regeneration-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.regeneration-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.regeneration-card.main-visual {
    grid-row: span 2;
}

.regeneration-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.regeneration-card.main-visual .regeneration-image {
    height: 400px;
}

.regeneration-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.regeneration-content {
    padding: 2rem;
}

.regeneration-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.regeneration-description {
    color: #718096;
    line-height: 1.6;
    font-size: 1rem;
}

.service-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a202c;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin: 0;
}

.service-description {
    line-height: 1.7;
    color: #2d3748;
    margin: 0;
    flex-grow: 1;
    font-family: 'Nunito', sans-serif;
}

/* Consultancy Grid */
.consultancy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

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

.consultancy-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.consultancy-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.consultancy-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.consultancy-icon {
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultancy-icon.blue {
    background-color: #2d3748;
}

.consultancy-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.consultancy-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a202c;
    font-family: 'Montserrat', sans-serif;
}

.consultancy-provider {
    font-size: 0.875rem;
    font-weight: 500;
    color: #2f3b69;
    font-family: 'Nunito', sans-serif;
}

.consultancy-description {
    line-height: 1.6;
    color: #2d3748;
    font-family: 'Nunito', sans-serif;
}

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

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

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

/* Reviews Section - Grid layout for 6 reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

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

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

/* Google Reviews CTA Styling */
.google-reviews-cta {
    margin-top: 3rem;
    text-align: center;
}

.google-reviews-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #4285f4;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.google-reviews-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
    color: white;
    text-decoration: none;
}

@media (min-width: 768px) {
    .google-reviews-cta {
        text-align: center;
    }
}

/* Modern Review Cards */
.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    text-align: left;
}

.review-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #ffc107;
    font-size: 1.25rem;
    line-height: 1;
}

.reviewer-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.review-text {
    color: #2d3748;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
    font-family: 'Nunito', sans-serif;
}

.reason-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.reason-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.reason-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.reason-icon.green {
    background-color: #4a5568;
}

.reason-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.reason-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.reason-description {
    line-height: 1.6;
    color: #2d3748;
    font-family: 'Nunito', sans-serif;
}

/* Reason Image Styling */
.reason-image {
    margin: 1.5rem 0;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.reason-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.reason-card:hover .reason-img {
    transform: scale(1.02);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

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

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

@media (min-width: 1280px) {
    .team-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.team-member:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.member-avatar {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.member-avatar.blue {
    background-color: #2d3748;
}

.member-avatar svg {
    width: 3rem;
    height: 3rem;
    color: white;
}

.member-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a202c;
    font-family: 'Montserrat', sans-serif;
}

.member-role {
    font-size: 0.875rem;
    color: #2d3748;
    font-family: 'Nunito', sans-serif;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    padding: 0.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon.green {
    background-color: #2f3b69;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.contact-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #2d3748;
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

.contact-link {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: 'Nunito', sans-serif;
}

.contact-link:hover {
    color: #1a202c;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c;
    font-family: 'Montserrat', sans-serif;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: none;
    background-color: white;
    font-family: 'Nunito', sans-serif;
    color: #2d3748;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #1a365d;
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
    transform: translateY(-1px);
}

/* Hidden elements */
.hidden {
    display: none !important;
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 1.5rem;
    color: white;
    font-weight: 600;
    background: linear-gradient(135deg, #059669, #10b981);
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Nunito', sans-serif;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
}

.send-icon {
    margin-left: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.submit-button:hover .send-icon {
    transform: translateX(6px);
}

/* Checkbox Group Styles */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

.checkbox-label:hover {
    background-color: #f8f9fa;
}

.form-checkbox {
    margin-right: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #2d3748;
    cursor: pointer;
}

.checkbox-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.4;
}

/* Installation Showcase Section */
.installation-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.installation-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.installation-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.installation-image {
    position: relative;
    overflow: hidden;
}

.installation-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.installation-card:hover .installation-img {
    transform: scale(1.02);
}

/* Commercial background image styling */
.installation-image.commercial-bg {
    height: 300px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.installation-image.commercial-bg:hover {
    transform: scale(1.02);
}

/* Installation Gallery */
.installation-gallery {
    position: relative;
    overflow: hidden;
}

.gallery-main {
    position: relative;
    overflow: hidden;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.gallery-thumb {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 0.375rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.8;
}

.gallery-thumb:hover {
    opacity: 1;
    border-color: #2f3b69;
    transform: scale(1.05);
}

.gallery-thumb.active {
    opacity: 1;
    border-color: #1a365d;
}

.installation-content {
    padding: 2rem;
}

.installation-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.installation-description {
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-family: 'Nunito', sans-serif;
}

.installation-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.installation-features li {
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Nunito', sans-serif;
}

.installation-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2f3b69;
    font-weight: 600;
}

@media (min-width: 768px) {
    .installation-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .installation-img {
        height: 250px;
    }
}

@media (min-width: 1024px) {
    .installation-showcase {
        gap: 3rem;
    }
    
    .installation-img {
        height: 300px;
    }
}

/* Left-Right Layout Sections */
.left-right-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.content-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
    overflow: hidden; /* Prevent content from overflowing */
}

.image-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.section-image:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.section-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.section-image:hover .section-img {
    transform: scale(1.02);
}

/* Square background image styling */
.section-image.square-bg {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    max-width: 100%;
    width: 100%;
}

.section-image.square-bg:hover {
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .left-right-layout {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .left-right-layout.reverse {
        grid-template-columns: 1fr 1fr;
    }
    
    .left-right-layout.reverse .content-side {
        order: 2;
    }
    
    .left-right-layout.reverse .image-side {
        order: 1;
    }
    
    .section-img {
        height: 350px;
    }
}

@media (min-width: 1024px) {
    .left-right-layout {
        gap: 3rem;
    }
    
    .section-img {
        height: 400px;
    }
    
    /* Better text width control on larger screens */
    .content-text {
        max-width: 60ch; /* Slightly narrower on desktop for better readability */
    }
}

/* Quote Benefits Section */
.quote-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5rem;
    height: 2px;
    background: linear-gradient(90deg, #4a5568, #2d3748);
    border-radius: 1px;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
}

.benefit-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.benefit-item span {
    font-weight: 600;
    color: #1a202c;
    font-size: 1.125rem;
    line-height: 1.4;
    font-family: 'Nunito', sans-serif;
}

@media (min-width: 768px) {
    .quote-benefits {
        flex-direction: row;
        gap: 1.5rem;
        padding: 0;
    }
    
    .benefit-item {
        flex: 1;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 2rem 1.25rem;
    }
    
    .benefit-item span {
        font-size: 1rem;
        font-weight: 600;
    }
}

/* Footer */
.footer {
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 4rem 0;
}

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

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

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

.footer-company {
    display: flex;
    flex-direction: column;
}

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

.footer-logo-img {
    height: 5rem;
    width: auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .footer-logo-img {
        height: 3.5rem;
        max-width: 100%;
    }
}

.footer-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 24rem;
    color: #2d3748;
    font-family: 'Nunito', sans-serif;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #2d3748;
    font-family: 'Nunito', sans-serif;
}

.footer-contact-link {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: 'Nunito', sans-serif;
}

.footer-contact-link:hover {
    color: #1a202c;
}

.footer-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #2f3b69;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-family: 'Montserrat', sans-serif;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: 'Nunito', sans-serif;
}

.footer-link:hover {
    color: #1a202c;
}

.footer-services {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #2d3748;
    font-family: 'Nunito', sans-serif;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: #2d3748;
    font-family: 'Nunito', sans-serif;
}

.footer-credit {
    font-size: 0.875rem;
    font-family: 'Nunito', sans-serif;
}

.footer-credit-link {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: 'Nunito', sans-serif;
}

.footer-credit-link:hover {
    color: #1a202c;
}

/* Partners Carousel Section */
.partners-carousel-section {
    background: white;
    padding: 2rem 0;
    overflow: hidden;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.partners-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-carousel-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: fit-content;
    animation: partnersScroll 40s linear infinite;
    will-change: transform;
}

.partners-carousel-track:hover {
    animation-play-state: paused;
}

.partner-logo-link,
.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.partner-logo-link:hover,
.partner-logo-item:hover {
    transform: scale(1.05);
}

.partner-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    background: white;
    border-radius: 0.5rem;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
    border: 1px solid #e0e0e0;
}

.partner-logo-link:hover .partner-logo-wrapper,
.partner-logo-item:hover .partner-logo-wrapper {
    filter: grayscale(0%);
    opacity: 1;
    border-color: #2d3748;
}

.partner-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #2d3748;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* Support for logo images */
.partner-logo-img {
    max-height: 3.5rem;
    width: auto;
    max-width: 220px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
    display: block;
    object-fit: contain;
    border-radius: 0.5rem;
}

.partner-logo-link:hover .partner-logo-img,
.partner-logo-item:hover .partner-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

/* When using images, remove padding from wrapper */
.partner-logo-wrapper.has-image {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: none;
}

@keyframes partnersScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .partners-carousel-section {
        padding: 1.75rem 0;
    }
    
    .partners-carousel-track {
        gap: 3.5rem;
        animation-duration: 35s;
    }
    
    .partner-logo-img {
        max-height: 3rem;
        max-width: 200px;
    }
    
    .partner-logo-wrapper.has-image {
        padding: 0.5rem 1.25rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .partners-carousel-section {
        padding: 1.5rem 0;
    }
    
    .partners-carousel-track {
        gap: 2.5rem;
        animation-duration: 20s;
    }
    
    .partner-logo-img {
        max-height: 2.5rem;
        max-width: 180px;
    }
    
    .partner-logo-wrapper.has-image {
        padding: 0.5rem 1rem;
    }
    
    .partner-logo-wrapper {
        padding: 0.5rem 1.5rem;
    }
    
    .partner-logo-text {
        font-size: 0.875rem;
    }
}

/* Trust Section - Removed from footer but keeping styles for potential future use */
.trust-section {
    border-top: 1px solid #e5e7eb;
    padding: 2rem 0;
    margin-top: 2rem;
}

.trust-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.trust-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trust-logo:hover {
    opacity: 1;
}

.trust-logo-img {
    max-height: 3rem;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.trust-logo:hover .trust-logo-img {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .trust-logos {
        gap: 1rem;
    }
    
    .trust-logo-img {
        max-height: 2.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Additional mobile spacing improvements */
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .reviews-grid {
        gap: 1.5rem;
    }
    
    .services-grid {
        gap: 1.5rem;
    }
    
    .reasons-grid {
        gap: 1.5rem;
    }
    
    .contact-grid {
        gap: 2rem;
    }
}

/* Team Section Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-photo {
    margin-bottom: 1.5rem;
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e2e8f0;
}

.team-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.team-role {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-bio {
    color: #718096;
    line-height: 1.6;
}

/* Ethos Section Styles */
.ethos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

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

@media (min-width: 1024px) {
    .ethos-grid {
        grid-template-columns: repeat(5, 1fr);
        max-width: 1200px;
    }
}

.ethos-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ethos-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.ethos-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #38b2ac, #2d3748);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.ethos-icon svg {
    width: 30px;
    height: 30px;
}

.ethos-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.ethos-description {
    color: #718096;
    line-height: 1.6;
    font-size: 1rem;
}

/* Service Card Styles for Modus Operandi */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d3748, #805ad5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 0;
    color: #1a202c;
    line-height: 1.3;
    text-align: center;
    font-weight: 700;
}

.service-description {
    color: #718096;
    line-height: 1.6;
    margin-left: 0;
    text-align: center;
    max-width: 100%;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ethos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ethos-item {
        padding: 1.5rem;
    }
    
    .ethos-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }
    
    .ethos-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .ethos-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .ethos-description {
        font-size: 0.9rem;
    }
    
    .service-image {
        height: 150px;
        margin: 0 auto 1rem;
    }
    
    .regeneration-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .regeneration-card.main-visual {
        grid-row: span 1;
    }
    
    .regeneration-image {
        height: 200px;
    }
    
    .regeneration-card.main-visual .regeneration-image {
        height: 200px;
    }
    
    .regeneration-content {
        padding: 1.5rem;
    }
    
    .regeneration-title {
        font-size: 1.25rem;
    }
    
    .regeneration-description {
        font-size: 0.9rem;
    }
    
    .service-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .service-description {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .team-img {
        width: 120px;
        height: 120px;
    }
}
