/* Tecnologia Website - Exact Replication CSS */

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff !important;
    overflow-x: hidden;
}

/* CSS Custom Properties - Exact Color Matching */
:root {
    /* Primary Colors from Prowse Phillips */
    --primary-green: #4A7C59;
    --primary-green-hover: #5A8B6B;
    --navy-text: #2C3E35;
    --gray-text: #6b7280;
    --dark-text: #374151;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --stats-bg: #2C3E35;
    
    /* Button Colors */
    --secondary-btn-bg: #E8F3EA;
    --secondary-btn-text: #4A7C59;
    
    /* Typography */
    --font-family: 'Inter', sans-serif;
    
    /* Spacing */
    --header-height: 100px;
    --container-max-width: 1260px;
    --hero-padding: 2rem 2rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* Skip Navigation for Accessibility */
.skip-nav {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-green);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    font-weight: 600;
}

.skip-nav:focus {
    top: 6px;
}

/* Header Styles - Exact Match */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid #e5e7eb;
    z-index: 100;
    height: var(--header-height);
}

.nav {
    height: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    height: 100%;
}

/* Logo Styling - Exact Match */
.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-icon img {
    max-width: 192px;
    height: auto;
    object-fit: contain;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: -0.025em;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0;
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-green);
}

.dropdown-arrow {
    font-size: 0.75rem;
    color: var(--gray-text);
    transition: transform var(--transition-fast);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    padding: 0.5rem 0;
    list-style: none;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
}

.dropdown:hover .dropdown-menu,
.dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-arrow,
.dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.75rem 1.25rem;
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    border: none;
    background: none;
}

.dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-green);
}

.dropdown-item:focus {
    background-color: var(--light-gray);
    color: var(--primary-green);
    outline: 2px solid var(--primary-green);
    outline-offset: -2px;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    margin: 2px 0;
    transition: var(--transition-fast);
}

/* Contact Section in Header */
.nav-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.client-support {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.support-label {
    font-size: 0.875rem;
    color: var(--gray-text);
    font-weight: 400;
}

.support-phone {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    text-decoration: none;
}

.support-phone:hover {
    color: var(--primary-green);
}

/* Button Styles - Exact Match */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-primary:hover {
    background: var(--primary-green-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--secondary-btn-bg);
    color: var(--secondary-btn-text);
}

.btn-secondary:hover {
    background: #d1d5db;
    transform: translateY(-1px);
}

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

/* Prominent button style for main CTAs */
.btn-prominent {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(74, 124, 89, 0.3);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.btn-prominent:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 15px 35px rgba(74, 124, 89, 0.4);
}

/* Main Content */
.main {
    margin-top: var(--header-height);
}

/* Generic container to align section widths with hero/stats */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section - FIXED: White Background with Dark Text */
.hero {
    background: #ffffff !important;
    padding: 1.5rem 2rem;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

/* Hero Content - Left Column */
.hero-content {
    padding-right: 1rem;
}

.hero-title {
    font-family: "Inter Tight", sans-serif;
    font-size: 72px;
    font-weight: 600;
    line-height: 72px;
    color: var(--navy-text) !important;
    margin-bottom: 0.6rem;
    letter-spacing: -0.03em;
    max-width: 680px;
}

.hero-subtitle {
    font-family: Helvetica, sans-serif;
    font-size: 32px;
    line-height: 44.8px;
    font-weight: 400;
    letter-spacing: normal;
    color: #4b5563 !important;
    margin-bottom: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
}

/* Hero Visual - Right Column */
.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
}

.office-photo {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    z-index: 1;
    /* Clip image to create the stepped geometric cutout pattern */
    clip-path: polygon(
        12% 0,     /* Start top */
        100% 0,    /* Top right corner */
        100% 100%, /* Bottom right corner */
        12% 100%,  /* Bottom left main */
        12% 85%,   /* Step 1 vertical */
        8% 85%,    /* Step 1 horizontal */
        8% 65%,    /* Step 2 vertical */
        4% 65%,    /* Step 2 horizontal */
        4% 45%,    /* Step 3 vertical */
        0% 45%,    /* Step 3 horizontal (deepest) */
        0% 35%,    /* Step 4 vertical */
        4% 35%,    /* Step 4 horizontal */
        4% 15%,    /* Step 5 vertical */
        8% 15%,    /* Step 5 horizontal */
        8% 0%,     /* Back to top */
        12% 0      /* Close the shape */
    );
}

/* Statistics Section - Exact Match */
.stats-section {
    background: #ffffff;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

/* ==========================
   What We Do Section
   ========================== */
.wwd-section {
    background: #ffffff;
    padding: 2.5rem 0 3rem 0;
}

.wwd-card {
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    background: #2C3E35;
    color: #e6e7ff;
    border-radius: 8px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    position: relative; /* allow absolute decorative graphic */
}

.wwd-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    background: #2b2f38;
    color: #cbd5ff;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.wwd-title {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 500;
    color: #e6e7ff;
    letter-spacing: -0.01em;
    max-width: 820px;
}

.wwd-visual {
    position: absolute;
    right: 2rem;
    bottom: 1.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.wwd-diamond {
    width: 180px;
    height: 180px;
    opacity: 0.9;
}

.features {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid #e5e7eb;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin: 0.75rem 0 0.5rem 0;
    color: var(--navy-text);
}

.feature-item p {
    color: #4b5563;
}

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

.feature-link {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    color: #4A7C59;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    letter-spacing: 0.025em;
}

.feature-link:hover {
    color: #2C3E35;
    text-decoration: none;
    transform: translateX(4px);
}

/* ==========================
   Solutions Section
   ========================== */

.solutions-section {
    background: linear-gradient(180deg, #F4F8F5 0%, #E8F3EA 100%);
    padding: 60px 40px;
}

.solutions-header {
    text-align: left;
    margin-bottom: 40px;
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    background: #4A7C59;
    color: white;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.solutions-title {
    font-size: 2.25rem;
    color: var(--navy-text);
    font-weight: 800;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    max-width: 1260px;
    margin: 0 auto;
}

.solution-card {
    background: #ffffff;
    border: 1px solid #E8F3EA;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 2px 10px rgba(74, 124, 89, 0.08);
    text-align: left;
    height: 280px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.solution-card:hover {
    border-color: #4A7C59;
    box-shadow: 0 4px 20px rgba(74, 124, 89, 0.15);
    transform: translateY(-2px);
}



.solution-card h3 {
    margin: 16px 0 12px 0;
    color: var(--navy-text);
    font-size: 1.25rem;
    font-weight: 600;
}

.solution-card p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: auto;
}

.solution-link {
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
}

.solutions-cta {
    text-align: center;
    margin-top: 40px;
}

/* Ultra-Modern Impact Section */
.impact-hero {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.impact-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2C3E35;
    line-height: 1.3;
    margin-bottom: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    color: #4A7C59;
    font-weight: 700;
}

.impact-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #4B5563;
    margin-bottom: 4rem;
    font-weight: 400;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
}

.metric-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #E8F3EA;
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.metric-icon {
    width: 64px;
    height: 64px;
    background: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: #4A7C59;
}

.metric-icon svg {
    width: 32px;
    height: 32px;
}

.metric-value {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #4A7C59;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #6B7280;
    font-weight: 500;
    line-height: 1.4;
}

.impact-statement {
    max-width: 1150px;
    margin: 3rem auto 0 auto;
    padding: 3rem;
    background: rgba(248, 252, 249, 0.9);
    border-radius: 12px;
    border-left: 4px solid #4A7C59;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    position: relative;
}

.impact-statement::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: rgba(74, 124, 89, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.impact-statement p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #2C3E35;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .impact-title {
        font-size: 2rem;
    }
    
    .impact-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .impact-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .metric-item {
        padding: 1.5rem 1rem;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .metric-icon {
        width: 56px;
        height: 56px;
    }
    
    .metric-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .impact-statement {
        padding: 1.5rem;
        margin: 2rem 0 0 0;
        max-width: 100%;
        border-left: none;
        border-radius: 0;
    }
    
    .impact-statement p {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .impact-statement::before {
        font-size: 3rem;
        left: 1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-link {
        font-size: 0.85rem;
    }
}

.stats-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: center;
}

.stats-container .stat-item:not(:last-child) {
    border-right: 1px solid #e5e7eb;
    padding-right: 2rem;
}

.stat-item {
    text-align: left;
    color: var(--dark-text);
}

/* Clutch Reviews Styling */
.stat-item:first-child {
    text-align: left;
}

/* Responsive Stats */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .stats-container .stat-item:nth-child(4),
    .stats-container .stat-item:nth-child(5) {
        grid-column: span 1;
        border-right: none;
        padding-right: 0;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e5e7eb;
    }
    
    .stats-container .stat-item:nth-child(3) {
        border-right: none;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 2rem 0;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
        padding: 0 1.5rem;
    }
    
    /* First item (Reviews) spans full width */
    .stats-container .stat-item:first-child {
        grid-column: 1 / -1;
        text-align: center;
        border-right: none;
        padding-right: 0;
        padding-bottom: 1.5rem;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid #e5e7eb;
    }
    
    /* Center the review lines on mobile */
    .review-line-1,
    .review-line-2 {
        justify-content: center;
    }
    
    /* Remove borders from all other items on mobile */
    .stats-container .stat-item:not(:first-child) {
        border-right: none;
        padding-right: 0;
        text-align: center;
    }
    
    .stat-number {
        font-size: 28px;
        justify-content: center;
    }
    
    .stat-unit {
        font-size: 16px;
    }
    
    .stat-description {
        font-size: 13px;
        line-height: 1.4;
    }
}

.review-line-1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.review-line-2 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #6B7280;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #FFD700;
    font-size: 1rem;
}

.clutch-logo {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2C3E35;
}

.stat-detail {
    font-size: 0.75rem;
    color: #6B7280;
    font-weight: 400;
    text-transform: uppercase;
}

/* Number Statistics */
.stat-number {
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    color: #4A7C59;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    display: flex;
    align-items: baseline;
}

.stat-unit {
    font-size: 16px;
    font-weight: 600;
    color: #2C3E35;
    margin-left: 0.2rem;
    flex-shrink: 0;
}

.stat-description {
    font-size: 16px;
    color: #6B7280;
    font-weight: 400;
    line-height: 1.3;
}

/* Typography Helpers */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Styles for Accessibility */
*:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Smooth Transitions */
a, button {
    transition: all var(--transition-fast);
}

/* Remove default button styling */
button {
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
}

/* ==========================
   GOOGLE REVIEWS SECTION - OUT OF THIS WORLD DESIGN
   ========================== */

.reviews-section {
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
}

.reviews-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Header with Trust Indicators */
.reviews-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.trust-badge {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(74, 124, 89, 0.1);
    border: 2px solid #E8F3EA;
    max-width: 450px;
    position: relative;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.08), rgba(74, 124, 89, 0.03));
    border-radius: 22px;
    z-index: -1;
}

.section-title {
    text-align: left;
}

.section-title h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #2C3E35;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.section-title p {
    font-size: 1.125rem;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

.google-verification {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.google-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.verification-text {
    color: #2C3E35;
}

.verified-badge {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #4A7C59;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.rating-stars {
    display: flex;
    gap: 0.125rem;
}

.rating-stars .star.filled {
    color: #FFD700;
    font-size: 1.25rem;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.rating-score {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2C3E35;
}

.review-count {
    font-size: 0.85rem;
    color: #6B7280;
}

/* Reviews Grid - Clean Row */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

/* Review Cards */
.review-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.review-card.featured {
    border: 1px solid #E8F3EA;
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.1);
}

/* Review Header */
.review-header {
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4A7C59, #5A8B6B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-initial {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.reviewer-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2C3E35;
    margin: 0 0 0.25rem 0;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-stars {
    display: flex;
    gap: 0.125rem;
}

.review-stars .star {
    color: #FFD700;
    font-size: 1rem;
    text-shadow: 0 0 4px rgba(255, 215, 0, 0.3);
}

.review-date {
    font-size: 0.85rem;
    color: #6B7280;
    font-weight: 500;
}

/* Review Content */
.review-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #374151;
    margin: 0 0 1.5rem 0;
    font-style: italic;
    position: relative;
    padding-left: 1rem;
}

.review-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.25rem;
    font-size: 2rem;
    color: rgba(74, 124, 89, 0.3);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Review Footer */
.review-footer {
    display: flex;
    justify-content: flex-end;
}

.service-tag {
    background: rgba(74, 124, 89, 0.1);
    color: #4A7C59;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(74, 124, 89, 0.2);
}

/* Call to Action */
.reviews-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 0;
    border: none;
    max-width: 700px;
    margin: 0 auto;
}

.cta-text {
    font-size: 1.25rem;
    color: #2C3E35;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

/* Responsive Design */
@media (max-width: 899px) {
    .reviews-header {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .trust-badge {
        max-width: 420px;
        padding: 2rem;
    }
    
    .section-title {
        text-align: center;
    }
    
    .section-title h2 {
        font-size: 2.25rem;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .review-card.featured {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .reviews-section {
        padding: 4rem 0;
    }
    
    .reviews-container {
        padding: 0 1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .trust-badge {
        padding: 2rem;
        max-width: 100%;
        margin-bottom: 2.5rem;
    }
    
    .google-verification {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .review-card {
        padding: 1.75rem;
    }
    
    .reviews-cta {
        padding: 3rem 1rem;
        margin: 0 auto;
    }
    
    .cta-text {
        font-size: 1.125rem;
    }
}

/* ==========================
   FOOTER SECTION - PROFESSIONAL & FUNCTIONAL
   ========================== */

.footer {
    background: #2C3E35;
    color: #E8F3EA;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4A7C59, transparent);
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding: 4rem 0 3rem 0;
    border-bottom: 1px solid rgba(232, 243, 234, 0.1);
}

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

/* Footer Logo */
.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #A8C5AE;
    margin-bottom: 2rem;
    max-width: 300px;
}

/* Contact Information */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #E8F3EA;
}

.contact-icon {
    width: 18px;
    height: 18px;
    color: #4A7C59;
    flex-shrink: 0;
}

/* Footer Titles */
.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: 'Inter Tight', sans-serif;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #A8C5AE;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
}

.footer-links a:hover {
    color: #E8F3EA;
    border-bottom-color: #4A7C59;
    transform: translateX(5px);
}

/* Footer Social Media Icons */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #A8C5AE;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #4A7C59;
    color: #ffffff;
    transform: translateY(-3px);
}

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

/* Footer CTA */
.footer-cta {
    margin-top: 2rem;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 6px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
}

.footer-legal {
    text-align: center;
}

.regulatory-info {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #A8C5AE;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 500;
}