/* ========================================
   CSS Variables & Base Styles
   ======================================== */
:root {
    --primary-color: #1a4d2e; /* Deep forest green */
    --secondary-color: #2d5f3f;
    --accent-color: #3a7d52;
    --light-bg: #f5f5f0; /* Light beige/off-white */
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #999999;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    height: 50px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
    letter-spacing: -0.5px;
}

.logo-text:hover {
    color: var(--secondary-color);
    opacity: 0.9;
}

.logo {
    height: 100%;
    width: auto;
    max-height: 50px;
    object-fit: contain;
    display: block;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.nav-link.btn-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    margin-left: 1rem;
}

.nav-link.btn-cta:hover {
    background: var(--secondary-color);
    color: var(--white);
}

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

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* ========================================
   Hero Section - Default Design
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* ========================================
   Hero Section - New Clean Design
   ======================================== */
.hero-new {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
    overflow: hidden;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.05) 0%, rgba(26, 77, 46, 0.02) 100%);
    transform: skewX(-15deg);
    z-index: 0;
}

.hero-new-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-new-content {
    animation: fadeInLeft 0.8s ease-out;
}

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

.hero-new-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.badge-star {
    font-size: 1.1rem;
}

.hero-new-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.title-emphasis {
    color: var(--primary-color);
    display: inline-block;
    position: relative;
}

.title-emphasis::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

.hero-new-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-new-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    min-height: 52px;
}

.hero-btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.3);
}

.hero-btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 77, 46, 0.4);
}

.hero-btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero-btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-new-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.hero-new-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

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

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-main-image {
    width: 100%;
    height: auto;
    min-height: 600px;
    max-height: 800px;
    object-fit: contain;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 77, 46, 0.3) 100%);
}

.hero-stats-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.hero-stat-box {
    text-align: center;
    flex: 1;
}

.hero-stat-box .stat-value {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-box .stat-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ========================================
   Hero Section - Alternative Design (Old - Keep for reference)
   ======================================== */
.hero-alt {
    position: relative;
    min-height: auto;
    padding: 100px 0 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--light-bg);
    display: none; /* Hide old design */
}

.hero-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image-section {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.95) 0%, rgba(45, 95, 63, 0.85) 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 40px;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Content Side */
.hero-content-left {
    animation: slideInLeft 1s ease-out;
}

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

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
}

.tagline-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.3);
}

.tagline-text {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-title-alt {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hero-title-main {
    display: block;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description-alt {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-quick-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.stat-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(26, 77, 46, 0.2);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-primary-alt {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    box-shadow: 0 6px 25px rgba(26, 77, 46, 0.4);
    justify-content: space-between;
}

.cta-primary-alt:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(26, 77, 46, 0.5);
}

.cta-primary-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-primary-alt:hover::before {
    left: 100%;
}

.cta-icon-wrapper {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon {
    font-size: 1.5rem;
}

.cta-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}

.cta-main-text {
    font-size: 1.15rem;
    line-height: 1.3;
}

.cta-sub-text {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

.cta-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.cta-primary-alt:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-secondary-alt {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    justify-content: center;
}

.cta-secondary-alt:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 77, 46, 0.3);
}

.hero-social-proof {
    display: flex;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    flex-direction: column;
}

.proof-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.proof-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Right Visual Side */
.hero-content-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: slideInRight 1s ease-out 0.2s both;
}

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

.hero-visual-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.visual-card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

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

.visual-card-content {
    margin-top: 1rem;
}

.visual-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.hero-visual-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.hero-visual-card p {
    opacity: 0.9;
    font-size: 1rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    color: var(--white);
    transition: var(--transition);
    cursor: pointer;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.feature-card span {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-scroll-hint {
    display: none; /* Hide on desktop to reduce clutter */
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.88) 0%, rgba(45, 95, 63, 0.82) 50%, rgba(26, 77, 46, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

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

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.badge-icon {
    font-size: 1.2rem;
    animation: float 3s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.3s both;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line-1,
.title-line-2 {
    display: block;
    font-size: 0.75em;
    font-weight: 400;
    opacity: 0.95;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2em;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.hero-feature:nth-child(1) .feature-icon {
    animation-delay: 0s;
}

.hero-feature:nth-child(2) .feature-icon {
    animation-delay: 0.2s;
}

.hero-feature:nth-child(3) .feature-icon {
    animation-delay: 0.4s;
}

.hero-feature:nth-child(4) .feature-icon {
    animation-delay: 0.6s;
}

.feature-icon {
    font-size: 2rem;
    animation: float 2s ease-in-out infinite;
}

.hero-feature span:not(.feature-icon) {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.3px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

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

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

.btn-icon {
    font-size: 1.3rem;
    z-index: 1;
    position: relative;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    z-index: 1;
    position: relative;
}

.btn-main {
    font-size: 1.1rem;
    line-height: 1.2;
}

.btn-sub {
    font-size: 0.85rem;
    opacity: 0.85;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f0 100%);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3), 0 8px 25px rgba(0, 0, 0, 0.2);
    min-width: 280px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4), 0 12px 35px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #f5f5f0 0%, #ffffff 100%);
}

.btn-cta-primary .btn-text {
    text-align: left;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    min-width: 200px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.hero-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.7s both;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.trust-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.trust-label {
    font-size: 0.85rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .hero-trust {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .trust-divider {
        display: none;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* ========================================
   Services Section
   ======================================== */
.services {
    background: var(--light-bg);
}

.services-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    flex: 1;
    overflow: hidden;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-card ul {
    margin-top: 1rem;
}

.service-card ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

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

.slider-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* ========================================
   About Section - Redesigned
   ======================================== */
.about {
    position: relative;
    background: var(--light-bg);
    padding: 5rem 0;
    overflow: hidden;
}

.about-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.03) 0%, rgba(26, 77, 46, 0.08) 100%);
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
}

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

.about-content-new {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-section {
    position: relative;
}

.about-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4/5;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 77, 46, 0.2) 100%);
}

.about-stats-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-stat {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.about-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.about-stat .stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-text-section {
    padding-left: 1rem;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.2);
}

.about-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

.about-highlights {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-highlight-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(26, 77, 46, 0.2);
}

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

.highlight-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.highlight-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.3);
    margin-top: 1rem;
}

.about-cta-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 77, 46, 0.4);
}

.about-cta-btn span:last-child {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.about-cta-btn:hover span:last-child {
    transform: translateX(5px);
}

/* ========================================
   Gallery Section - Compact with Parallax
   ======================================== */
.gallery {
    position: relative;
    background: var(--light-bg);
    padding: 4rem 0;
    overflow: hidden;
}

.gallery-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
    transform: translateZ(0);
}

.gallery-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(245, 245, 240, 0.95) 0%, rgba(245, 245, 240, 0.98) 100%);
    z-index: 1;
}

.gallery .container {
    position: relative;
    z-index: 2;
}

.gallery .section-header {
    margin-bottom: 3rem;
}

/* Albums Grid */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
}

.album-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.album-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.album-header-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
    line-height: 1.4;
}

.album-photo-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.album-photo-count svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.album-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--light-bg);
}

.album-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.album-card:hover .album-thumbnail img {
    transform: scale(1.05);
}

.album-info {
    background: var(--white);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.album-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.view-album-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    position: relative;
}

.view-album-link:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.view-album-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: var(--transition);
    display: inline-block;
}

.view-album-link:hover::after {
    transform: translateX(3px);
}

/* Album Lightbox */
.album-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.album-lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

/* Centered Modal Container */
.lightbox-modal {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

/* Dark Green Header */
.lightbox-header {
    background: var(--primary-color);
    padding: 2rem 3rem;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    position: relative;
}

.lightbox-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.lightbox-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.lightbox-logo-text {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
}

.lightbox-header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lightbox-header-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.lightbox-header-divider {
    width: 100px;
    height: 2px;
    background: var(--white);
    margin: 0.5rem 0;
}

.lightbox-header-subtitle {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

.lightbox-case-btn {
    margin-top: 1rem;
    background: #FFD700;
    color: var(--text-dark);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

.lightbox-case-btn:hover {
    background: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

/* White Body Section */
.lightbox-body {
    padding: 2rem 3rem;
    background: var(--white);
    flex: 1;
    overflow-y: auto;
}

.lightbox-image-container {
    display: flex;
    gap: 0;
    align-items: stretch;
    min-height: 400px;
}

.lightbox-image,
.lightbox-image-secondary {
    flex: 1;
    object-fit: cover;
    width: 50%;
    height: auto;
    min-height: 400px;
    display: block;
}

.lightbox-image-secondary {
    display: none; /* Hide secondary image by default, show when there are 2+ images */
}

.lightbox-image-divider {
    width: 2px;
    background: var(--primary-color);
    flex-shrink: 0;
    display: none; /* Show when both images are displayed */
}

/* Show divider and secondary image when both exist */
.lightbox-image-container.has-two-images .lightbox-image {
    width: calc(50% - 1px);
}

.lightbox-image-container.has-two-images .lightbox-image-secondary {
    display: block;
}

.lightbox-image-container.has-two-images .lightbox-image-divider {
    display: block;
}

/* Footer with Pagination and Thumbnails */
.lightbox-footer {
    padding: 1.5rem 3rem;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.lightbox-counter {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-body);
}

.lightbox-thumbnails {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.lightbox-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: 0.6;
}

.lightbox-thumbnail:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.lightbox-thumbnail.active {
    border-color: #FFD700;
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
}

/* Close Button - Top Right */
.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Navigation Arrows - Left and Right */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lightbox-nav:disabled:hover {
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    background: var(--white);
}

.testimonials-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    flex: 1;
    overflow: hidden;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    background: var(--light-bg);
}

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

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

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

.contact-item a {
    color: var(--primary-color);
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-links h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.footer-logo-link:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.footer-logo {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition);
}

.footer-section h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--white);
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Tablet Responsive Design
   ======================================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-alt .hero-content-wrapper {
        gap: 3rem;
    }
    
    .hero-alt .hero-title-alt {
        font-size: 3.5rem;
    }
    
    .container {
        padding: 0 30px;
    }
}

/* ========================================
   Mobile Responsive Design
   ======================================== */
@media (max-width: 768px) {
    /* Global Mobile Improvements */
    html {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .logo-container {
        height: 45px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    /* Navigation - Enhanced Mobile */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0.75rem 15px;
    }
    
    .logo-container {
        height: 45px;
    }
    
    .menu-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        min-width: 44px;
        padding: 10px;
        justify-content: center;
        align-items: center;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }
    
    .menu-toggle span {
        width: 24px;
        height: 2.5px;
        background: var(--primary-color);
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        flex-direction: column;
        background: var(--white);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
        padding: 80px 0 2rem;
        transition: left 0.3s ease;
        gap: 0;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link {
        display: block;
        padding: 1rem 20px;
        width: 100%;
        font-size: 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        color: var(--text-dark);
    }
    
    .nav-link:hover,
    .nav-link:active {
        background: var(--light-bg);
        color: var(--primary-color);
    }
    
    .nav-link.btn-cta {
        margin: 1rem 20px;
        width: calc(100% - 40px);
        text-align: center;
        justify-content: center;
        border-radius: 8px;
        background: var(--primary-color);
        color: var(--white);
        border: none;
    }
    
    .nav-link.btn-cta:hover {
        background: var(--secondary-color);
        color: var(--white);
    }
    
    /* Overlay when menu is open */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 320px;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    /* Hero - Default Design */
    .hero {
        background-attachment: scroll;
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    /* Hero - New Design Mobile */
    .hero-new {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-new::before {
        display: none;
    }
    
    .hero-new-container {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        padding: 0 20px;
    }
    
    .hero-new-content {
        order: 2;
        width: 100%;
        animation: fadeInUp 0.8s ease-out;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hero-new-image {
        order: 1;
        width: 100%;
        margin-bottom: 1rem;
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }
    
    .hero-image-wrapper {
        position: relative;
        width: 100%;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .hero-main-image {
        width: 100%;
        height: auto;
        min-height: 400px;
        max-height: 500px;
        object-fit: contain;
        display: block;
    }
    
    .hero-new-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-new-title .title-emphasis {
        display: block;
        margin-top: 0.5rem;
    }
    
    .hero-new-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .hero-new-buttons {
        flex-direction: column;
        gap: 0.875rem;
        margin-bottom: 1.5rem;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .hero-new-features {
        gap: 0.875rem;
        margin-top: 1rem;
    }
    
    .hero-feature-item {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .hero-feature-item .feature-check {
        font-size: 1rem;
        margin-right: 0.75rem;
    }
    
    .hero-stats-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: -60px;
        padding: 1rem;
        gap: 0.75rem;
        flex-wrap: wrap;
        border-radius: 0 0 16px 16px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .hero-stat-box {
        flex: 1;
        min-width: calc(50% - 0.375rem);
        padding: 0.75rem;
        border-radius: 8px;
    }
    
    .hero-stat-box .stat-value {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .hero-stat-box .stat-desc {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-top: 0.25rem;
    }
    
    .hero-new-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    /* Hero - Alternative Design Mobile */
    .hero-alt {
        min-height: auto;
        height: auto;
        padding: 80px 0 40px;
    }
    
    .hero-alt .hero-image-section,
    .hero-alt .hero-gradient-overlay {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 75%, 0% 95%);
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 400px;
    }
    
    .hero-alt .hero-container {
        padding: 20px 15px 30px;
        position: relative;
        z-index: 2;
    }
    
    .hero-alt .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-alt .hero-content-right {
        order: -1;
        margin-top: 320px;
    }
    
    .hero-alt .hero-content-left {
        padding-top: 2rem;
    }
    
    .hero-alt .hero-title-alt {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-alt .hero-tagline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-alt .tagline-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-alt .hero-description-alt {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .hero-alt .hero-quick-stats {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
    }
    
    .hero-alt .quick-stat {
        width: 100%;
        min-width: 100%;
        padding: 1rem;
    }
    
    .hero-alt .stat-icon {
        font-size: 1.5rem;
        width: 44px;
        height: 44px;
        min-width: 44px;
    }
    
    .hero-alt .stat-value {
        font-size: 0.95rem;
    }
    
    .hero-alt .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-alt .hero-cta-group {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-alt .cta-btn {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        min-height: 56px;
        width: 100%;
    }
    
    .hero-alt .cta-primary-alt {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .hero-alt .cta-icon-wrapper {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .hero-alt .cta-icon {
        font-size: 1.2rem;
    }
    
    .hero-alt .cta-main-text {
        font-size: 1rem;
    }
    
    .hero-alt .cta-sub-text {
        font-size: 0.8rem;
    }
    
    .hero-alt .cta-arrow {
        font-size: 1.3rem;
    }
    
    .hero-alt .hero-social-proof {
        gap: 1rem;
        padding: 1.25rem 1rem;
        border-top: 2px solid var(--border-color);
    }
    
    .hero-alt .proof-number {
        font-size: 1.5rem;
    }
    
    .hero-alt .proof-text {
        font-size: 0.8rem;
    }
    
    .hero-alt .hero-visual-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-alt .visual-card-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-alt .visual-icon-large {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-alt .hero-visual-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
    
    .hero-alt .hero-visual-card p {
        font-size: 0.9rem;
    }
    
    .hero-alt .hero-feature-cards {
        gap: 0.5rem;
    }
    
    .hero-alt .feature-card {
        padding: 1rem;
        min-height: 80px;
    }
    
    .hero-alt .feature-card-icon {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-alt .feature-card span {
        font-size: 0.85rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .title-highlight {
        font-size: 1.3em;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-feature {
        font-size: 0.85rem;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        padding: 1.1rem 1.5rem;
    }
    
    .btn-primary {
        min-width: auto;
    }
    
    .btn-secondary {
        min-width: auto;
    }
    
    .hero-trust {
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .trust-number {
        font-size: 1.5rem;
    }
    
    .trust-label {
        font-size: 0.75rem;
    }
    
    /* Services - Mobile Slider */
    .services-slider-container {
        flex-wrap: wrap;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
    }
    
    .services-grid::-webkit-scrollbar {
        display: none;
    }
    
    .service-card {
        min-width: 100%;
        scroll-snap-align: start;
    }
    
    .slider-btn {
        width: 48px;
        height: 48px;
        min-width: 48px;
        position: absolute;
        z-index: 10;
        top: 50%;
        transform: translateY(-50%);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    .slider-btn-prev {
        left: 10px;
    }
    
    .slider-btn-next {
        right: 10px;
    }
    
    .slider-btn:active {
        transform: translateY(-50%) scale(0.95);
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-content-new {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-image-section {
        order: -1;
    }
    
    .about-image-main {
        aspect-ratio: 4/3;
    }
    
    .about-text-section {
        padding-left: 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-highlights {
        margin: 2rem 0;
        gap: 1.25rem;
    }
    
    .about-stats-card {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 1.25rem;
    }
    
    .about-stat .stat-number {
        font-size: 2rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    .gallery-item {
        min-width: 100%;
        scroll-snap-align: start;
    }
    
    /* Testimonials - Mobile Slider */
    .testimonials-slider-container {
        flex-wrap: wrap;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
    }
    
    .testimonials-slider::-webkit-scrollbar {
        display: none;
    }
    
    .testimonial-card {
        min-width: 100%;
        scroll-snap-align: start;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Services Section Mobile */
    .services-slider-container {
        margin: 0 -15px;
        padding: 0 15px;
    }
    
    .services-grid {
        padding: 0 5px;
    }
    
    .service-card {
        padding: 1.5rem;
        margin: 0 5px;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    /* About Section Mobile */
    .about-content {
        gap: 2rem;
    }
    
    .about-text .lead {
        font-size: 1.15rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .about-content-new {
        gap: 2rem;
    }
    
    .about-title {
        font-size: 1.75rem;
    }
    
    .about-highlight-item {
        gap: 1rem;
    }
    
    .highlight-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.3rem;
    }
    
    .highlight-content h4 {
        font-size: 1.05rem;
    }
    
    .highlight-content p {
        font-size: 0.9rem;
    }
    
    .about-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    /* Gallery Mobile */
    .gallery {
        padding: 3rem 0;
    }
    
    .gallery-parallax-bg {
        background-attachment: scroll;
        height: 100%;
    }
    
    /* Albums Mobile */
    .albums-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .album-card {
        border-radius: 0;
    }
    
    .album-header {
        padding: 0.875rem 1rem;
        min-height: 55px;
    }
    
    .album-header-text {
        font-size: 0.8rem;
    }
    
    .album-photo-count {
        font-size: 0.8rem;
        gap: 0.4rem;
    }
    
    .album-photo-count svg {
        width: 16px;
        height: 16px;
    }
    
    .album-info {
        padding: 1.25rem;
        gap: 0.875rem;
    }
    
    .album-title {
        font-size: 1.1rem;
    }
    
    .view-album-link {
        font-size: 0.85rem;
    }
    
    /* Lightbox Mobile */
    .album-lightbox {
        padding: 1rem;
    }
    
    .lightbox-modal {
        max-height: 95vh;
    }
    
    .lightbox-header {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .lightbox-logo-section {
        flex-direction: row;
        align-items: center;
    }
    
    .lightbox-logo {
        width: 50px;
        height: 50px;
    }
    
    .lightbox-header-title {
        font-size: 1.75rem;
    }
    
    .lightbox-body {
        padding: 1.5rem;
    }
    
    .lightbox-image-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .lightbox-image,
    .lightbox-image-secondary {
        width: 100%;
        min-height: 250px;
    }
    
    .lightbox-image-divider {
        width: 100%;
        height: 2px;
        margin: 0.5rem 0;
    }
    
    .lightbox-image-container.has-two-images .lightbox-image,
    .lightbox-image-container.has-two-images .lightbox-image-secondary {
        width: 100%;
    }
    
    .lightbox-footer {
        padding: 1rem 1.5rem;
    }
    
    .lightbox-thumbnail {
        width: 60px;
        height: 45px;
    }
    
    .lightbox-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-nav {
        width: 44px;
        height: 44px;
    }
    
    .lightbox-prev {
        left: 0.75rem;
    }
    
    .lightbox-next {
        right: 0.75rem;
    }
    
    .lightbox-counter {
        font-size: 0.9rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-slider-container {
        margin: 0 -15px;
        padding: 0 15px;
    }
    
    .testimonials-slider {
        padding: 0 5px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin: 0 5px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    /* Contact Section Mobile - Redesigned */
    .contact {
        padding: 2.5rem 0;
        background: var(--light-bg);
    }
    
    .contact .section-header {
        margin-bottom: 2rem;
    }
    
    .contact .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .contact .section-subtitle {
        font-size: 0.95rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        gap: 1rem;
        width: 100%;
    }
    
    .contact-item {
        background: var(--white);
        padding: 1.25rem;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
        transition: var(--transition);
    }
    
    .contact-item:active {
        transform: scale(0.98);
    }
    
    .contact-icon {
        font-size: 1.25rem;
        width: 48px;
        height: 48px;
        min-width: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: var(--white);
        border-radius: 12px;
        flex-shrink: 0;
        box-shadow: 0 2px 8px rgba(26, 77, 46, 0.2);
    }
    
    .contact-item > div {
        flex: 1;
        min-width: 0;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
        font-weight: 600;
    }
    
    .contact-item p {
        font-size: 0.9rem;
        line-height: 1.6;
        word-wrap: break-word;
        color: var(--text-light);
        margin: 0;
    }
    
    .contact-item a {
        font-size: 0.9rem;
        word-break: break-word;
        color: var(--primary-color);
        font-weight: 500;
    }
    
    .social-links {
        background: var(--white);
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        margin-top: 0;
        width: 100%;
    }
    
    .social-links h3 {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
        color: var(--primary-color);
        font-weight: 600;
    }
    
    .social-icons {
        flex-wrap: wrap;
        gap: 0.875rem;
        justify-content: flex-start;
    }
    
    .social-icons a {
        width: 48px;
        height: 48px;
        min-width: 48px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
    
    .contact-form-container {
        background: var(--white);
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group:last-of-type {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        display: block;
        color: var(--text-dark);
        font-weight: 600;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 1rem;
        border-radius: 8px;
        min-height: 48px;
        width: 100%;
        box-sizing: border-box;
        border: 2px solid var(--border-color);
        background: var(--white);
        transition: var(--transition);
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1);
    }
    
    .form-group textarea {
        min-height: 120px;
        resize: vertical;
        font-family: var(--font-body);
    }
    
    .btn-primary {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 52px;
        font-weight: 600;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(26, 77, 46, 0.3);
    }
    
    .btn-primary:active {
        transform: scale(0.98);
    }
    
    /* Footer Mobile - Redesigned */
    .footer {
        padding: 2.5rem 0 1rem;
        background: var(--text-dark);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        width: 100%;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .footer-section:first-child {
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1.5rem;
    }
    
    .footer-logo-link {
        display: block;
        margin: 0 auto 1.25rem;
        text-align: center;
    }
    
    .footer-logo {
        height: 50px;
        width: auto;
        margin: 0 auto;
        display: block;
        object-fit: contain;
    }
    
    .footer-section:first-child p {
        text-align: center;
        max-width: 100%;
        font-size: 0.9rem;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.75);
        margin: 0;
    }
    
    .footer-section h3 {
        font-size: 1.15rem;
        margin-bottom: 1rem;
        text-align: left;
        color: var(--white);
        font-weight: 600;
    }
    
    .footer-section:first-child h3 {
        text-align: center;
    }
    
    .footer-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-section ul li {
        margin-bottom: 0.875rem;
        font-size: 0.9rem;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-section ul li:last-child {
        margin-bottom: 0;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 0.875rem;
        word-wrap: break-word;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-section p:last-child {
        margin-bottom: 0;
    }
    
    .footer-section a {
        font-size: 0.9rem;
        word-break: break-word;
        display: inline-block;
        color: rgba(255, 255, 255, 0.8);
        transition: var(--transition);
    }
    
    .footer-section a:hover {
        color: var(--white);
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin: 0;
        color: rgba(255, 255, 255, 0.6);
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile Improvements */
    .container {
        padding: 0 12px;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    /* Hero - Default Design Small Mobile */
    .hero {
        min-height: 100vh;
        padding: 70px 0 30px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .title-highlight {
        font-size: 1.2em;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.5rem 0.875rem;
    }
    
    .hero-features {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .hero-feature {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
    }
    
    .feature-icon {
        font-size: 1.25rem;
    }
    
    .hero-feature span:not(.feature-icon) {
        font-size: 0.7rem;
    }
    
    .btn {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        min-height: 48px;
    }
    
    .btn-main {
        font-size: 0.95rem;
    }
    
    .btn-sub {
        font-size: 0.75rem;
    }
    
    .hero-trust {
        padding: 1.25rem 0.75rem;
        gap: 0.75rem;
    }
    
    .trust-number {
        font-size: 1.25rem;
    }
    
    .trust-label {
        font-size: 0.65rem;
    }
    
    /* Hero - New Design Small Mobile */
    .hero-new {
        padding: 60px 0 40px;
    }
    
    .hero-new-container {
        padding: 0 15px;
        gap: 1.75rem;
    }
    
    .hero-main-image {
        min-height: 300px;
        max-height: 400px;
    }
    
    .hero-image-wrapper {
        border-radius: 12px;
    }
    
    .hero-new-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.875rem;
    }
    
    .hero-new-title .title-emphasis {
        margin-top: 0.375rem;
        font-size: 1.5rem;
    }
    
    .hero-new-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
    
    .hero-new-badge {
        font-size: 0.8rem;
        padding: 0.45rem 0.875rem;
        margin-bottom: 0.875rem;
    }
    
    .hero-new-buttons {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .hero-new-features {
        gap: 0.75rem;
        margin-top: 0.75rem;
    }
    
    .hero-feature-item {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .hero-feature-item .feature-check {
        font-size: 0.95rem;
        margin-right: 0.65rem;
    }
    
    .hero-stats-overlay {
        margin-top: -50px;
        padding: 0.875rem;
        gap: 0.65rem;
        border-radius: 0 0 12px 12px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .hero-stat-box {
        flex: 1 1 calc(50% - 0.325rem);
        min-width: calc(50% - 0.325rem);
        padding: 0.65rem;
        border-radius: 8px;
    }
    
    .hero-stat-box .stat-value {
        font-size: 1.25rem;
        line-height: 1.1;
    }
    
    .hero-stat-box .stat-desc {
        font-size: 0.7rem;
        line-height: 1.2;
        margin-top: 0.2rem;
    }
    
    /* Alternative Hero - Small Mobile */
    .hero-alt {
        padding: 70px 0 30px;
    }
    
    .hero-alt .hero-image-section,
    .hero-alt .hero-gradient-overlay {
        height: 350px;
        clip-path: polygon(0 0, 100% 0, 100% 70%, 0% 92%);
    }
    
    .hero-alt .hero-container {
        padding: 15px 12px 25px;
    }
    
    .hero-alt .hero-content-right {
        margin-top: 280px;
    }
    
    .hero-alt .hero-title-alt {
        font-size: 1.75rem;
    }
    
    .hero-alt .hero-description-alt {
        font-size: 0.9rem;
    }
    
    .hero-alt .quick-stat {
        padding: 0.875rem;
    }
    
    .hero-alt .stat-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.25rem;
    }
    
    .hero-alt .cta-btn {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
        min-height: 52px;
    }
    
    .hero-alt .cta-main-text {
        font-size: 0.95rem;
    }
    
    .hero-alt .cta-sub-text {
        font-size: 0.75rem;
    }
    
    .hero-alt .hero-social-proof {
        padding: 1rem 0.75rem;
        gap: 0.875rem;
    }
    
    .hero-alt .proof-number {
        font-size: 1.25rem;
    }
    
    .hero-alt .proof-text {
        font-size: 0.75rem;
    }
    
    .hero-alt .hero-visual-card {
        padding: 1.25rem;
    }
    
    .hero-alt .visual-icon-large {
        font-size: 2rem;
    }
    
    .hero-alt .feature-card {
        padding: 0.875rem;
        min-height: 75px;
    }
    
    .hero-alt .feature-card-icon {
        font-size: 1.5rem;
    }
    
    .hero-alt .feature-card span {
        font-size: 0.8rem;
    }
    
    /* Section Titles Small Mobile */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Services Small Mobile */
    .service-card {
        padding: 1.25rem;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.15rem;
    }
    
    /* Contact Small Mobile */
    .contact {
        padding: 2rem 0;
    }
    
    .contact .section-title {
        font-size: 1.5rem;
    }
    
    .contact .section-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-content {
        gap: 1.75rem;
    }
    
    .contact-info {
        gap: 0.875rem;
    }
    
    .contact-item {
        padding: 1.125rem;
        gap: 0.875rem;
    }
    
    .contact-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.15rem;
        border-radius: 10px;
    }
    
    .contact-item h3 {
        font-size: 1.05rem;
        margin-bottom: 0.375rem;
    }
    
    .contact-item p,
    .contact-item a {
        font-size: 0.875rem;
    }
    
    .social-links {
        padding: 1.25rem;
    }
    
    .social-links h3 {
        font-size: 1.05rem;
        margin-bottom: 1rem;
    }
    
    .social-icons a {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }
    
    .contact-form-container {
        padding: 1.25rem;
    }
    
    .form-group {
        margin-bottom: 1.125rem;
    }
    
    .form-group label {
        font-size: 0.875rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem 0.875rem;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 48px;
    }
    
    .form-group textarea {
        min-height: 110px;
    }
    
    .btn-primary {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        min-height: 48px;
    }
    
    /* Albums Small Mobile */
    .albums-grid {
        gap: 1.25rem;
    }
    
    .album-header {
        padding: 0.75rem 0.875rem;
        min-height: 50px;
    }
    
    .album-header-text {
        font-size: 0.75rem;
    }
    
    .album-photo-count {
        font-size: 0.75rem;
    }
    
    .album-photo-count svg {
        width: 14px;
        height: 14px;
    }
    
    .album-info {
        padding: 1rem;
    }
    
    .album-title {
        font-size: 1rem;
    }
    
    .view-album-link {
        font-size: 0.8rem;
    }
    
    .lightbox-content {
        max-width: 98%;
        padding: 0.5rem;
    }
    
    .lightbox-image {
        max-height: 70vh;
    }
    
    /* Footer Small Mobile */
    .footer {
        padding: 2rem 0 0.875rem;
    }
    
    .footer-content {
        gap: 1.75rem;
    }
    
    .footer-section {
        padding-bottom: 1.25rem;
    }
    
    .footer-section:first-child {
        padding-bottom: 1.25rem;
    }
    
    .footer-logo-link {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .footer-logo {
        height: 45px;
        width: auto;
        margin: 0 auto;
        display: block;
        object-fit: contain;
    }
    
    .footer-section:first-child p {
        font-size: 0.875rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.875rem;
    }
    
    .footer-section p,
    .footer-section ul li {
        font-size: 0.875rem;
    }
    
    .footer-section a {
        font-size: 0.875rem;
    }
    
    .footer-bottom {
        padding-top: 1.25rem;
        margin-top: 1.25rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Prevent horizontal scroll and improve mobile base */
* {
    box-sizing: border-box;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Better touch scrolling */
@media (max-width: 768px) {
    html {
        -webkit-overflow-scrolling: touch;
    }
    
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
}

/* Improve tap highlights for touch devices */
a, button, .nav-link, .cta-btn, .btn, .slider-btn {
    -webkit-tap-highlight-color: rgba(26, 77, 46, 0.2);
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .testimonial-card:hover,
    .gallery-item:hover {
        transform: none;
    }
    
    .service-card:active {
        transform: scale(0.98);
    }
    
    .btn:active {
        transform: scale(0.97);
    }
}

/* ========================================
   Accessibility
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

