/* ===== CSS Reset & Variables ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Gray Color Palette */
    --forest-dark: #212121;
    --forest-primary: #424242;
    --forest-medium: #616161;
    --forest-light: #757575;
    --forest-accent: #9E9E9E;
    --bark-brown: #303030;
    --moss-green: #757575;
    --leaf-light: #BDBDBD;
    --cream: #F5F5DC;
    --white: #FFFFFF;
    --shadow: rgba(33, 33, 33, 0.1);
    --shadow-md: rgba(33, 33, 33, 0.15);
    --shadow-lg: rgba(33, 33, 33, 0.2);
    
    /* Typography */
    --font-heading: 'Merriweather', serif;
    --font-body: 'Lato', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--forest-dark);
    line-height: 1.6;
    background-color: var(--forest-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    padding-top: 76px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

/* ===== Header & Navigation ===== */
.header {
    background: rgba(33, 33, 33, 0.85);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    z-index: 1001;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo img {
    filter: brightness(0) invert(1);
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: var(--forest-light);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--white);
}

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

.cta-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--white);
    color: var(--forest-primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.cta-button:hover,
.cta-button:active {
    background-color: var(--forest-accent);
    color: var(--white);
    border-color: var(--forest-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 76px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 76px);
    background: rgba(33, 33, 33, 0.95);
    backdrop-filter: blur(15px);
    padding: 2rem 0;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
}

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

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-link {
    display: block;
    padding: 1rem 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--white);
    color: var(--white);
}

.mobile-cta {
    display: block;
    margin: 2rem;
    padding: 12px 24px;
    background-color: var(--white);
    color: var(--forest-primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-cta:hover {
    background-color: var(--forest-accent);
    color: var(--white);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(33, 33, 33, 0.75) 0%, rgba(48, 48, 48, 0.65) 100%), 
    url('https://wallpapercave.com/wp/wp6689716.jpg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    margin-top: -76px;
    padding-top: 76px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(158, 158, 158, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text {
    animation: fadeInUp 0.8s ease;
}

.hero-logo {
    margin-bottom: 1.5rem;
}

.hero-logo img {
    width: 150px;
    height: 150px;
    filter: brightness(0) invert(1);
    animation: fadeInUp 0.8s ease;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.1;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-cta {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-cta.primary {
    background-color: var(--white);
    color: var(--forest-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-cta.primary:hover {
    background-color: var(--forest-accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.hero-cta.secondary {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.hero-cta.secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    z-index: 2;
    animation: fadeInUp 1s ease 0.5s both;
}

.scroll-indicator span {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== Questions Section ===== */
.questions-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.about-card {
    background: linear-gradient(180deg, rgba(232, 245, 233, 0.9) 0%, rgba(208, 235, 215, 0.95) 100%);
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 12px 30px var(--shadow-md);
    border: 1px solid rgba(45, 80, 22, 0.12);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(102, 187, 106, 0.15), transparent 55%);
    pointer-events: none;
}

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

.about-card p {
    color: var(--forest-dark);
    line-height: 1.8;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    color: var(--forest-primary);
    margin-bottom: 3rem;
    font-weight: 700;
}

.accordion {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.accordion-item {
    background: var(--cream);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 15px var(--shadow-md);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--forest-primary);
    text-align: left;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.accordion-header:hover,
.accordion-header:active {
    background-color: var(--leaf-light);
    color: var(--forest-dark);
}

.accordion-header:active {
    transform: scale(0.98);
}

.chevron {
    transition: transform 0.3s ease;
    color: var(--forest-medium);
}

.accordion-item.active .chevron {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.accordion-content p {
    color: var(--forest-dark);
    line-height: 1.8;
}

.section-cta {
    display: block;
    margin: 0 auto;
    padding: 14px 36px;
    background-color: transparent;
    color: var(--forest-primary);
    border: 2px solid var(--forest-primary);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 200px;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.section-cta:hover,
.section-cta:active {
    background-color: var(--forest-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-md);
}

.section-cta:active {
    transform: translateY(0);
}

.section-cta.large {
    max-width: 300px;
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ===== Social Proof Section ===== */
.social-proof {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(241, 248, 233, 0.7) 0%, rgba(220, 237, 200, 0.7) 100%), 
                url('https://wallpapercave.com/wp/wp6689716.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.philosophy-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 10px 28px var(--shadow-md);
    border-left: 6px solid var(--forest-primary);
    position: relative;
    overflow: hidden;
}

.philosophy-card::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(158, 158, 158, 0.12) 0%, transparent 65%);
}

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

.philosophy-card p {
    color: var(--forest-dark);
    line-height: 1.75;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--shadow-md);
}

.avatar-placeholder {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.stars {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.star {
    color: #DDD;
}

.star.filled {
    color: #FFC107;
}

.testimonial-text {
    color: var(--forest-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--forest-medium);
    font-weight: 600;
}

/* ===== Section Shared Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3);
}

/* ===== Gallery Section ===== */
.gallery-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(33, 33, 33, 0.75) 0%, rgba(48, 48, 48, 0.65) 100%), 
                url('https://wallpapercave.com/wp/wp6689716.jpg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(158, 158, 158, 0.1) 0%, transparent 70%);
    pointer-events: none;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(66, 66, 66, 0.85) 0%, rgba(33, 33, 33, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.gallery-item .gallery-overlay {
    background: linear-gradient(135deg, rgba(66, 66, 66, 0.9) 0%, rgba(33, 33, 33, 0.95) 100%);
}

.gallery-icon {
    font-size: 3rem;
    color: var(--white);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

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

/* ===== Lightbox ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--white);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    line-height: 1;
    user-select: none;
}

.lightbox-close:hover {
    color: var(--forest-accent);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(45, 80, 22, 0.8);
    color: var(--white);
    border: none;
    font-size: 30px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    user-select: none;
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--forest-primary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.1rem;
    text-align: center;
    background-color: rgba(33, 33, 33, 0.8);
    padding: 12px 24px;
    border-radius: 16px;
    max-width: 80%;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

/* ===== Messaging Section ===== */
.messaging-section {
    padding: 100px 0;
    background-color: var(--white);
}

.messaging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 3rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.story-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 10px 25px var(--shadow-md);
    border: 1px solid rgba(33, 33, 33, 0.12);
}

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

.story-card p {
    color: var(--forest-dark);
    line-height: 1.7;
}

.story-meta {
    font-weight: 600;
    color: var(--forest-medium);
    margin-bottom: 1rem;
}

.message-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.message-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-md);
}

.message-card .icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

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

.message-card p {
    color: var(--forest-medium);
    line-height: 1.7;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(33, 33, 33, 0.75) 0%, rgba(48, 48, 48, 0.65) 100%), 
                url('https://wallpapercave.com/wp/wp6689716.jpg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(158, 158, 158, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-item svg {
    color: var(--white);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-item h4 {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.submit-button {
    padding: 1rem 2rem;
    background-color: var(--white);
    color: var(--forest-primary);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.submit-button:hover {
    background-color: var(--forest-accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.submit-button:active {
    transform: translateY(-1px);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    margin-top: 0.5rem;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(76, 175, 80, 0.2);
    border: 2px solid rgba(76, 175, 80, 0.5);
    color: #4caf50;
}

.form-message.error {
    display: block;
    background-color: rgba(244, 67, 54, 0.2);
    border: 2px solid rgba(244, 67, 54, 0.5);
    color: #f44336;
}

/* ===== Footer ===== */
.footer {
    background: rgba(33, 33, 33, 0.95);
    backdrop-filter: blur(15px);
    color: var(--white);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-logo img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

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

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

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

/* Tablet ir mažesni */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        gap: 50px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    /* Fixed background for mobile */
    body {
        background: linear-gradient(135deg, rgba(33, 33, 33, 0.75) 0%, rgba(48, 48, 48, 0.65) 100%), 
                    url('https://wallpapercave.com/wp/wp6689716.jpg') center/cover no-repeat fixed;
        background-size: cover;
    }
    
    /* Remove individual section backgrounds */
    .hero,
    .gallery-section,
    .contact-section {
        background: none !important;
    }
    
    .hero-overlay,
    .gallery-overlay,
    .contact-overlay {
        display: none;
    }
    
    .container {
        padding: 0 24px;
    }
    
    /* Navigation - Show Mobile Menu */
    .nav {
        padding: 1rem 0;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo svg {
        width: 35px;
        height: 35px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .cta-button {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
    
    /* Hero Section */
    .hero {
        min-height: 80vh;
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-logo img {
        width: 140px;
        height: 140px;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
    
    .image-placeholder {
        padding: 30px;
    }
    
    /* Sections */
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-badge {
        font-size: 0.85rem;
        padding: 7px 18px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .questions-section,
    .social-proof,
    .messaging-section,
    .contact-section {
        padding: 80px 0;
    }
    
    /* Accordion */
    .accordion-header {
        font-size: 1.05rem;
        padding: 1.25rem 1.5rem;
    }
    
    .accordion-content {
        padding: 0 1.5rem;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 1.5rem 1.25rem;
    }
    
    /* Testimonials */
    .testimonials {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.25rem;
    }
    
    /* Messaging Grid */
    .messaging-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        gap: 1.75rem;
    }
}

/* Mobile Large */
@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }
    
    /* Hero */
    .hero {
        min-height: 70vh;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-logo img {
        width: 110px;
        height: 110px;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 18px;
    }
    
    .hero-cta {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Sections */
    .questions-section,
    .social-proof,
    .gallery-section,
    .messaging-section,
    .contact-section {
        padding: 60px 0;
    }
    
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
    }
    
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 7px 16px;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    /* Accordion - Touch Friendly */
    .accordion-header {
        padding: 1.25rem 1.25rem;
        font-size: 1rem;
        line-height: 1.4;
        min-height: 60px;
    }
    
    .chevron {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
        margin-left: 10px;
    }
    
    /* Cards */
    .testimonial-card,
    .message-card {
        padding: 2rem 1.5rem;
    }
    
    /* Contact Form - Touch Friendly */
    .contact-form input,
    .contact-form textarea {
        padding: 1rem 1.25rem;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 12px;
    }
    
    .contact-form textarea {
        min-height: 140px;
    }
    
    .submit-button {
        padding: 1rem;
        font-size: 1rem;
        min-height: 52px;
    }
    
    /* Section CTAs - Touch Friendly */
    .section-cta {
        padding: 1rem 2rem;
        min-height: 52px;
        font-size: 1rem;
    }
    
    .section-cta.large {
        width: 100%;
        max-width: 100%;
        padding: 1.1rem 2rem;
        min-height: 56px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    /* Navigation - Mobile Optimized */
    .header {
        box-shadow: 0 2px 8px var(--shadow);
    }
    
    .nav {
        padding: 0.875rem 0;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .logo svg {
        width: 32px;
        height: 32px;
    }
    
    .hamburger {
        width: 26px;
        height: 20px;
    }
    
    .hamburger-line {
        height: 2.5px;
    }
    
    .hamburger.active .hamburger-line:nth-child(1) {
        transform: translateY(8.75px) rotate(45deg);
    }
    
    .hamburger.active .hamburger-line:nth-child(3) {
        transform: translateY(-8.75px) rotate(-45deg);
    }
    
    .mobile-menu {
        top: 68px;
        height: calc(100vh - 68px);
        width: 300px;
        padding: 1.5rem 0;
    }
    
    .mobile-menu-link {
        padding: 1.125rem 1.5rem;
        font-size: 1.05rem;
    }
    
    .mobile-cta {
        margin: 1.5rem;
        font-size: 1rem;
    }
    
    /* Hero */
    .hero {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-logo img {
        width: 90px;
        height: 90px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 7px 16px;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 100%;
        padding: 15px 24px;
        min-height: 54px;
    }
    
    /* Sections */
    .questions-section,
    .social-proof,
    .gallery-section,
    .messaging-section,
    .contact-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.85rem;
        line-height: 1.3;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.875rem;
    }
    
    
    .gallery-icon {
        font-size: 2.5rem;
    }
    
    /* Lightbox - Mobile */
    .lightbox-content {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 24px;
        padding: 12px 16px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-caption {
        bottom: 15px;
        font-size: 0.95rem;
        padding: 10px 16px;
        max-width: 90%;
    }
    
    /* Accordion - Extra Touch Friendly */
    .accordion {
        margin-bottom: 2.5rem;
    }
    
    .accordion-item {
        margin-bottom: 0.875rem;
        border-radius: 10px;
    }
    
    .accordion-header {
        padding: 1.25rem 1rem;
        font-size: 0.975rem;
        gap: 0.75rem;
    }
    
    .accordion-header span {
        flex: 1;
    }
    
    .accordion-content {
        padding: 0 1rem;
        font-size: 0.95rem;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 1rem 1.25rem;
    }
    
    /* Testimonials */
    .testimonials {
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 1.75rem 1.25rem;
    }
    
    .avatar-placeholder svg {
        width: 70px;
        height: 70px;
    }
    
    .stars {
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 1.25rem;
    }
    
    .testimonial-author {
        font-size: 0.9rem;
    }
    
    /* Message Cards */
    .messaging-grid {
        gap: 24px;
    }
    
    .message-card {
        padding: 1.75rem 1.25rem;
    }
    
    .message-card .icon svg {
        width: 42px;
        height: 42px;
    }
    
    .message-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.875rem;
    }
    
    .message-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Contact */
    .contact-item {
        gap: 1.25rem;
    }
    
    .contact-item svg {
        width: 22px;
        height: 22px;
    }
    
    .contact-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .contact-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Footer */
    .footer {
        padding: 1.25rem 0;
    }
    
    .footer-logo {
        font-size: 1.1rem;
    }
    
    .footer-logo img {
        width: 28px;
        height: 28px;
    }
    
    .footer-text {
        font-size: 0.875rem;
        line-height: 1.6;
        padding: 0 10px;
    }
}

/* Mobile Extra Small */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.65rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .accordion-header {
        font-size: 0.925rem;
        padding: 1.125rem 0.875rem;
    }
    
    .testimonial-card,
    .message-card {
        padding: 1.5rem 1rem;
    }
}
