 /* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-blue: #0066FF;
    --primary-green: #7ED321;
    --accent-green: #059669;

    /* Background Colors */
    --bg-dark: #2C3E50;
    --bg-darker: #1a252f;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #e5e7eb;
    --gray-dark: #374151;

    /* Text Colors - Improved Accessibility */
    --text-dark: #1a1a1a;
    --text-light: #6b7280;  /* Improved contrast: 4.8:1 */
    --text-muted: #9ca3af;
    --text-white: #ffffff;

    /* Enhanced Hero Text Colors */
    --hero-text-primary: #ffffff;
    --hero-text-accent: #7ED321;
    --hero-text-gradient-start: #ffffff;
    --hero-text-gradient-end: #7ED321;
    --hero-subtitle-color: #e8f4fd;

    /* Alternative Color Schemes - Uncomment one to try different looks */

    /* OPTION 1: Deep Ocean Blue Gradient */
    --hero-gradient: linear-gradient(180deg, #0a1628 0%, #1e3a5f 25%, #2d5a87 50%, #3b7097 75%, #4a86a7 90%, #5a9cb7 100%);

    /* OPTION 2: Warm Sunset - Uncomment to use
    --hero-gradient: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    --hero-subtitle-color: #f7e7ce;
    */

    /* OPTION 3: Modern Blue - Uncomment to use
    --hero-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --hero-subtitle-color: #e1e8ff;
    */

    /* OPTION 4: Fresh Green - Uncomment to use
    --hero-gradient: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --hero-subtitle-color: #d0f0f0;
    */

    /* OPTION 5: Golden Hour - Uncomment to use
    --hero-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #ffd89b 100%);
    --hero-subtitle-color: #fde8e8;
    */

    /* Typography Scale */
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-lg: 1.125rem;   /* 18px */
    --font-size-xl: 1.25rem;    /* 20px */
    --font-size-2xl: 1.5rem;    /* 24px */
    --font-size-3xl: 1.875rem;  /* 30px */
    --font-size-4xl: 2.25rem;   /* 36px */
    --font-size-5xl: 3rem;      /* 48px */
    --font-size-6xl: 4rem;      /* 64px */

    /* Spacing Scale */
    --space-xs: 0.25rem;   /* 4px */
    --space-sm: 0.5rem;    /* 8px */
    --space-md: 1rem;      /* 16px */
    --space-lg: 1.5rem;    /* 24px */
    --space-xl: 2rem;      /* 32px */
    --space-2xl: 3rem;     /* 48px */
    --space-3xl: 4rem;     /* 64px */
    --space-4xl: 6rem;     /* 96px */

    /* Effects */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --transition-smooth: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: var(--font-size-base);
}

/* Typography Improvements */
h1 {
    font-size: var(--font-size-6xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

h2 {
    font-size: var(--font-size-4xl);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

h4 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    line-height: 1.4;
}

p {
    margin-bottom: var(--space-md);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: var(--bg-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header.scrolled .nav-link {
    color: var(--text-white);
}

.header.scrolled .nav-link:hover {
    color: var(--primary-green);
}

.header.scrolled .mobile-menu-toggle span {
    background: var(--text-white);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
}

.logo img {
    height: 40px;
    width: auto;
    margin-right: 10px;
    object-fit: contain;
}

.logo .brand-text {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo .brand-text .blue {
    color: var(--primary-blue);
}

.logo .brand-text .green {
    color: var(--primary-green);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--bg-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-green);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--bg-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    transition: var(--transition-smooth);
    text-align: center;
    cursor: pointer;
    font-size: var(--font-size-sm);
    letter-spacing: 0.025em;
    border: none;
    position: relative;
    overflow: hidden;
    min-height: 44px; /* WCAG touch target size */
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(126, 211, 33, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(126, 211, 33, 0.4);
    background: var(--accent-green);
}

.btn-primary:focus {
    outline: 3px solid rgba(126, 211, 33, 0.5);
    outline-offset: 2px;
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--font-size-base);
    min-height: 48px;
}

.btn-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: var(--space-sm) 0;
    border-radius: 4px;
}

.btn-link:hover {
    color: var(--accent-green);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.btn-link:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
}

.hero-gradient {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 50%, var(--primary-blue) 100%);
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Green curved border for page hero sections */
.about-hero,
.gallery-hero,
.contact-hero,
.services-hero {
    position: relative;
    overflow: hidden;
}

/* Green curved border using pseudo-element */
.about-hero::after,
.gallery-hero::after,
.contact-hero::after,
.services-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 90px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 90" xmlns="http://www.w3.org/2000/svg"><path d="M0,70 C480,10 960,10 1440,70 L1440,90 L0,90 Z" fill="white" stroke="%237ED321" stroke-width="8"/></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 10;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 800" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') no-repeat center;
    opacity: 0.3;
    background-size: cover;
}

.hero-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 80" xmlns="http://www.w3.org/2000/svg"><path d="M0,80 C480,20 960,20 1440,80 L1440,80 L0,80 Z" fill="white"/></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-4xl) 0 var(--space-3xl);
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: #ffffff;
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    position: relative;
}


.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--hero-subtitle-color);
    margin-bottom: var(--space-xl);
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Section */
.services-overview {
    padding: var(--space-3xl) 0 var(--space-4xl);
    background: var(--gray-light);
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--text-dark);
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    border-radius: 16px 16px 0 0;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--gray-medium);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none; /* Hide until actual image is added */
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(45deg, #f8f9fa 25%, transparent 25%),
        linear-gradient(-45deg, #f8f9fa 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #f8f9fa 75%),
        linear-gradient(-45deg, transparent 75%, #f8f9fa 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    color: var(--text-dark);
}

.image-placeholder span {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.image-placeholder small {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    background: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-content {
    padding: var(--space-xl);
    text-align: center;
}

.service-content h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-md);
    color: var(--text-dark);
    font-weight: 600;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

/* When actual images are added, use this class */
.service-image.has-image img {
    display: block;
}

.service-image.has-image .image-placeholder {
    display: none;
}

/* How It Works Section */
.how-it-works {
    padding: var(--space-4xl) 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.step {
    text-align: center;
    position: relative;
    padding: var(--space-lg);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.step:hover {
    transform: translateY(-4px);
    background: rgba(126, 211, 33, 0.05);
}

.step-number {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin: 0 auto var(--space-lg);
    box-shadow: 0 8px 20px rgba(126, 211, 33, 0.3);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    opacity: 0.2;
    z-index: -1;
}

.step h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
    font-weight: 600;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: var(--font-size-base);
}

/* Testimonials Section */
.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--gray-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 16px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    border-left: 4px solid var(--primary-green);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #fbbf24;
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
    display: flex;
    gap: var(--space-xs);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: var(--space-md);
    font-size: var(--font-size-lg);
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: var(--font-size-base);
}

/* CTA Section */
.cta-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 50%, var(--primary-blue) 100%);
    color: var(--text-white);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 800" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="ctaGrid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23ctaGrid)"/></svg>') no-repeat center;
    opacity: 0.5;
    background-size: cover;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.cta-content p {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-xl);
    opacity: 0.95;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    color: var(--text-white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-column h4 {
    margin-bottom: var(--space-md);
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: var(--space-sm);
}

.footer-column a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    font-size: var(--font-size-base);
}

.footer-column a:hover {
    opacity: 1;
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: var(--space-md);
    font-size: var(--font-size-2xl);
}

.social-links a {
    transition: var(--transition-smooth);
    padding: var(--space-sm);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
}

.social-links a img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover img {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    font-size: var(--font-size-sm);
}

/* Scroll Effects */
.header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
}

.nav-link.active {
    color: var(--primary-green);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

img.loaded {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Enhanced Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

/* Mobile Menu Toggle Animations */
.mobile-menu-toggle.active span {
    background: var(--white);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: var(--white);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background: var(--white);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #333;
}

.modal-content h2 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.modal-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.modal-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.modal-form .form-group {
    margin-bottom: 1rem;
}

.modal-form .form-group.full-width {
    grid-column: span 2;
}

.modal-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.modal-form textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-block {
    width: 100%;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .modal-form .form-row {
        grid-template-columns: 1fr;
    }

    .modal-form .form-group.full-width {
        grid-column: span 1;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(44, 62, 80, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-xl);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0 0 20px 20px;
        gap: var(--space-md);
        z-index: 1000;
    }

    .nav-menu.active .nav-link {
        color: var(--white);
        padding: var(--space-sm) 0;
        font-size: var(--font-size-lg);
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active .nav-link:last-child {
        border-bottom: none;
    }

    .nav-menu.active .nav-link:hover {
        color: var(--primary-green);
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: var(--space-md);
    }

    .hero-subtitle {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-lg);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 320px;
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: var(--space-lg);
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .service-content {
        padding: var(--space-lg);
    }

    .step {
        padding: var(--space-md);
    }

    .step-number {
        width: 64px;
        height: 64px;
        font-size: var(--font-size-xl);
    }

    .container {
        padding: 0 var(--space-md);
    }

    .hero-content {
        padding: var(--space-2xl) 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }

    .social-links {
        justify-content: center;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large screen optimizations */
@media (min-width: 1200px) {
    .container {
        padding: 0 var(--space-xl);
    }

    .hero-content {
        max-width: 1000px;
    }
}

/* Google Reviews Styles */
.google-reviews-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.google-badge-icon {
    width: 24px;
    height: 24px;
}

.google-stars-small {
    display: flex;
    gap: var(--space-xs);
    font-size: var(--font-size-base);
}

.google-stars-small .star {
    color: #fbbf24;
}

.business-rating {
    color: var(--text-dark);
    font-weight: 700;
}

.rating-count {
    color: var(--text-light);
    font-size: var(--font-size-base);
    font-weight: 400;
}

.google-review {
    position: relative;
    overflow: hidden;
}

.google-review::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
    border-radius: 16px 16px 0 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.review-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gray-medium);
    transition: var(--transition-smooth);
}

.google-review:hover .author-photo {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.author-name {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.review-time {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

.google-logo {
    display: flex;
    align-items: center;
}

.google-icon {
    width: 20px;
    height: 20px;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.google-review:hover .google-icon {
    opacity: 1;
    transform: scale(1.1);
}

.google-stars {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
    font-size: var(--font-size-lg);
}

.google-stars .star.filled {
    color: #fbbf24;
    text-shadow: 0 1px 2px rgba(251, 191, 36, 0.3);
}

.google-stars .star.unfilled {
    color: var(--gray-medium);
}

.review-text {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.review-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--font-size-sm);
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 6px;
    background: rgba(0, 102, 255, 0.05);
}

.review-link:hover {
    color: var(--accent-green);
    background: rgba(5, 150, 105, 0.1);
    transform: translateY(-1px);
}

.review-link::after {
    content: '↗';
    font-size: var(--font-size-xs);
    opacity: 0.7;
}

/* Google Reviews Loading State */
.reviews-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl);
    color: var(--text-light);
    font-style: italic;
}

.reviews-loading::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-medium);
    border-top: 2px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: var(--space-sm);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced testimonial card for Google Reviews */
.testimonial-card.google-review {
    background: var(--white);
    border-radius: 16px;
    padding: var(--space-xl);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card.google-review:hover {
    transform: translateY(-6px);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Animation for Google Reviews */
.google-review.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.google-review.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered animation for multiple reviews */
.google-review:nth-child(1) {
    animation-delay: 0.1s;
}

.google-review:nth-child(2) {
    animation-delay: 0.2s;
}

.google-review:nth-child(3) {
    animation-delay: 0.3s;
}

.google-review:nth-child(4) {
    animation-delay: 0.4s;
}

.google-review:nth-child(5) {
    animation-delay: 0.5s;
}

/* Responsive adjustments for Google Reviews */
@media (max-width: 768px) {
    .google-reviews-badge {
        flex-direction: column;
        gap: var(--space-xs);
        text-align: center;
    }

    .review-header {
        flex-direction: column;
        gap: var(--space-sm);
        align-items: flex-start;
    }

    .google-logo {
        align-self: flex-end;
    }

    .author-photo {
        width: 40px;
        height: 40px;
    }

    .testimonial-card.google-review {
        padding: var(--space-lg);
    }
}

/* Google Reviews Section */
.google-reviews-section {
    padding: var(--space-3xl) 0;
    background: var(--gray-light);
}

.google-reviews-section .section-title {
    margin-bottom: 2rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.section-subtitle {
    font-size: var(--font-size-2xl);
    color: var(--primary-green);
    text-align: center;
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.section-intro {
    max-width: 900px;
    margin: 0 auto var(--space-3xl);
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--text-light);
    line-height: 1.7;
}

 /* ---------- Layout ---------- */
 .why-choose-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: var(--space-lg);
   margin-top: var(--space-lg);
 }

 /* ---------- Card ---------- */
 .why-choose-item {
   background: var(--gray-light);
   padding: var(--space-lg);
   border-radius: 12px;
   text-align: center;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   will-change: transform, box-shadow;
 }

 .why-choose-item:hover {
   transform: translateY(-4px);
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
 }

 .why-icon {
   --bb-blue: #0057E2;
   --bb-green: #90D14F;

   display: flex;
   align-items: center;
   justify-content: center;
   width: 64px;
   height: 64px;
   margin: 0 auto var(--space-lg);
   background: linear-gradient(135deg, var(--bb-blue) 0%, var(--bb-green) 100%);
   border-radius: 16px;
   box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   overflow: hidden; /* trims any off-center padding inside SVGs */
 }

 .why-icon svg {
   width: 75%;   /* scale icons proportionally */
   height: 75%;
   display: block;
   margin: auto;
   stroke: #fff;
   stroke-width: 2;
   fill: none;
 }

 .why-choose-item:hover .why-icon {
   transform: scale(1.1);
   box-shadow: 0 6px 20px rgba(0, 102, 255, 0.35);
 }

 /* ---------- Typography ---------- */
 .why-choose-item h3 {
   font-size: 1.25rem;
   font-weight: 600;
   margin-bottom: var(--space-sm);
   color: var(--gray-dark);
   transition: color 0.25s ease;
 }

 .why-choose-item p {
   font-size: 1rem;
   color: rgba(0, 0, 0, 0.65); /* more visible than before */
   line-height: 1.5;
   margin: 0;
   transition: color 0.25s ease;
 }

 .why-choose-item:hover h3 {
   color: var(--bb-blue);
 }

 .why-choose-item:hover p {
   color: rgba(0, 0, 0, 0.75);
 }

 /* ---------- Motion Respect ---------- */
 @media (prefers-reduced-motion: reduce) {
   .why-choose-item,
   .why-icon,
   .why-choose-item h3,
   .why-choose-item p {
     transition: none;
   }
 }

 .process-trust {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
    padding: var(--space-2xl);
    border-radius: 16px;
    border: 2px solid var(--primary-green);
}

.process-trust h3 {
    font-size: var(--font-size-2xl);
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.process-list {
    list-style: none;
    counter-reset: process-counter;
    margin-bottom: var(--space-xl);
}

.process-list li {
    counter-increment: process-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: var(--space-md);
    font-size: var(--font-size-base);
    color: var(--text-dark);
    line-height: 1.6;
}

.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-sm);
}

.trust-tagline {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    margin: 0;
}

/* Responsive breakpoints for why-choose section */
@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: var(--space-xl) 0;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .why-choose-item {
        padding: var(--space-md);
    }

    .why-icon {
        width: 56px;
        height: 56px;
    }

    .why-icon svg {
        width: 36px;
        height: 36px;
    }

    .why-choose-item h3 {
        font-size: var(--font-size-base);
    }

    .section-intro {
        font-size: var(--font-size-base);
    }

    .process-trust {
        padding: var(--space-xl);
    }
}

@media (max-width: 480px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .why-choose-item {
        padding: var(--space-sm);
    }
}

/* Enhanced Global Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    /* Typography */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    /* Spacing */
    .hero {
        min-height: 60vh;
    }

    .services-overview,
    .cta-section {
        padding: var(--space-xl) 0;
    }

    /* Buttons */
    .hero-cta {
        flex-direction: column;
        gap: var(--space-md);
    }

    .btn-large {
        font-size: var(--font-size-base);
        padding: var(--space-md) var(--space-lg);
    }

    /* Navigation */
    .nav-container {
        padding: var(--space-md) var(--space-lg);
    }

    .logo img {
        height: 32px;
    }

    .brand-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 var(--space-md);
    }

    /* Typography */
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Service Cards */
    .service-card {
        padding: var(--space-lg);
    }

    /* Forms */
    .form-row {
        flex-direction: column;
    }

    .form-group {
        width: 100%;
    }
}

/* Landscape phone orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    .hero-title {
        font-size: 1.75rem;
    }
}
