/* ===================================
   GREENFIELD LANDSCAPING - PROFESSIONAL WEBSITE
   Modern, Clean, Professional Design
   =================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Modern Nature (Deep Teal-Greens) */
    --primary-dark: #1B4332;
    --primary: #2D5A45;
    --primary-light: #40725A;
    --primary-lighter: #588B6E;

    /* Accent Colors - Rich Gold */
    --accent: #C9A227;
    --accent-light: #DAB84D;
    --accent-dark: #A68A1F;

    /* Neutrals */
    --dark: #1a1a1a;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;

    /* Background & Surface Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --surface: #ffffff;
    --surface-elevated: #ffffff;

    /* Text Colors */
    --text-primary: #212529;
    --text-secondary: #495057;
    --text-muted: #6c757d;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-md: 0 6px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);

    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Theme Transition */
    --theme-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* ===================================
   SEASONAL THEMES
   =================================== */
/* Spring Theme - Fresh growth with warm amber accents */
[data-season="spring"] {
    --primary-dark: #1F5240;
    --primary: #2E6B52;
    --primary-light: #458567;
    --primary-lighter: #5FA07D;
    --accent: #D4A843;
    --accent-light: #E2BE5A;
    --accent-dark: #B8912E;
}

/* Summer Theme - Lush and vibrant with sunny gold */
[data-season="summer"] {
    --primary-dark: #1B4332;
    --primary: #2D5A45;
    --primary-light: #40725A;
    --primary-lighter: #588B6E;
    --accent: #E8B830;
    --accent-light: #F0CA55;
    --accent-dark: #CCA020;
}

/* Fall Theme - Warm earth tones with copper accents */
[data-season="fall"] {
    --primary-dark: #3D4A35;
    --primary: #536145;
    --primary-light: #6A7858;
    --primary-lighter: #828F6C;
    --accent: #C67B4E;
    --accent-light: #D99A70;
    --accent-dark: #A86238;
}

/* Winter Theme - Deep evergreen with gold (same as default) */
[data-season="winter"] {
    --primary-dark: #1B4332;
    --primary: #2D5A45;
    --primary-light: #40725A;
    --primary-lighter: #588B6E;
    --accent: #C9A227;
    --accent-light: #DAB84D;
    --accent-dark: #A68A1F;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: var(--theme-transition);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    transition: var(--theme-transition);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-lg {
    padding: 18px 40px;
    font-size: 15px;
}

.btn-block {
    width: 100%;
}

.btn-nav {
    padding: 12px 24px;
    background: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
}

.btn-nav:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(45, 106, 79, 0.1);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-600);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--white);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.navbar.scrolled .logo-text,
.navbar.scrolled .nav-menu a {
    color: var(--gray-900);
}

.navbar.scrolled .nav-toggle span {
    background: var(--gray-900);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    flex-shrink: 0;
    padding: 4px;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    position: relative;
}

.nav-menu a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-menu a:not(.btn):hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url("images/hero-bg.jpg") center center / cover no-repeat;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.85) 0%, rgba(45, 106, 79, 0.75) 50%, rgba(64, 145, 108, 0.65) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, transparent 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero h1 .highlight {
    color: var(--accent-light);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   TRUST BAR
   =================================== */
.trust-bar {
    background: var(--gray-100);
    padding: 30px 0;
    border-bottom: 1px solid var(--gray-300);
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
}

.trust-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.service-content p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.service-link svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* ===================================
   HOW IT WORKS / PROCESS SECTION
   =================================== */
.process {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-step {
    text-align: center;
    max-width: 240px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.step-icon svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.process-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(45, 90, 69, 0.3);
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.process-step p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    flex-shrink: 0;
    width: 60px;
}

.process-connector svg {
    width: 24px;
    height: 24px;
    color: var(--gray-400);
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.about-content .lead {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.about-content > p {
    color: var(--gray-600);
    margin-bottom: 32px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.value h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.value p {
    font-size: 14px;
    color: var(--gray-600);
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.placeholder-image {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.placeholder-image svg {
    width: 80px;
    height: 80px;
    color: rgba(255,255,255,0.5);
}

.placeholder-image span {
    color: rgba(255,255,255,0.7);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 140px;
    height: 140px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

/* Filter Tabs */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-xl);
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.85));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.gallery-info h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 4px;
}

.gallery-info p {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    margin: 0;
}

.gallery-zoom {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: scale(1);
}

.gallery-zoom:hover {
    background: var(--primary);
}

.gallery-zoom:hover svg {
    color: var(--white);
}

.gallery-zoom svg {
    width: 20px;
    height: 20px;
    color: var(--gray-700);
    transition: var(--transition);
}

/* Gallery CTA */
.gallery-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.gallery-cta p {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 20px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.lightbox-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-caption {
    text-align: center;
    margin-top: 20px;
}

.lightbox-caption h4 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 8px;
}

.lightbox-caption p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

.gallery-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--gray-300) 0%, var(--gray-400) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.gallery-placeholder svg {
    width: 50px;
    height: 50px;
    color: rgba(255,255,255,0.5);
}

.gallery-placeholder span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder span {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--white);
}

/* Google Rating Badge */
.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-top: 20px;
}

.google-icon {
    width: 18px;
    height: 18px;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-stars {
    display: flex;
    gap: 1px;
}

.rating-stars svg {
    width: 14px;
    height: 14px;
    color: #FBBC05;
}

.rating-text {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
}

/* Testimonial Carousel */
.testimonial-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
}

.carousel-nav {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.carousel-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    color: var(--gray-700);
    transition: var(--transition);
}

.carousel-nav:hover svg {
    color: var(--white);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background: var(--gray-300);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot:hover {
    background: var(--gray-400);
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Auto-rotate indicator */
.carousel-auto-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray-500);
}

.auto-indicator-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Testimonial Card */
.testimonial-card {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.stars svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.author-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--gray-900);
}

.author-info span {
    font-size: 13px;
    color: var(--gray-600);
}

/* ===================================
   SERVICE AREAS SECTION
   =================================== */
.service-areas {
    padding: 60px 0;
    background: var(--primary-dark);
}

.areas-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.areas-text {
    max-width: 400px;
}

.areas-text .section-tag {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.areas-text h2 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 12px;
}

.areas-text p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
    justify-content: flex-end;
}

.area-tag {
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.area-tag:hover {
    background: rgba(255,255,255,0.2);
}

/* ===================================
   WEBSITE UPGRADE PITCH SECTION
   =================================== */
.upgrade-pitch {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
}

.upgrade-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.upgrade-text .section-tag {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.upgrade-text h2 {
    font-size: 34px;
    color: var(--white);
    margin-bottom: 16px;
}

.upgrade-text p {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    line-height: 1.7;
}

.upgrade-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.upgrade-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.upgrade-feature:hover {
    background: rgba(255,255,255,0.18);
    transform: translateX(4px);
}

.upgrade-feature svg {
    width: 28px;
    height: 28px;
    color: var(--accent-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.upgrade-feature h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 4px;
}

.upgrade-feature p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-tag {
    margin-bottom: 16px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 40px;
    font-size: 17px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

a.contact-method:hover {
    background: var(--primary);
}

a.contact-method:hover * {
    color: var(--white);
}

a.contact-method:hover .method-icon {
    background: rgba(255,255,255,0.2);
}

.method-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.method-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.method-label {
    display: block;
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 4px;
    transition: var(--transition);
}

.method-text strong {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--gray-900);
    transition: var(--transition);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 50px;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-900);
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 48px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    margin-top: 10px;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 16px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand > p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
}

.social-links svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--accent);
}

.footer-contact a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-600);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 1001;
    width: 0%;
    transition: width 0.1s linear;
}

/* ===================================
   MICRO-INTERACTIONS & ANIMATIONS
   =================================== */
/* Button Hover Effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Counter Animation */
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-number.animate {
    animation: countUp 0.5s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Hover Effects */
.service-card,
.testimonial-card,
.gallery-item {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.experience-badge {
    animation: float 4s ease-in-out infinite;
}

/* Parallax Effect Class */
.parallax-element {
    will-change: transform;
}

/* Section Fade In */
.section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   TYPOGRAPHY ENHANCEMENTS
   =================================== */
/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Text Shadow for Dark Backgrounds */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* ===================================
   VISUAL POLISH - GLASSMORPHISM
   =================================== */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Subtle Texture Overlay */
.texture-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* ===================================
   BACK TO TOP BUTTON
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ===================================
   FORM SUCCESS STATE
   =================================== */
.form-success {
    text-align: center;
    padding: 60px 30px;
    animation: fadeInUp 0.5s ease;
}

.form-success svg {
    width: 64px;
    height: 64px;
    color: var(--primary);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.form-success p {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.7;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   ACTIVE NAV STATE
   =================================== */
.nav-menu a.active:not(.btn)::after {
    width: 100%;
}

/* ===================================
   TESTIMONIAL AVATAR SVG
   =================================== */
.author-avatar svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 48px;
    }

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

    .about-grid {
        gap: 60px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .process-grid {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .process-connector {
        display: none;
    }

    .process-step {
        max-width: 200px;
    }

    .upgrade-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-carousel {
        gap: 15px;
    }

    .carousel-nav {
        width: 44px;
        height: 44px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }

    /* Scroll Progress - Mobile */
    .scroll-progress {
        height: 2px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 0;
        transition: var(--transition-slow);
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        color: var(--gray-900);
        padding: 16px 0;
        border-bottom: 1px solid var(--gray-200);
        width: 100%;
    }

    .nav-menu a:not(.btn)::after {
        display: none;
    }

    .nav-menu .btn-nav {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        min-height: auto;
        padding: 160px 0 100px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .trust-items {
        flex-direction: column;
        gap: 20px;
    }

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

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

    .about-image {
        order: -1;
    }

    .experience-badge {
        bottom: -20px;
        left: auto;
        right: 20px;
        width: 100px;
        height: 100px;
    }

    .experience-badge .years {
        font-size: 32px;
    }

    .gallery-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 11px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-item.large {
        grid-column: span 2;
    }

    .gallery-overlay {
        padding: 16px;
    }

    .gallery-info h4 {
        font-size: 14px;
    }

    .gallery-info p {
        font-size: 11px;
    }

    .gallery-zoom {
        width: 36px;
        height: 36px;
        top: 10px;
        right: 10px;
    }

    .gallery-cta {
        padding: 30px 20px;
    }

    .gallery-cta p {
        font-size: 16px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
    }

    .testimonial-carousel {
        flex-direction: column;
        gap: 20px;
    }

    .carousel-nav {
        display: none;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .google-rating {
        gap: 6px;
        padding: 6px 12px;
    }

    .google-icon {
        width: 16px;
        height: 16px;
    }

    .rating-stars svg {
        width: 12px;
        height: 12px;
    }

    .rating-text {
        font-size: 11px;
    }

    .process-grid {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        max-width: 100%;
    }

    .upgrade-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .upgrade-text {
        text-align: center;
    }

    .upgrade-text h2 {
        font-size: 28px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .areas-content {
        flex-direction: column;
        text-align: center;
    }

    .areas-list {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
    }

    .container {
        padding: 0 16px;
    }

    /* Disable parallax and video on mobile for performance */
    .hero {
        background-attachment: scroll !important;
    }

    .hero-video {
        display: none;
    }

    /* Hero Section - iPhone */
    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hero-badge {
        padding: 8px 16px;
        font-size: 11px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
        line-height: 1.6;
    }

    .hero-cta {
        margin-bottom: 40px;
    }

    .hero-cta .btn {
        padding: 16px 24px;
        font-size: 14px;
    }

    .hero-stats {
        padding-top: 28px;
        gap: 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Logo - iPhone */
    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .logo-text {
        font-size: 16px;
    }

    /* Navigation - iPhone */
    .nav-menu {
        width: 85%;
        padding: 80px 24px 32px;
    }

    .nav-menu a {
        padding: 14px 0;
        font-size: 15px;
    }

    /* Trust Bar - iPhone */
    .trust-bar {
        padding: 20px 0;
    }

    .trust-items {
        gap: 16px;
    }

    .trust-item {
        font-size: 12px;
        gap: 8px;
    }

    .trust-item svg {
        width: 20px;
        height: 20px;
    }

    /* Section Headers - iPhone */
    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .section-header p {
        font-size: 15px;
    }

    .section-tag {
        padding: 6px 14px;
        font-size: 10px;
        margin-bottom: 12px;
    }

    /* Process - iPhone */
    .step-icon {
        width: 64px;
        height: 64px;
    }

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

    .process-step h3 {
        font-size: 16px;
    }

    .process-step p {
        font-size: 13px;
    }

    /* Upgrade Pitch - iPhone */
    .upgrade-pitch {
        padding: 50px 0;
    }

    .upgrade-text h2 {
        font-size: 24px;
    }

    .upgrade-text p {
        font-size: 15px;
    }

    .upgrade-feature {
        padding: 16px;
    }

    .upgrade-feature svg {
        width: 24px;
        height: 24px;
    }

    .upgrade-feature h4 {
        font-size: 15px;
    }

    .upgrade-feature p {
        font-size: 13px;
    }

    /* Services - iPhone */
    .services-grid {
        gap: 20px;
    }

    .service-card {
        border-radius: var(--radius-md);
    }

    .service-image {
        height: 180px;
    }

    .service-content {
        padding: 20px;
    }

    .service-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .service-content p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .service-link {
        font-size: 12px;
    }

    /* About Section - iPhone */
    .about-content h2 {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .about-content .lead {
        font-size: 15px;
    }

    .about-content > p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .about-values {
        gap: 20px;
    }

    .value {
        gap: 12px;
    }

    .value-icon {
        width: 42px;
        height: 42px;
    }

    .value-icon svg {
        width: 20px;
        height: 20px;
    }

    .value h4 {
        font-size: 15px;
    }

    .value p {
        font-size: 13px;
    }

    .experience-badge {
        width: 80px;
        height: 80px;
        bottom: -15px;
        right: 15px;
    }

    .experience-badge .years {
        font-size: 26px;
    }

    .experience-badge .text {
        font-size: 9px;
    }

    /* Gallery Section - iPhone */
    .gallery-filters {
        gap: 6px;
        margin-bottom: 24px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 10px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(transparent 50%, rgba(0,0,0,0.75));
    }

    .gallery-info {
        transform: translateY(0);
    }

    .gallery-info h4 {
        font-size: 15px;
    }

    .gallery-info p {
        font-size: 12px;
    }

    .gallery-category {
        font-size: 9px;
        padding: 3px 10px;
    }

    .gallery-zoom {
        opacity: 1;
        width: 40px;
        height: 40px;
        top: 12px;
        right: 12px;
    }

    .gallery-cta {
        padding: 24px 16px;
        margin-top: 30px;
    }

    .gallery-cta p {
        font-size: 15px;
        margin-bottom: 16px;
    }

    /* Lightbox - iPhone */
    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-content img {
        max-height: 65vh;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 36px;
        height: 36px;
    }

    .lightbox-prev svg,
    .lightbox-next svg {
        width: 18px;
        height: 18px;
    }

    .lightbox-caption h4 {
        font-size: 18px;
    }

    .lightbox-caption p {
        font-size: 13px;
    }

    /* Testimonials - iPhone */
    .testimonial-card {
        padding: 24px;
    }

    .stars {
        margin-bottom: 16px;
    }

    .stars svg {
        width: 18px;
        height: 18px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .testimonial-author {
        gap: 12px;
    }

    .author-avatar {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }

    .author-info strong {
        font-size: 14px;
    }

    .author-info span {
        font-size: 12px;
    }

    .carousel-dots {
        gap: 8px;
        margin-top: 24px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .carousel-auto-indicator {
        font-size: 11px;
        margin-top: 12px;
    }

    /* Service Areas - iPhone */
    .service-areas {
        padding: 40px 0;
    }

    .areas-text h2 {
        font-size: 22px;
    }

    .areas-text p {
        font-size: 14px;
    }

    .areas-list {
        gap: 8px;
    }

    .area-tag {
        padding: 8px 14px;
        font-size: 11px;
    }

    /* Contact Section - iPhone */
    .contact-info h2 {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .contact-info > p {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .contact-methods {
        gap: 16px;
    }

    .contact-method {
        padding: 16px;
        gap: 14px;
    }

    .method-icon {
        width: 48px;
        height: 48px;
    }

    .method-icon svg {
        width: 22px;
        height: 22px;
    }

    .method-label {
        font-size: 12px;
    }

    .method-text strong {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 24px 20px;
        border-radius: var(--radius-md);
    }

    .contact-form h3 {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group label {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents iOS zoom on focus */
        border-radius: var(--radius);
    }

    .form-group textarea {
        min-height: 100px;
    }

    .contact-form .btn {
        padding: 16px;
        font-size: 14px;
    }

    .form-note {
        font-size: 12px;
    }

    /* Footer - iPhone */
    .footer {
        padding: 50px 0 0;
    }

    .footer-grid {
        gap: 32px;
        padding-bottom: 40px;
    }

    .footer-brand > p {
        font-size: 14px;
    }

    .social-links a {
        width: 44px;
        height: 44px;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .footer-links ul {
        gap: 10px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-contact p {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 24px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    /* Buttons - iPhone touch targets */
    .btn {
        min-height: 48px;
        padding: 14px 28px;
    }

    .btn-lg {
        padding: 16px 32px;
    }
}

/* Extra small screens (iPhone SE, small devices) */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .stat-number {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 9px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .contact-info h2 {
        font-size: 22px;
    }

    .areas-text h2 {
        font-size: 20px;
    }
}
