/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2f;
    --accent-green: #6da03c;
    --light-green: #8bc34a;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f7f5;
    /* Cream & gold (used in services + contact) */
    --cream: #faf8f5;
    --cream-dark: #f0ebe3;
    --gold: #b8860b;
    --gold-light: #d4af37;
    --gold-bright: #e5c76b;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

/* Loading screen */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.loading-screen--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-screen-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* White card so logo’s white background blends in */
.loading-screen-logo-card {
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(45, 80, 22, 0.08), 0 0 0 1px rgba(45, 80, 22, 0.06);
}

.loading-screen-logo {
    display: block;
    max-width: 280px;
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: loading-screen-pulse 1.5s ease-in-out infinite;
}

.loading-screen-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(45, 80, 22, 0.2);
    border-top-color: var(--primary-green);
    border-radius: 50%;
    animation: loading-screen-spin 0.9s linear infinite;
}

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

@keyframes loading-screen-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.02); }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Wider container only for navbar, services, and portfolio (before/after) */
.navbar .container,
.services .container,
.portfolio .container {
    max-width: 1440px;
}

/* Top Bar – hidden when using single navbar (index); kept for other pages that may still use it) */
.top-bar {
    display: none;
}
.top-bar.visible {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-bg) 100%);
    color: var(--white);
    z-index: 1001;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

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

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: var(--secondary-green);
    box-shadow: var(--shadow);
}

.top-bar-phone:hover {
    background: var(--accent-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.top-bar-phone svg {
    width: 16px;
    height: 16px;
}


.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.top-bar-social-icon:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.top-bar-social-icon svg {
    width: 14px;
    height: 14px;
}

.top-bar .lang-bubble-btn {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

.top-bar .lang-bubble-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.top-bar .lang-flag {
    font-size: 1rem;
}

.top-bar .lang-dropdown {
    top: calc(100% + 8px);
}

/* Navigation – single bar at top (no top bar) */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1001;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}


/* Desktop: phone + language in navbar */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--secondary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-cta-phone:hover {
    background: var(--accent-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-cta-phone svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.nav-cta .lang-bubble-btn {
    background: var(--light-bg);
    color: var(--primary-green);
    border: 2px solid rgba(45, 80, 22, 0.2);
}

.nav-cta .lang-bubble-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 20px;
    gap: 2rem;
}

.navbar .container > * {
    flex-shrink: 0;
}

/* Logo + social grouped with comfortable spacing */
.nav-brand-area {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.nav-brand-area .nav-brand .logo {
    padding-right: 6px;
}

.nav-social-vertical {
    margin-left: 0.9rem; /* a little more to the right */
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Social icons to the right of logo – use codebase colors so they blend in */
.nav-social-vertical {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
}

.nav-social-vertical .nav-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(45, 80, 22, 0.15);
    text-decoration: none;
    background: var(--light-bg);
    color: var(--primary-green);
}

.nav-social-vertical .nav-social-icon svg {
    width: 16px;
    height: 16px;
}

.nav-social-vertical .nav-social-icon:hover {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.25);
}

.nav-social-vertical .nav-social-icon:nth-child(1),
.nav-social-vertical .nav-social-icon:nth-child(2),
.nav-social-vertical .nav-social-icon:nth-child(3) {
    background: var(--light-bg);
    color: var(--primary-green);
    border-color: rgba(45, 80, 22, 0.15);
}
.nav-social-vertical .nav-social-icon:nth-child(1):hover,
.nav-social-vertical .nav-social-icon:nth-child(2):hover,
.nav-social-vertical .nav-social-icon:nth-child(3):hover {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.nav-menu-wrapper {
    background: var(--light-bg);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-brand .logo {
    height: 115px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(1.02) contrast(1.05);
    background: #ffffff;
    padding: 5px 10px;
    border-radius: 8px;
}

.nav-brand .logo:hover {
    transform: scale(1.05);
}

.nav-brand h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--secondary-green);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu a:hover {
    color: var(--primary-green);
    transform: translateY(-2px);
}

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

.nav-menu a:active {
    transform: translateY(0) scale(0.95);
}

/* Leaf animation on click */
/* Nav click leaf animation */
@keyframes leafFloat1 {
    0% {
        opacity: 0;
        transform: translateY(-10px) translateX(-50%) rotate(0deg) scale(0.5);
    }
    15% {
        opacity: 1;
        transform: translateY(0) translateX(-50%) rotate(15deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(50px) translateX(calc(-50% + 25px)) rotate(100deg) scale(0.6);
    }
}

@keyframes leafFloat2 {
    0% {
        opacity: 0;
        transform: translateY(-10px) translateX(-50%) rotate(0deg) scale(0.5);
    }
    15% {
        opacity: 1;
        transform: translateY(0) translateX(-50%) rotate(-15deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(50px) translateX(calc(-50% - 25px)) rotate(-100deg) scale(0.6);
    }
}

.nav-menu li {
    position: relative;
}

.nav-menu li.nav-clicked::before,
.nav-menu li.nav-clicked::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 16px;
    height: 16px;
    pointer-events: none;
    z-index: 10;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232d5016'%3E%3Cpath d='M17 8C8 10 5.9 16.17 3.82 21.34l1.89.66.95-2.3c.48.17.98.3 1.34.3C19 20 22 3 22 3c-1 2-8 2.25-13 3.25S2 11.5 2 13.5s1.75 3.75 1.75 3.75C7 8 17 8 17 8z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.nav-menu li.nav-clicked::before {
    animation: leafFloat1 1s ease-out forwards;
}

.nav-menu li.nav-clicked::after {
    animation: leafFloat2 1s ease-out forwards;
    animation-delay: 0.1s;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    display: inline-block;
    font-size: 0.65rem;
    margin-left: 0.4rem;
    vertical-align: middle;
    transition: transform 0.3s ease;
    opacity: 0.85;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 240px;
    max-height: min(520px, calc(100vh - 120px));
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    border: 2px solid var(--primary-green);
    margin-top: 0.5rem;
    z-index: 1000;
}

/* Desktop: open on click (class .active toggled by JS) */
.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--light-bg);
}

.nav-dropdown-menu a:last-child {
    border-bottom: none;
}

.nav-dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-green);
    transform: translateY(0) translateX(5px);
}

.nav-dropdown-menu a::after {
    display: none;
}

/* Mobile Phone Number */
.mobile-phone {
    display: none;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: var(--light-bg);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 1000;
}

.nav-toggle:hover {
    background: var(--primary-green);
}

.nav-toggle:hover span {
    background: var(--white);
}

.nav-toggle span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: all 0.15s ease-out;
}

.nav-toggle span:nth-child(1) {
    top: 14px;
}

.nav-toggle span:nth-child(2) {
    top: 21px;
}

.nav-toggle span:nth-child(3) {
    top: 28px;
}

/* Hamburger animation to X */
.nav-toggle.active {
    background: var(--primary-green);
}

.nav-toggle.active span {
    background: var(--white);
}

.nav-toggle.active span:nth-child(1) {
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scale(0);
}

.nav-toggle.active span:nth-child(3) {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
}

/* Language Switcher Bubble */
.lang-bubble {
    position: relative;
    font-family: 'Inter', sans-serif;
}

.lang-bubble-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-green);
}

.lang-bubble-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    background: var(--light-bg);
}

.lang-flag {
    font-size: 1.2rem;
    line-height: 1;
}

.lang-code {
    font-weight: 600;
}

.lang-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 0.25rem;
}

.lang-bubble.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid var(--primary-green);
}

.lang-bubble.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

.lang-option:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.lang-option:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.lang-option:hover {
    background: var(--light-bg);
    color: var(--primary-green);
}

.lang-option .lang-flag {
    font-size: 1.3rem;
}

.lang-name {
    flex: 1;
}

/* Mobile Navbar Phone Link */
.mobile-navbar-phone {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--secondary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.mobile-navbar-phone:hover {
    background: var(--accent-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hide mobile phone when menu is open */
.nav-menu-wrapper.active ~ .mobile-navbar-phone {
    display: none;
}

.mobile-navbar-phone svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--white);
    transition: color 0.3s ease;
}

.mobile-navbar-phone:hover svg {
    color: var(--white);
}

/* Mobile Menu Contact Info */
.mobile-menu-contact {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 0;
    margin-top: 1rem;
    border-top: 2px solid var(--light-bg);
}

.mobile-menu-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary-green), var(--accent-green));
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
    transition: all 0.3s ease;
}

.mobile-menu-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

.mobile-menu-phone svg {
    width: 20px;
    height: 20px;
}

.mobile-menu-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--light-bg);
    color: var(--primary-green);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mobile-menu-social a:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(45, 80, 22, 0.3);
}

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

/* Mobile Menu Language Switcher */
.mobile-menu-lang {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--light-bg);
    margin-top: 0.5rem;
}

.mobile-menu-lang-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.mobile-lang-options {
    display: flex;
    gap: 0.75rem;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--light-bg);
    border: 2px solid transparent;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.mobile-lang-btn:hover {
    background: var(--white);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

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

.mobile-lang-btn .lang-flag {
    font-size: 1.2rem;
}

/* Hero Section with Slideshow */
.hero {
    margin-top: 100px; /* Clear fixed navbar */
}

/* Service Detail Hero (for service pages) – clear fixed navbar */
.service-detail-hero {
    margin-top: 100px !important;
}

.hero-slideshow-wrapper {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

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

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

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

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 80, 22, 0.3);
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
    z-index: 4;
}

.slide-btn {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.slide-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* Slideshow Dots (inside hero content so visible on small screens) */
.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.75rem;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.dot.active {
    background: var(--light-green);
    border-color: var(--white);
    transform: scale(1.25);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Hero scroll-down (pill style, arrow only, below dots) */
.hero-scroll-down {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.25rem;
    padding: 0.5rem 1rem;
    color: var(--white);
    text-decoration: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: background 0.3s ease;
}

.hero-scroll-down:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.hero-scroll-down-arrow {
    display: block;
    font-size: 1.25rem;
    line-height: 1;
    animation: scrollDownBounce 2s ease-in-out infinite;
}

@keyframes scrollDownBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Hero Info Section */
.hero-info {
    background: var(--white);
    padding: 80px 0;
}

.value-props-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.value-props-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.value-props-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.6;
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-prop-card {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.value-prop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-green), var(--accent-green), var(--light-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.value-prop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background: var(--white);
}

.value-prop-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.value-prop-card:hover .value-prop-icon {
    transform: scale(1.15) rotate(-5deg);
}

.value-prop-card h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.value-prop-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.hero-info-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--light-bg), #e8f5e9);
}

.stat-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0 0 0.25rem 0;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

.hero-info-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.hero-info-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f1f8e9, #e8f5e9);
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    color: var(--secondary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

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

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

.btn-secondary:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Services Section – scroll so hero is off-screen, only navbar space at top */
#services {
    scroll-margin-top: 100px;
}

.services {
    padding: 100px 0;
    background: var(--cream-dark);
    overflow-x: hidden;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

/* Hide dots on desktop */
.services-dots {
    display: none;
}

/* Make each service card span 2 columns (8 columns / 4 items = 2 columns each) */
.services-grid .service-card {
    grid-column: span 2;
}

/* Center last 3 items: they should start from column 2 (leaving 1 column on each side for centering) */
.services-grid .service-card:nth-child(5) {
    grid-column: 2 / span 2;
}

.services-grid .service-card:nth-child(6) {
    grid-column: 4 / span 2;
}

.services-grid .service-card:nth-child(7) {
    grid-column: 6 / span 2;
}

.service-card {
    background: var(--cream);
    padding: 0;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid var(--cream-dark);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold-bright));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

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

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 80, 22, 0.3) 100%);
    transition: all 0.4s ease;
}

.service-card:hover .service-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(45, 80, 22, 0.5) 100%);
}

.service-content {
    padding: 1.5rem 1.75rem 2rem;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--primary-green);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-link .arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.service-card:hover .service-link {
    color: var(--gold-light);
}

.service-card:hover .service-link .arrow {
    transform: translateX(5px);
}


/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-bg);
}

.stat {
    text-align: center;
    padding: 1rem 0.5rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
    line-height: 1.1;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Contact Section – scroll margin so nav "Contact" lands with section in focus below fixed navbar */
#contact {
    scroll-margin-top: 200px;
}

.contact {
    padding: 100px 0;
    background: var(--cream-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 10px;
    color: var(--primary-green);
    border: 2px solid var(--light-bg);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--secondary-green), var(--accent-green));
    color: white;
    border-color: var(--accent-green);
    transform: scale(1.05);
}

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

.contact-item h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

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

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

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group .form-select {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: #fff;
    cursor: pointer;
}

.form-group .form-select:focus {
    outline: none;
    border-color: var(--accent-green);
}

/* Contact form notification (success / error) */
.contact-form-notification {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    animation: notificationIn 0.35s ease;
}

.contact-form-notification[hidden] {
    display: none !important;
}

.contact-form-notification.success {
    background: #e8f5e9;
    color: #1b5e20;
    border: 1px solid #a5d6a7;
}

.contact-form-notification.success::before {
    content: "✓";
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.contact-form-notification.error {
    background: #ffebee;
    color: #b71c1c;
    border: 1px solid #ef9a9a;
}

.contact-form-notification.error::before {
    content: "!";
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

@keyframes notificationIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-item a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.social-icon svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.social-icon.facebook {
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
    border-color: rgba(24, 119, 242, 0.2);
}

.social-icon.facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.social-icon.instagram {
    background: rgba(188, 24, 136, 0.1);
    color: #bc1888;
    border-color: rgba(188, 24, 136, 0.2);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: #bc1888;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(188, 24, 136, 0.3);
}

.social-icon.tiktok {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
    border-color: rgba(0, 0, 0, 0.2);
}

.social-icon.tiktok:hover {
    background: #000000;
    color: white;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-icon:hover svg {
    transform: scale(1.05);
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: var(--white);
}

/* Portfolio grid: like services – 3 per row, last row centered when fewer than 3 */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    justify-items: stretch;
}

.portfolio-grid .portfolio-item {
    grid-column: span 2;
}

/* Center last 2 items (row 2) when we have 5 items */
.portfolio-grid .portfolio-item:nth-child(4) {
    grid-column: 2 / span 2;
}

.portfolio-grid .portfolio-item:nth-child(5) {
    grid-column: 4 / span 2;
}

.portfolio-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-green);
}

.portfolio-before-after {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--light-bg);
}

.before-after-container {
    position: relative;
    width: 100%;
    height: 100%;
    user-select: none;
    touch-action: pan-y;
}

.before-after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.before-image {
    z-index: 1;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.after-image {
    z-index: 2;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.before-after-label {
    position: absolute;
    top: 10px;
    padding: 4px 10px;
    background: rgba(45, 80, 22, 0.9);
    color: var(--white);
    font-weight: 600;
    font-size: 0.7rem;
    border-radius: 12px;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.before-image .before-after-label {
    left: 10px;
}

.after-image .before-after-label {
    right: 10px;
}

.before-after-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--white);
    z-index: 5;
    transform: translateX(-50%);
    cursor: ew-resize;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 3px solid var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: grab;
    pointer-events: auto;
    touch-action: none;
}

.slider-handle:active {
    cursor: grabbing;
}

.slider-handle::before,
.slider-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 5px 4px;
    pointer-events: none;
}

.slider-handle::before {
    left: 6px;
    border-color: transparent var(--primary-green) transparent transparent;
}

.slider-handle::after {
    right: 6px;
    border-color: transparent transparent transparent var(--primary-green);
}

.portfolio-item:hover .slider-handle {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.slider-handle:active {
    transform: translate(-50%, -50%) scale(1.15);
}

.portfolio-content {
    padding: 1.25rem;
    text-align: center;
}

.portfolio-item h3 {
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 0.4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.portfolio-item p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.85rem;
}

.before-after-container {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: grab;
    user-select: none;
}

.before-after-container:active {
    cursor: grabbing;
}

.before-after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.before-image {
    z-index: 1;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.after-image {
    z-index: 2;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.before-after-label {
    position: absolute;
    top: 10px;
    padding: 4px 10px;
    background: rgba(45, 80, 22, 0.9);
    color: var(--white);
    font-weight: 600;
    font-size: 0.7rem;
    border-radius: 12px;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.before-image .before-after-label {
    left: 10px;
}

.after-image .before-after-label {
    right: 10px;
}

.before-after-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--white);
    z-index: 5;
    transform: translateX(-50%);
    cursor: ew-resize;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 4px solid var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-handle::before,
.slider-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 5px 4px;
}

.slider-handle::before {
    left: 6px;
    border-color: transparent var(--primary-green) transparent transparent;
}

.slider-handle::after {
    right: 6px;
    border-color: transparent transparent transparent var(--primary-green);
}

.portfolio-item:hover .slider-handle {
    transform: translate(-50%, -50%) scale(1.1);
}

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

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(139, 195, 74, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(109, 160, 60, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-green), var(--light-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.testimonial-quote {
    font-size: 3rem;
    line-height: 1;
    color: var(--light-green);
    opacity: 0.15;
    font-family: Georgia, serif;
    position: absolute;
    top: 10px;
    left: 15px;
    pointer-events: none;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-bg);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-green), var(--accent-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(45, 80, 22, 0.25);
}

.testimonial-info {
    flex: 1;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-green);
    margin: 0 0 0.2rem 0;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
}

.testimonial-stars::before {
    content: '★★★★★';
    color: #ffd700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.8) 0%, rgba(76, 125, 34, 0.6) 100%);
    opacity: 0.4;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--light-green);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: var(--light-green);
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--light-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p a {
    color: var(--light-green);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-bottom p a:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--light-green);
}

.footer-legal-links span {
    color: rgba(255, 255, 255, 0.4);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Language Toggle */
html[lang="el"] .lang-en {
    display: none !important;
}

html[lang="en"] .lang-el {
    display: none !important;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
}

.scroll-animate.fade-in {
    animation: fadeIn 0.4s ease forwards;
}

.scroll-animate.fade-up {
    animation: fadeInUp 0.4s ease forwards;
}

.scroll-animate.slide-left {
    animation: slideInLeft 0.4s ease forwards;
}

.scroll-animate.slide-right {
    animation: slideInRight 0.4s ease forwards;
}

.scroll-animate.scale-in {
    animation: scaleIn 0.8s ease forwards;
}

/* Stagger animation delays for multiple items */
.scroll-animate:nth-child(1) { animation-delay: 0s; }
.scroll-animate:nth-child(2) { animation-delay: 0.05s; }
.scroll-animate:nth-child(3) { animation-delay: 0.1s; }
.scroll-animate:nth-child(4) { animation-delay: 0.15s; }
.scroll-animate:nth-child(5) { animation-delay: 0.2s; }
.scroll-animate:nth-child(6) { animation-delay: 0.25s; }
.scroll-animate:nth-child(7) { animation-delay: 0.3s; }

/* Responsive Design */

/* Large screens – wider width only for navbar, services, portfolio */
@media (min-width: 1600px) {
    .navbar .container,
    .services .container,
    .portfolio .container {
        max-width: 1600px;
        padding: 0 32px;
    }
}

/* Compact navbar: 968px–1250px so it doesn’t get cut before hamburger at 967px */
@media (max-width: 1250px) and (min-width: 968px) {
    .navbar .container {
        padding: 0.75rem 16px;
        gap: 1rem;
    }

    .nav-brand .logo {
        height: 95px;
    }

    .nav-social-vertical {
        margin-left: 0.5rem;
    }

    .nav-social-vertical .nav-social-icon {
        width: 28px;
        height: 28px;
    }

    .nav-social-vertical .nav-social-icon svg {
        width: 14px;
        height: 14px;
    }

    .nav-menu-wrapper {
        padding: 0.35rem 0.75rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.85rem;
    }

    .nav-cta-phone {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .nav-cta-phone svg {
        width: 16px;
        height: 16px;
    }

    .lang-bubble-btn {
        padding: 0.45rem 0.7rem;
        font-size: 0.8rem;
    }
}

/* Medium tablets/small laptops (around 840px) */
@media (max-width: 900px) {
    .slideshow-controls {
        padding: 0 1rem;
    }

    .slide-btn {
        width: 48px;
        height: 48px;
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-quote {
        font-size: 2.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .about-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .stat {
        padding: 0.875rem 0.4rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.78rem;
    }

    /* Portfolio: 2 columns, last row (1 item) centered like services */
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: none;
        padding: 0;
    }

    .portfolio-grid .portfolio-item {
        grid-column: span 2;
    }

    .portfolio-grid .portfolio-item:nth-child(4) {
        grid-column: span 2;
    }

    .portfolio-grid .portfolio-item:nth-child(5) {
        grid-column: 2 / span 2;
    }
}

@media (max-width: 967px) {
    /* Hide desktop phone + language (shown in mobile menu instead) */
    .nav-cta {
        display: none;
    }

    /* Keep social in navbar – only nav links go to hamburger */
    .nav-social-vertical {
        margin-left: 0.5rem;
    }
    .nav-social-vertical .nav-social-icon {
        width: 28px;
        height: 28px;
    }
    .nav-social-vertical .nav-social-icon svg {
        width: 14px;
        height: 14px;
    }

    /* Show About in menu on mobile */

    /* Adjust hero margin for single navbar */
    .hero {
        margin-top: 100px;
    }

    /* Adjust service page hero margin */
    .service-detail-hero {
        margin-top: 100px !important;
    }

    .nav-menu-wrapper {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: linear-gradient(135deg, #2d5016 0%, #1a3009 100%) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        padding: 2rem 1rem !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        z-index: 998;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        -webkit-overflow-scrolling: touch;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .nav-menu-wrapper.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.25rem;
        align-items: center;
        padding: 4rem 0 1rem;
        width: 100%;
    }

    .nav-menu li {
        width: auto;
        max-width: none;
        opacity: 0;
        transform: translateY(20px);
        text-align: center;
    }

    .nav-menu-wrapper.active .nav-menu li {
        animation: fadeInUp 0.4s ease forwards;
    }
    
    .nav-menu-wrapper.active .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu-wrapper.active .nav-menu li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu-wrapper.active .nav-menu li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu-wrapper.active .nav-menu li:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu-wrapper.active .nav-menu li:nth-child(5) { animation-delay: 0.3s; }

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

    .nav-menu > li > a {
        display: inline-block;
        text-align: center;
        padding: 0.6rem 1.25rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--white);
        border-left: none;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .nav-menu > li > a:hover,
    .nav-menu > li > a:focus,
    .nav-menu > li > a:active {
        background: transparent;
        color: #37be19 !important;
    }

    .nav-menu > li > a::after {
        display: none;
    }

    .nav-menu > li > a::before {
        display: none;
    }
    
    /* Hide chevron on dropdown since it has its own arrow */
    .nav-dropdown > a::before {
        display: none;
    }

    .nav-menu > li > a:hover::before {
        border-color: var(--primary-green);
        transform: rotate(-45deg) translateX(3px);
    }

    /* Show mobile menu contact */
    .mobile-menu-contact {
        display: flex;
        margin-top: 1rem;
        padding: 0;
        background: transparent;
        border-radius: 0;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        border-top: none;
        box-shadow: none;
    }

    .mobile-menu-phone {
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
        box-shadow: none;
        border-radius: 50px;
        padding: 1rem 2rem;
        font-size: 1rem;
        color: var(--white);
        justify-content: center;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .mobile-menu-phone:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
    }
    
    .mobile-menu-phone svg {
        color: var(--white);
        fill: var(--white);
        transition: all 0.3s ease;
    }
    
    .mobile-menu-phone:hover svg {
        color: var(--white);
        fill: var(--white);
    }

    .mobile-menu-social {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }
    
    .mobile-menu-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        color: var(--white);
        transition: all 0.3s ease;
    }
    
    .mobile-menu-social a:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
    }
    
    .mobile-menu-social svg {
        width: 20px;
        height: 20px;
        color: var(--white);
    }

    /* Show mobile menu language switcher */
    .mobile-menu-lang {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin-top: 1rem;
        border-top: none;
        background: transparent;
        gap: 0.5rem;
    }
    
    .mobile-menu-lang-label {
        display: none;
    }
    
    .mobile-lang-options {
        display: flex;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.1);
        padding: 0.25rem;
        border-radius: 50px;
    }
    
    .mobile-lang-btn {
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 500;
        background: transparent;
        color: rgba(255, 255, 255, 0.7);
        border: none;
        transition: all 0.3s ease;
    }
    
    .mobile-lang-btn.active {
        background: rgba(255, 255, 255, 0.2);
        color: var(--white);
        font-weight: 600;
        box-shadow: none;
    }
    
    .mobile-lang-btn:not(.active):hover {
        color: var(--white);
    }

    /* Show mobile navbar phone */
    .mobile-navbar-phone {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .lang-bubble-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .lang-dropdown {
        min-width: 160px;
    }

    .lang-option {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }

    .hero-slideshow-wrapper {
        height: 70vh;
        min-height: 450px;
        max-height: 600px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .hero-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-info-text h2 {
        font-size: 1.6rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .value-props-header h2 {
        font-size: 1.75rem;
    }

    .value-props-header p {
        font-size: 0.95rem;
    }

    .value-props-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Services carousel container */
    .services .container {
        padding: 0;
    }
    
    .services .section-title,
    .services .section-subtitle {
        padding: 0 25px;
    }

    .services-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding: 1rem 25px;
        margin: 0;
        scroll-padding-left: 25px;
        scroll-padding-right: 25px;
    }

    /* Hide scrollbar but keep functionality */
    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .services-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .services-grid .service-card {
        min-width: 250px;
        max-width: 250px;
        flex-shrink: 0;
        scroll-snap-align: start;
        grid-column: auto;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .services-grid .service-card:hover {
        box-shadow: none;
        transform: none;
    }

    .services-grid .service-card:nth-child(5),
    .services-grid .service-card:nth-child(6),
    .services-grid .service-card:nth-child(7) {
        grid-column: auto;
    }

    .services-grid .service-card:first-child {
        margin-left: 0;
    }

    .services-grid .service-card:last-child {
        margin-right: 0;
    }
    
    /* Services carousel dots */
    .services-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 1.25rem;
        padding: 0 20px;
    }
    
    .services-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(45, 80, 22, 0.25);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .services-dot:hover {
        background: rgba(45, 80, 22, 0.5);
    }
    
    .services-dot.active {
        background: var(--primary-green);
        transform: scale(1.2);
    }

    .service-image-wrapper {
        height: 150px;
    }

    .service-content {
        padding: 1rem 1.25rem 1.25rem;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .service-card p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    /* Show arrow on mobile */
    .dropdown-arrow {
        display: inline-block;
        font-size: 0.65rem;
        margin-left: 0.5rem;
        color: rgba(255, 255, 255, 0.6);
        opacity: 1;
    }

    /* Rotate arrow when dropdown is active */
    .nav-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
        color: var(--white);
        opacity: 1;
    }

    /* Mobile dropdown - accordion style within menu */
    .nav-dropdown-menu {
        position: static !important;
        transform: none !important;
        left: auto !important;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        border: none;
        border-left: none;
        border-radius: 12px;
        min-width: auto;
        width: 100%;
        margin-top: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, margin 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    /* Disable hover on mobile */
    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
    }

    /* Show dropdown when active - accordion expands */
    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        padding: 0.5rem;
        margin-top: 0.5rem;
    }

    /* Style dropdown items for mobile */
    .nav-dropdown-menu a {
        display: block !important;
        padding: 0.5rem 0.75rem !important;
        margin: 0 0 0.2rem 0 !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 6px !important;
        border: none !important;
        text-align: center !important;
        font-size: 0.85rem !important;
        color: rgba(255, 255, 255, 0.85) !important;
        transform: translate(0, 0) !important;
        transition: all 0.2s ease !important;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-dropdown-menu a:last-child {
        margin-bottom: 0 !important;
    }

    .nav-dropdown-menu a:hover,
    .nav-dropdown-menu a:active,
    .nav-dropdown-menu a:focus {
        background: rgba(255, 255, 255, 0.2) !important;
        color: var(--white) !important;
        transform: translate(0, 0) !important;
    }

    .nav-dropdown-menu a::after,
    .nav-dropdown-menu a::before {
        display: none !important;
        content: none !important;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        gap: 1rem;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
    }

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

    .contact-item h3 {
        font-size: 1.1rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat {
        padding: 0.875rem 0.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 1rem;
    }

    .portfolio-grid .portfolio-item,
    .portfolio-grid .portfolio-item:nth-child(4),
    .portfolio-grid .portfolio-item:nth-child(5) {
        grid-column: auto;
    }

    .portfolio-before-after {
        height: 220px;
    }

    .before-after-label {
        font-size: 0.7rem;
        padding: 4px 10px;
        top: 10px;
    }

    .before-image .before-after-label {
        left: 10px;
    }

    .after-image .before-after-label {
        right: 10px;
    }

    .slider-handle {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }

    .portfolio-content {
        padding: 1.25rem;
    }

    .portfolio-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.35rem;
    }

    .portfolio-item p {
        font-size: 0.85rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-quote {
        font-size: 2.5rem;
        top: 8px;
        left: 12px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .testimonial-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .testimonial-author {
        font-size: 0.9rem;
    }

    .testimonial-stars::before {
        font-size: 0.8rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        font-size: 0.9rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.875rem;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        text-align: center;
    }

    .slideshow-controls {
        padding: 0 0.5rem;
    }

    .slide-btn {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(8px);
    }

    .slide-btn:hover {
        background: rgba(255, 255, 255, 0.6);
    }

    .slideshow-dots {
        gap: 0.6rem;
        margin-top: 1rem;
    }

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

    /* Mobile Navbar Layout: Logo (left) | Phone (center) | Toggle (right) */
    .navbar .container {
        padding: 0.6rem 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .nav-brand {
        flex-shrink: 0;
    }

    .nav-brand .logo {
        height: 85px;
    }

    .mobile-navbar-phone {
        flex-shrink: 0;
        justify-content: center;
        padding: 0.4rem 0.85rem;
        font-size: 0.8rem;
        gap: 0.35rem;
        white-space: nowrap;
        border-width: 1.5px;
    }

    .mobile-navbar-phone svg {
        width: 15px;
        height: 15px;
    }

    .nav-toggle {
        flex-shrink: 0;
    }

    .nav-menu-wrapper {
        order: 4;
    }

    .nav-brand h1 {
        font-size: 1.1rem;
    }
}

/* Very small screens: hide social media only, keep logo + phone + hamburger */
@media (max-width: 449px) {
    .nav-social-vertical {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .services,
    .about,
    .contact,
    .portfolio,
    .testimonials {
        padding: 50px 0;
    }

    .hero {
        margin-top: 100px;
    }

    .service-detail-hero {
        margin-top: 100px !important;
    }

    .hero-slideshow-wrapper {
        height: 60vh;
        min-height: 400px;
        max-height: 500px;
    }

    .hero-title {
        font-size: 1.65rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-info-text h2 {
        font-size: 1.4rem;
    }

    .hero-info-text p {
        font-size: 0.9rem;
    }

    .value-props-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-props-header h2 {
        font-size: 1.5rem;
    }

    .value-props-header p {
        font-size: 0.9rem;
    }

    .value-prop-card {
        padding: 1.25rem;
    }

    .value-prop-card h3 {
        font-size: 1rem;
    }

    .value-prop-card p {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .services .section-title,
    .services .section-subtitle {
        padding: 0 20px;
    }

    .services-grid {
        gap: 0.75rem;
        padding: 0.75rem 20px;
        margin: 0;
        scroll-padding-left: 20px;
        scroll-padding-right: 20px;
    }

    .services-grid .service-card {
        min-width: 260px;
        max-width: 260px;
        scroll-snap-align: start;
    }

    .services-grid .service-card:first-child {
        margin-left: 0;
    }

    .services-grid .service-card:last-child {
        margin-right: 0;
    }
    
    .services-dots {
        gap: 6px;
        margin-top: 1rem;
    }
    
    .services-dot {
        width: 8px;
        height: 8px;
    }

    .service-image-wrapper {
        height: 140px;
    }

    .service-content {
        padding: 0.875rem 1rem 1rem;
    }

    .service-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .service-card p {
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
        line-height: 1.5;
    }

    .service-link {
        font-size: 0.8rem;
    }

    .about-content {
        padding: 1.5rem;
    }

    .about-description {
        font-size: 0.85rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat {
        padding: 0.75rem 0.4rem;
        border-radius: 8px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .contact-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
    }

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

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

    .contact-item h3 {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }

    .contact-item p {
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group .form-select {
        font-size: 0.9rem;
        padding: 0.85rem;
    }

    .hero-buttons {
        padding: 0 0.5rem;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        max-width: 280px;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 1.5rem;
    }

    .portfolio-before-after {
        height: 200px;
    }

    .portfolio-content {
        padding: 1rem;
    }

    .portfolio-item h3 {
        font-size: 1rem;
    }

    .portfolio-item p {
        font-size: 0.8rem;
    }

    /* Make slider handle easier to grab on mobile */
    .slider-handle {
        width: 45px;
        height: 45px;
    }

    .slider-handle::before {
        left: 8px;
    }

    .slider-handle::after {
        right: 8px;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .testimonial-quote {
        font-size: 2rem;
        top: 6px;
        left: 10px;
    }

    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.55;
        margin-bottom: 0.75rem;
    }

    .testimonial-footer {
        gap: 0.5rem;
        padding-top: 0.75rem;
        margin-top: 0.75rem;
    }

    .testimonial-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .testimonial-author {
        font-size: 0.85rem;
    }

    .testimonial-stars::before {
        font-size: 0.75rem;
    }

    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p {
        font-size: 0.85rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 1.5rem;
    }

    .footer-links {
        font-size: 0.85rem;
    }

    /* Smaller Mobile Layout */
    .navbar .container {
        padding: 0.6rem 10px;
        gap: 0.5rem;
    }

    .nav-brand .logo {
        height: 55px;
    }

    .mobile-navbar-phone {
        flex-shrink: 0;
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        gap: 0.25rem;
        white-space: nowrap;
    }

    .mobile-navbar-phone svg {
        width: 14px;
        height: 14px;
    }

    .mobile-menu-phone {
        font-size: 0.9rem;
        padding: 0.6rem 1.25rem;
    }

    .mobile-menu-social a {
        width: 40px;
        height: 40px;
    }

    .slideshow-controls {
        padding: 0 0.3rem;
    }

    .slide-btn {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(8px);
        border: 2px solid rgba(255, 255, 255, 0.6);
    }

    .slide-btn:hover,
    .slide-btn:active {
        background: rgba(255, 255, 255, 0.7);
    }

    .slideshow-dots {
        gap: 0.5rem;
        margin-top: 0.75rem;
    }

    .dot {
        width: 9px;
        height: 9px;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-green);
    color: var(--white);
    padding: 1.25rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookie-consent-text p {
    font-size: 0.9rem;
    opacity: 0.95;
    line-height: 1.5;
    margin: 0;
}

.cookie-consent-text a {
    color: var(--light-green);
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: var(--white);
}

.cookie-consent-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.cookie-btn-accept:hover {
    background: var(--light-green);
    color: var(--primary-green);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-reject:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--white);
    border-color: transparent;
    text-decoration: underline;
    padding: 0.75rem 1rem;
}

.cookie-btn-settings:hover {
    color: var(--light-green);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 550px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--light-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    font-size: 1.25rem;
    color: var(--primary-green);
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 0;
    line-height: 1;
}

.cookie-modal-close:hover {
    color: var(--primary-green);
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-bg);
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category-header h4 {
    font-size: 1rem;
    color: var(--dark-green);
    margin: 0;
}

.cookie-category p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--secondary-green);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background: var(--secondary-green);
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.cookie-modal-footer .cookie-btn {
    padding: 0.65rem 1.25rem;
}

.cookie-modal-footer .cookie-btn-accept {
    background: var(--primary-green);
    color: var(--white);
}

.cookie-modal-footer .cookie-btn-accept:hover {
    background: var(--secondary-green);
}

.cookie-modal-footer .cookie-btn-reject {
    background: var(--light-bg);
    color: var(--text-color);
    border-color: var(--light-bg);
}

.cookie-modal-footer .cookie-btn-reject:hover {
    background: #e0e0e0;
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 1rem;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-consent-text {
        min-width: auto;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}
