/* ============================================
   AAA HEDGE TRIMMING - MODERN DESIGN
   Dark/Light Theme with Custom Animation
   ============================================ */

:root {
    /* Dark Theme Colors (Default) */
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --bg-tertiary: #21262d;
    --text-primary: #f0f6fc;
    --text-secondary: #c9d1d9;
    --text-light: #8b949e;
    --accent: #52b788;
    --accent-light: #95d5b2;
    --accent-dark: #1b4332;
    --border: #30363d;
    --shadow: rgba(0, 0, 0, 0.4);
    --shadow-lg: rgba(0, 0, 0, 0.6);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Space Grotesk', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    
    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease;
}

[data-theme="dark"] {
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --bg-tertiary: #21262d;
    --text-primary: #f0f6fc;
    --text-secondary: #c9d1d9;
    --text-light: #8b949e;
    --accent: #52b788;
    --accent-light: #95d5b2;
    --accent-dark: #1b4332;
    --border: #30363d;
    --shadow: rgba(0, 0, 0, 0.4);
    --shadow-lg: rgba(0, 0, 0, 0.6);
}

[data-theme="light"] {
    /* Light Theme Colors - Enhanced Contrast */
    --bg-primary: #ffffff;
    --bg-secondary: #f5f7fa;
    --bg-tertiary: #e8ecf0;
    --text-primary: #0a0e14;
    --text-secondary: #2d3748;
    --text-light: #718096;
    --accent: #1b4332;
    --accent-light: #2d6a4f;
    --accent-dark: #0f281f;
    --border: #cbd5e0;
    --shadow: rgba(0, 0, 0, 0.12);
    --shadow-lg: rgba(0, 0, 0, 0.2);
}

/* Dark theme specific styles */
[data-theme="dark"] .service-card {
    background: var(--bg-tertiary);
    border-color: var(--accent);
}

[data-theme="dark"] .service-card:hover {
    background: var(--bg-secondary);
    border-color: var(--accent-light);
}

[data-theme="dark"] .review-card {
    background: var(--bg-tertiary);
    border-color: var(--accent);
}

[data-theme="dark"] .portfolio-item {
    border-color: var(--border);
}

[data-theme="dark"] .portfolio-item:hover {
    border-color: var(--accent);
}

[data-theme="dark"] .feature-box {
    background: var(--bg-tertiary);
    border-color: var(--border);
}

[data-theme="dark"] .contact-form {
    background: var(--bg-tertiary);
    border-color: var(--border);
}

/* Light theme specific styles - Enhanced visibility */
[data-theme="light"] .service-card {
    background: var(--bg-primary);
    border-color: var(--accent);
    border-width: 2px;
    box-shadow: 0 4px 12px var(--shadow);
}

[data-theme="light"] .service-card:hover {
    background: var(--bg-secondary);
    border-color: var(--accent-light);
    box-shadow: 0 8px 24px var(--shadow-lg);
}

[data-theme="light"] .service-content h3 {
    color: var(--text-primary);
    font-weight: 700;
}

[data-theme="light"] .service-content p {
    color: var(--text-secondary);
    font-weight: 500;
}

[data-theme="light"] .service-list li {
    color: var(--text-secondary);
    font-weight: 500;
}

[data-theme="light"] .review-card {
    background: var(--bg-primary);
    border-color: var(--accent);
    border-width: 2px;
    box-shadow: 0 4px 20px var(--shadow);
}

[data-theme="light"] .review-author {
    color: var(--text-primary);
    font-weight: 700;
}

[data-theme="light"] .review-text {
    color: var(--text-secondary);
    font-weight: 500;
}

[data-theme="light"] .portfolio-item {
    border-color: var(--border);
    border-width: 2px;
    box-shadow: 0 4px 12px var(--shadow);
}

[data-theme="light"] .portfolio-item:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px var(--shadow-lg);
}

[data-theme="light"] .feature-box {
    background: var(--bg-primary);
    border-color: var(--border);
    border-width: 2px;
    box-shadow: 0 4px 20px var(--shadow);
}

[data-theme="light"] .feature-box h3 {
    color: var(--text-primary);
    font-weight: 700;
}

[data-theme="light"] .feature-box p {
    color: var(--text-secondary);
    font-weight: 500;
}

[data-theme="light"] .contact-form {
    background: var(--bg-primary);
    border-color: var(--border);
    border-width: 2px;
    box-shadow: 0 8px 30px var(--shadow);
}

[data-theme="light"] .contact-info {
    background: var(--accent-dark);
    color: white;
}

[data-theme="light"] .section-title {
    color: var(--text-primary);
    font-weight: 700;
}

[data-theme="light"] .section-tag {
    color: var(--accent);
    font-weight: 700;
}

[data-theme="light"] .section-subtitle {
    color: var(--text-secondary);
    font-weight: 500;
}

[data-theme="light"] .stat-number {
    color: var(--accent);
    font-weight: 900;
}

[data-theme="light"] .stat-label {
    color: var(--text-secondary);
    font-weight: 600;
}

[data-theme="light"] .about-lead {
    color: var(--accent);
    font-weight: 600;
}

[data-theme="light"] .about-content p {
    color: var(--text-secondary);
    font-weight: 500;
}

[data-theme="light"] .form-group label {
    color: var(--text-primary);
    font-weight: 600;
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group textarea {
    background: var(--bg-primary);
    color: var(--text-primary);
    border-color: var(--border);
    border-width: 2px;
    font-weight: 500;
}

[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
}

[data-theme="light"] .main-nav {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 2px solid var(--border);
    box-shadow: 0 2px 10px var(--shadow);
}

[data-theme="light"] .nav-link {
    color: var(--text-primary);
    font-weight: 600;
}

[data-theme="light"] .brand-name {
    color: var(--accent);
}

[data-theme="light"] .brand-subtitle {
    color: var(--text-secondary);
    font-weight: 600;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color var(--transition), color var(--transition);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ============================================
   Theme Toggle - Custom Animation
   ============================================ */

.theme-toggle-wrapper {
    position: fixed;
    bottom: var(--space-md);
    left: var(--space-md);
    z-index: 1001;
}

.staff-panel-wrapper {
    position: fixed;
    bottom: var(--space-md);
    right: var(--space-md);
    z-index: 1001;
}

.staff-panel-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--bg-secondary);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    box-shadow: 0 4px 12px var(--shadow);
    text-decoration: none;
    color: var(--text-primary);
}

.staff-panel-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px var(--shadow-lg);
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.staff-panel-button svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

.theme-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--bg-secondary);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: 0 4px 12px var(--shadow);
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px var(--shadow-lg);
}

.theme-toggle-inner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: var(--text-primary);
}

.sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

[data-theme="dark"] .sun-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

[data-theme="dark"] .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 2;
}

/* ============================================
   Navigation
   ============================================ */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .main-nav {
    background: rgba(13, 17, 23, 0.8);
}

.main-nav.scrolled {
    box-shadow: 0 4px 20px var(--shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-sm) var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-left: var(--space-md);
    padding-left: var(--space-md);
    border-left: 1px solid var(--border);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--text-primary);
    background: var(--bg-secondary);
    transition: all var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
}

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

.nav-contact {
    display: flex;
    align-items: center;
    margin-left: var(--space-md);
    padding-left: var(--space-md);
    border-left: 1px solid var(--border);
}

.nav-phone,
.nav-email {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition);
    white-space: nowrap;
}

.nav-phone:hover,
.nav-email:hover {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-md);
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: var(--space-xs) var(--space-sm);
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

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

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

.nav-link.active {
    color: var(--accent);
    font-weight: 600;
}

.nav-link.active::after {
    width: 80%;
}

.btn-nav {
    background: var(--accent);
    color: white;
    border-radius: 6px;
    padding: var(--space-xs) var(--space-md);
}

.btn-nav::after {
    display: none;
}

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

.btn-nav.active {
    background: var(--accent);
    color: white;
    font-weight: 600;
    opacity: 1;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.85) 0%, rgba(27, 67, 50, 0.9) 100%);
    z-index: 1;
}

[data-theme="dark"] .hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(27, 67, 50, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 var(--space-md);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: var(--space-xs) var(--space-md);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.title-word {
    display: inline-block;
    animation: fadeInUp 0.8s ease-out;
    margin: 0 0.2em;
}

.title-word:nth-child(2) {
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.title-word:nth-child(3) {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: transform var(--transition);
}

.contact-phone:hover {
    transform: scale(1.05);
}

.service-areas {
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-controls {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.hero-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-nav-btn svg {
    width: 24px;
    height: 24px;
}

.hero-indicators {
    display: flex;
    gap: var(--space-xs);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    padding: var(--space-sm) var(--space-lg);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 106, 79, 0.3);
}

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

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

.btn-full {
    width: 100%;
    text-align: center;
}

/* ============================================
   Sections
   ============================================ */

.section {
    padding: var(--space-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   About Section
   ============================================ */

.about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.about-lead {
    font-size: 1.25rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.about-content p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 2px solid var(--border);
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: var(--space-xs);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature-box {
    background: var(--bg-primary);
    padding: var(--space-lg);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.feature-box h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.feature-box p {
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   Animation Demo
   ============================================ */

.animation-demo {
    background: var(--bg-primary);
}

.demo-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.animation-box {
    max-width: 900px;
    margin: 0 auto;
    height: 400px;
    position: relative;
}

.garden-scene {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-lg);
    border: 1px solid var(--border);
}

.scene-sky {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, #87ceeb 0%, #b0e0e6 100%);
}

.scene-ground {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, #8b7355 0%, #a0826d 100%);
}

.hedge-row {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 0 var(--space-md);
}

.hedge-plant {
    width: 120px;
    height: 120px;
    background: linear-gradient(to top, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-light) 100%);
    border-radius: 50% 50% 40% 40%;
    position: relative;
    box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.3);
}

.hedge-plant::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 30px;
    background: var(--accent);
    border-radius: 50%;
}

.worker-figure {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    animation: moveWorker 6s ease-in-out infinite;
}

.worker-head {
    width: 45px;
    height: 45px;
    background: #fdbcb4;
    border-radius: 50%;
    margin: 0 auto 5px;
    border: 2px solid #333;
}

.worker-body {
    width: 55px;
    height: 70px;
    background: var(--accent);
    margin: 0 auto;
    border-radius: 4px;
    position: relative;
}

.worker-arm-left {
    position: absolute;
    top: 15px;
    left: -40px;
    width: 80px;
    height: 12px;
    background: #fdbcb4;
    border-radius: 6px;
    transform-origin: right center;
    animation: trimMotion 2s ease-in-out infinite;
}

.trimmer {
    position: absolute;
    left: -100px;
    top: -8px;
}

.trimmer-handle {
    width: 60px;
    height: 10px;
    background: #333;
    border-radius: 5px;
}

.trimmer-blade {
    width: 90px;
    height: 15px;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.worker-arm-right {
    position: absolute;
    top: 15px;
    right: -30px;
    width: 50px;
    height: 12px;
    background: #fdbcb4;
    border-radius: 6px;
}

.worker-legs {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.leg {
    width: 14px;
    height: 35px;
    background: #1a1a1a;
    border-radius: 2px;
}

@keyframes moveWorker {
    0%, 100% {
        transform: translateX(-50%) translateX(-200px);
    }
    50% {
        transform: translateX(-50%) translateX(200px);
    }
}

@keyframes trimMotion {
    0%, 100% {
        transform: rotate(-20deg);
    }
    50% {
        transform: rotate(20deg);
    }
}

/* ============================================
   Services Section
   ============================================ */

.services {
    background: var(--bg-secondary);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.service-card {
    padding: var(--space-lg);
    background: var(--bg-primary);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 2px 8px var(--shadow);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-lg);
    border-left-color: var(--accent-light);
}

.service-content h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.service-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.service-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xs);
}

.service-list li {
    color: var(--text-secondary);
    position: relative;
    padding-left: var(--space-md);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* ============================================
   Portfolio Section
   ============================================ */

.portfolio {
    background: var(--bg-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.portfolio-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px var(--shadow-lg);
    border-color: var(--accent);
}

.portfolio-item::before {
    content: 'View Full Size';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(45, 106, 79, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 2;
    pointer-events: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.portfolio-item::after {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    vertical-align: middle;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-overlay {
    display: none;
}

.portfolio-cta {
    text-align: center;
}

/* ============================================
   Reviews Section
   ============================================ */

.reviews {
    background: var(--bg-secondary);
}

.reviews-footer {
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
    margin-top: var(--space-md);
    text-align: center;
}

.reviews-footer .btn-outline {
    border-color: var(--accent);
    color: var(--accent);
}

.reviews-footer .btn-outline:hover {
    background: var(--accent);
    color: white;
}

.reviews-footer .btn-outline .star-icon {
    color: inherit;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.review-card {
    background: var(--bg-primary);
    padding: var(--space-lg);
    border-radius: 12px;
    border-top: 4px solid var(--accent);
    box-shadow: 0 4px 20px var(--shadow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.review-author {
    font-weight: 600;
    color: var(--text-primary);
}

.review-rating {
    color: #ffc107;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 2px;
}

.star-icon {
    color: #ffc107;
    fill: currentColor;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--space-sm);
}

.review-date {
    font-size: 0.875rem;
    color: var(--text-light);
}

.reviews-loading {
    text-align: center;
    padding: var(--space-xl);
    grid-column: 1 / -1;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    margin: 0 auto var(--space-sm);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: var(--space-xl) 0;
}

.contact-content {
    max-width: 1000px;
    margin: var(--space-xl) auto 0;
}

.contact-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact-info-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    box-shadow: 0 4px 20px var(--shadow);
}

.contact-info-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-md);
    border-radius: 12px;
    transition: background var(--transition);
}

.contact-info-item:hover {
    background: var(--bg-tertiary);
}

.contact-icon-wrapper {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(82, 183, 136, 0.3);
}

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

.contact-info-text {
    flex: 1;
}

.contact-info-text h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 var(--space-xs) 0;
    font-family: var(--font-secondary);
}

.contact-value {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
    transition: color var(--transition);
    word-break: break-word;
    line-height: 1.4;
}

.contact-value:hover {
    color: var(--accent);
}

.service-areas-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: var(--space-xl);
    border: 2px solid var(--border);
    box-shadow: 0 4px 20px var(--shadow);
    position: sticky;
    top: 100px;
}

.service-areas-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid var(--border);
}

.service-icon-wrapper {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(82, 183, 136, 0.3);
}

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

.service-areas-title-group {
    flex: 1;
}

.service-areas-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 var(--space-xs) 0;
    color: var(--text-primary);
    font-family: var(--font-secondary);
}

.service-areas-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

.service-areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.service-area-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-primary);
    border: 2px solid var(--accent);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent);
    transition: all var(--transition);
    cursor: default;
    white-space: nowrap;
}

.service-area-badge:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(82, 183, 136, 0.3);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-light);
    flex-shrink: 0;
}

.contact-item h4 {
    color: white;
    margin-bottom: var(--space-xs);
    font-size: 1.125rem;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color var(--transition);
}

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

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-form {
    background: var(--bg-secondary);
    padding: var(--space-xl);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm);
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: var(--space-xs);
}

.form-message {
    padding: var(--space-sm);
    border-radius: 8px;
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Quote Notification Toast */
.quote-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    min-width: 300px;
    max-width: 400px;
    padding: var(--space-md) var(--space-lg);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.quote-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.quote-notification.success {
    background: linear-gradient(135deg, #52b788, #40916c);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-notification.error {
    background: linear-gradient(135deg, #e63946, #d62828);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    font-size: 1rem;
}

.notification-content svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .quote-notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .quote-notification.show {
        transform: translateY(0);
    }
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--bg-tertiary);
    padding: var(--space-xl) 0 var(--space-md);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 0;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: var(--space-sm);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.staff-panel-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-primary);
    text-decoration: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: 8px;
    transition: all var(--transition);
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    box-shadow: 0 2px 8px var(--shadow);
}

.staff-panel-link:hover {
    color: white;
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(82, 183, 136, 0.3);
}

.staff-panel-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* ============================================
   Animations
   ============================================ */

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

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    20%, 80% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* ============================================
   Lightbox
   ============================================ */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-caption {
    color: white;
    margin-top: var(--space-md);
}

.lightbox-caption h3 {
    color: white;
    font-size: 1.5rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

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

.portfolio-header {
    padding-top: calc(var(--space-xl) + 80px);
    background: var(--bg-secondary);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 968px) {
    .nav-social,
    .nav-contact {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: var(--space-md);
        transform: translateX(-100%);
        transition: transform var(--transition);
        box-shadow: 0 4px 20px var(--shadow);
        border-top: 1px solid var(--border);
    }

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

    .mobile-menu-btn {
        display: flex;
    }

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

    .contact-main {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .service-areas-card {
        position: static;
        order: -1;
    }

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

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

    .service-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 2.5rem;
        --space-lg: 1.5rem;
        --space-md: 1rem;
    }

    /* Container & Spacing */
    .container {
        padding: 0 var(--space-sm);
    }

    /* Navigation Mobile */
    .nav-container {
        padding: var(--space-xs) var(--space-sm);
    }

    .nav-logo {
        width: 40px;
        height: 40px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .brand-subtitle {
        font-size: 0.65rem;
    }

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

    .nav-link {
        padding: var(--space-sm);
        font-size: 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Hero Mobile */
    .hero {
        min-height: 100vh;
        height: 100vh;
        max-height: 100vh;
    }

    .hero-content {
        padding: var(--space-lg) var(--space-sm);
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        margin-bottom: var(--space-md);
    }

    .hero-text {
        font-size: 1rem;
        margin-bottom: var(--space-lg);
        padding: 0 var(--space-sm);
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--space-sm);
        width: 100%;
        padding: 0 var(--space-sm);
    }

    .btn {
        width: 100%;
        padding: var(--space-sm) var(--space-md);
        font-size: 1rem;
        min-height: 48px;
    }

    .hero-controls {
        flex-direction: row;
        gap: var(--space-xs);
        padding: var(--space-sm);
    }

    .hero-nav-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .hero-nav-btn svg {
        width: 20px;
        height: 20px;
    }

    .hero-indicators {
        gap: 3px;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
        border-width: 1px;
    }
    
    .indicator.active {
        transform: scale(1.15);
        border-width: 1.5px;
    }

    .hero-contact {
        flex-direction: column;
        gap: var(--space-sm);
        padding: 0 var(--space-sm);
    }

    .contact-phone {
        font-size: 1.125rem;
        padding: var(--space-sm);
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-areas {
        font-size: 0.875rem;
        text-align: center;
        line-height: 1.5;
    }

    /* Sections Mobile */
    .section {
        padding: var(--space-xl) 0;
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* About Section Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .stat-card {
        padding: var(--space-md);
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .service-card {
        grid-template-columns: 60px 1fr;
        gap: var(--space-md);
        padding: var(--space-md);
    }

    .service-number {
        font-size: 2rem;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    /* Portfolio Mobile */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .portfolio-item {
        min-height: 250px;
    }

    /* Contact Mobile */
    .contact-main {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .service-areas-card {
        position: static;
        padding: var(--space-lg);
        order: -1;
    }
    
    .contact-info-card {
        padding: var(--space-lg);
    }
    
    .contact-info-item {
        padding: var(--space-md);
        gap: var(--space-md);
    }
    
    .contact-icon-wrapper {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }
    
    .contact-icon-wrapper svg {
        width: 26px;
        height: 26px;
    }
    
    .contact-value {
        font-size: 1.125rem;
        word-break: break-word;
    }

    .contact-info-text h3 {
        font-size: 0.8125rem;
    }
    
    .service-areas-header {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
        padding-bottom: var(--space-md);
    }
    
    .service-icon-wrapper {
        width: 48px;
        height: 48px;
        margin: 0 auto;
    }
    
    .service-icon-wrapper svg {
        width: 24px;
        height: 24px;
    }
    
    .service-areas-card h3 {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .service-areas-subtitle {
        text-align: center;
        font-size: 0.8125rem;
    }
    
    .service-areas-list {
        justify-content: center;
        gap: var(--space-xs);
    }
    
    .service-area-badge {
        font-size: 0.875rem;
        padding: var(--space-xs) var(--space-sm);
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Reviews Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .review-card {
        padding: var(--space-md);
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }

    .footer {
        padding: var(--space-xl) 0 var(--space-lg);
    }

    /* Theme Toggle Mobile */
    .theme-toggle-wrapper {
        bottom: var(--space-sm);
        left: var(--space-sm);
    }

    .theme-toggle {
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
    }

    .staff-panel-wrapper {
        bottom: var(--space-sm);
        right: var(--space-sm);
    }

    .staff-panel-button {
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
    }

    .staff-panel-button svg {
        width: 24px;
        height: 24px;
    }

    /* Buttons Mobile */
    .btn-primary,
    .btn-outline {
        min-height: 48px;
        font-size: 1rem;
        padding: var(--space-sm) var(--space-lg);
    }

    /* Text Mobile */
    p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Section Headers Mobile */
    .section-header {
        text-align: center;
        margin-bottom: var(--space-lg);
    }

    /* Touch Targets - Ensure minimum 44x44px */
    a, button {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    /* Images Mobile */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Lightbox Mobile */
    .lightbox-content {
        padding: var(--space-md);
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
}
