/* Gofroj Services - Main Styles */
:root {
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-dark: #1f3d2b;
    --color-dark-alt: #162c1e;
    --color-primary: #1f3d2b;
    --color-primary-light: #2c593f;
    --color-accent: #f4c542;
    --color-accent-hover: #e0b336;
    --color-text: #2c3e34;
    --color-text-muted: #647d6e;
    --color-border: #e2e8e4;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s ease;

    --container-width: 1200px;
    --section-padding: 100px 0;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --shadow-sm: 0 4px 15px rgba(31, 61, 43, 0.05);
    --shadow-md: 0 10px 30px rgba(31, 61, 43, 0.08);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h2.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 800px;
}

.section {
    padding: var(--section-padding);
}

.bg-dark {
    background-color: var(--color-dark);
    color: #ffffff;
}

.bg-dark .section-title,
.bg-dark .section-subtitle,
.bg-dark .about-subtitle,
.bg-dark .about-text,
.bg-dark .gallery-caption,
.bg-dark .stat-label {
    color: #ffffff;
}

.bg-dark .section-subtitle,
.bg-dark .about-text {
    color: rgba(255, 255, 255, 0.8);
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.section-line {
    width: 60px;
    height: 4px;
    background-color: var(--color-accent);
    margin-bottom: 2rem;
}

.section-header.text-center .section-line {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
    box-shadow: 0 4px 10px rgba(244, 208, 63, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: var(--color-dark);
}

.btn-outline {
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    padding: 8px 18px;
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    padding: 15px 0;
    transition: padding 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: 1px;
}

.logo span {
    color: var(--color-accent);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-link:not(.btn):hover {
    color: var(--color-accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-dark);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.mobile-menu-btn span:nth-child(1) {
    top: 0;
}

.mobile-menu-btn span:nth-child(2) {
    top: 10px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 20px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -15%;
    left: -15%;
    width: 130%;
    height: 130%;
    background-image: url('../img/bg_day_garden.jpg');
    background-size: cover;
    background-position: center;
    will-change: transform;
    animation: panZoom 18s ease-in-out infinite alternate;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 25, 15, 0.85) 0%, rgba(10, 25, 15, 0.4) 100%);
    z-index: 1;
}

@keyframes panZoom {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.2) translate(-6%, -4%);
    }
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    border-left: 4px solid var(--color-accent);
    padding-left: 1rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-benefits {
    display: flex;
    gap: 1.5rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-benefits .icon {
    color: var(--color-accent);
    font-weight: 800;
}

/* Services Parallax Background */
.has-parallax {
    position: relative;
    overflow: hidden;
}

.services-parallax-bg, .why-us-parallax-bg, .contact-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg_night_garden.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.services-parallax-bg .overlay, .why-us-parallax-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 15, 0.65);
    z-index: 1;
}

.contact-parallax-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 15, 0.45);
    z-index: 1;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 40px 80px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(27, 67, 50, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 50px 100px rgba(0, 0, 0, 0.35);
    border-color: var(--color-accent);
}

.service-content {
    flex: 1;
}

.service-bullets {
    margin: 1.2rem 0;
    list-style: none;
    padding: 0;
}

.service-bullets li {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.service-bullets li .icon {
    color: var(--color-accent);
    font-weight: 800;
}

.service-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.service-footer .btn {
    flex: 1;
    min-width: 120px;
    padding: 10px 14px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    background-color: rgba(27, 67, 50, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background-color: rgba(244, 208, 63, 0.2);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.service-desc {
    color: var(--color-text-muted);
}

/* About Section */
.about {
    position: relative;
    overflow: hidden;
    background-color: var(--color-dark);
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(44, 89, 63, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(244, 208, 63, 0.05) 0%, transparent 40%);
    animation: glowDrift 20s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

@keyframes glowDrift {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    100% {
        transform: translate(-3%, 3%) scale(1.05) rotate(2deg);
    }
}

.about-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.about-text {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    z-index: 3;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 50px rgba(244, 208, 63, 0.15);
    aspect-ratio: 4/3;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Why Us Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.why-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--color-accent);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.why-desc {
    color: var(--color-text-muted);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background-color: var(--color-dark-alt);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08); /* slightly softer border */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25); /* smooth premium shadow avoiding harsh darks */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.image-compare {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.img-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
    transition: var(--transition);
}

.gallery-item:hover .img-after {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.label-before,
.label-after {
    position: absolute;
    top: 12px;
    padding: 4px 14px;
    background: rgba(10, 20, 15, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.75rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.label-before {
    left: 10px;
}

.label-after {
    right: 10px;
}

.gallery-caption {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.2rem;
}

/* Contact Section */
.contact-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.75) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 25px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-weight: 800;
}

.contact-desc {
    color: var(--color-text);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1.2rem;
    color: var(--color-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-list li a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list li a:hover {
    color: var(--color-accent);
}

.contact-icon {
    background-color: var(--color-accent);
    color: var(--color-primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(244, 208, 63, 0.3);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-dark);
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--color-text);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(44, 62, 52, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background-color: #ffffff;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(244, 208, 63, 0.15);
}

.contact-form .btn {
    white-space: nowrap;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 800;
    margin-top: 1rem;
}

.form-note {
    text-align: center;
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 500;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--color-dark) 0%, #152b1e 100%);
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Subtle top border */
    color: #ffffff;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 1.5rem;
}

.footer-brand .brand-benefit {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-phone {
    color: var(--color-accent);
    font-weight: 800;
    font-size: 1.15rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: #ffffff;
}

.footer-email {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--color-accent);
}

.footer-cta {
    margin-top: 0.5rem;
    display: inline-block;
    padding: 12px 24px;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.footer-bottom {
    background-color: var(--color-dark-alt);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Responsive */
@media (max-width: 992px) {
    .services-parallax-bg, .why-us-parallax-bg, .contact-parallax-bg {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .contact-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-bg::before {
        animation: none;
        transform: translate(0, 0) scale(1);
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-bg-alt);
        padding: 80px 30px;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        border-left: none;
        padding-left: 0;
    }

    .hero-actions {
        justify-content: center;
        width: 100%;
    }

    .hero-benefits {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        font-size: 1rem;
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .why-grid, .services-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Form Message */
.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: var(--radius-sm, 5px);
    font-weight: 500;
    text-align: center;
}
.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Honeypot field */
.website-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}