@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --primary: #2D5016;
    --primary-light: #4A7C2A;
    --primary-dark: #1A3009;
    --accent: #D4A574;
    --accent-light: #E8C9A0;
    --accent-dark: #B8905A;
    --background: #FAF9F6;
    --background-alt: #F5F3F0;
    --surface: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-light: #6B6B6B;
    --border: #E5E5E5;
    --border-light: #F0F0F0;
    --success: #4CAF50;
    --error: #E53935;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --gradient-primary: linear-gradient(135deg, #2D5016 0%, #4A7C2A 100%);
    --gradient-accent: linear-gradient(135deg, #D4A574 0%, #E8C9A0 100%);
    --gradient-hero: linear-gradient(135deg, rgba(45, 80, 22, 0.95) 0%, rgba(74, 124, 42, 0.95) 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    font-size: 1.0625rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
header {
    background-color: var(--surface);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-light);
}

nav {
    padding: 1rem 0;
}

nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: var(--transition);
    z-index: 1001;
}

.brand:hover {
    color: var(--primary);
    transform: scale(1.05);
}

.brand-icon {
    font-size: 1.75rem;
    margin-right: 0.5rem;
    color: var(--primary);
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text-primary);
    padding: 0.5rem 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger:focus {
    outline: none;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: var(--surface);
    padding: 12rem 1rem 10rem;
    text-align: center;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

/* Animated Background Layers */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(212, 165, 116, 0.08) 0%, transparent 60%);
    animation: heroFloat 15s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 3px,
            rgba(255, 255, 255, 0.03) 3px,
            rgba(255, 255, 255, 0.03) 6px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 3px,
            rgba(255, 255, 255, 0.02) 3px,
            rgba(255, 255, 255, 0.02) 6px
        );
    animation: heroPattern 25s linear infinite;
    z-index: 0;
    opacity: 0.6;
}

/* Floating Decorative Elements */
.hero .container::before {
    content: '🌿';
    position: absolute;
    top: -5rem;
    left: -3rem;
    font-size: 8rem;
    opacity: 0.1;
    animation: floatElement 8s ease-in-out infinite;
    z-index: -1;
}

.hero .container::after {
    content: '🌱';
    position: absolute;
    bottom: -5rem;
    right: -3rem;
    font-size: 8rem;
    opacity: 0.1;
    animation: floatElement 10s ease-in-out infinite reverse;
    z-index: -1;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

@keyframes heroPattern {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 950px;
    width: 100%;
}

.hero-content {
    animation: heroContentIn 1s ease-out;
    position: relative;
}

@keyframes heroContentIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero h1 {
    color: var(--surface);
    margin-bottom: 2.5rem;
    text-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.4),
        0 2px 15px rgba(0, 0, 0, 0.3),
        0 1px 5px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    position: relative;
    display: inline-block;
    animation: heroTitleIn 1s ease-out 0.2s both;
    transform-origin: center;
}

@keyframes heroTitleIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero h1::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 3px;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.6);
    animation: underlineExpand 1s ease-out 0.8s both;
}

@keyframes pulseRing {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes underlineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 120px;
        opacity: 1;
    }
}

.hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    max-width: 780px;
    margin: 3rem auto 4rem;
    font-weight: 300;
    line-height: 1.8;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.02em;
    animation: heroTextIn 1s ease-out 0.4s both;
    position: relative;
}

@keyframes heroTextIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p::before,
.hero p::after {
    content: '✨';
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: sparkle 3s ease-in-out infinite;
}

.hero p::before {
    left: -2rem;
    top: 0;
    animation-delay: 0s;
}

.hero p::after {
    right: -2rem;
    bottom: 0;
    animation-delay: 1.5s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2) rotate(180deg);
    }
}

/* Sections */
section {
    padding: 6rem 1rem;
}

section.alt-bg {
    background-color: var(--background-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1.5rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cards */
.card {
    background-color: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}

.card:hover::before {
    transform: scaleX(1);
}

.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.card:hover img {
    transform: scale(1.05);
}

.card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 3rem 2rem;
}

.feature-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--surface);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--surface);
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}



.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--surface);
}

.btn:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--gradient-accent);
    color: var(--text-primary);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--surface);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Forms */
form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--surface);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: 2rem;
}

form label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--background);
    color: var(--text-primary);
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="tel"]:focus,
form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--surface);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

form textarea {
    min-height: 180px;
    resize: vertical;
    font-family: 'Inter', sans-serif;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9375rem;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    line-height: 1.6;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--surface);
    padding: 4rem 1rem 2rem;
    margin-top: 6rem;
}

footer a {
    color: var(--accent-light);
    transition: var(--transition);
}

footer a:hover {
    color: var(--surface);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
    font-weight: 500;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.copyright {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Privacy Popup */
.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--surface);
    padding: 2rem;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: none;
    border-top: 4px solid var(--primary);
}

.privacy-popup.active {
    display: block;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.privacy-popup-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.privacy-popup p {
    margin: 0;
    flex: 1;
    min-width: 250px;
    color: var(--text-secondary);
}

.privacy-popup-buttons {
    display: flex;
    gap: 1rem;
}

.privacy-popup-buttons .btn {
    padding: 0.75rem 2rem;
    font-size: 0.9375rem;
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.content-section img {
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
}

/* Highlight Box */
.highlight-box {
    background: var(--gradient-accent);
    padding: 3rem;
    border-radius: var(--radius-xl);
    margin: 3rem 0;
    border-left: 6px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.highlight-box h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.highlight-box p {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.process-step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    color: var(--surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background: var(--surface);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-content {
    padding: 2rem;
}

.gallery-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.gallery-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    padding: 2rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.contact-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-item a {
    color: var(--primary);
    font-weight: 500;
}

/* Success Page */
.success-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--surface);
}

.success-content h2 {
    margin-bottom: 1.5rem;
}

.success-content .btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* Utility Classes */
.hero-buttons {
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    animation: heroButtonsIn 1s ease-out 0.6s both;
    position: relative;
}

@keyframes heroButtonsIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-buttons .btn {
    position: relative;
    overflow: visible;
    animation: buttonPulse 2s ease-in-out infinite;
}

.hero-buttons .btn:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(212, 165, 116, 0.4);
    }
    50% {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3), 0 0 0 8px rgba(212, 165, 116, 0);
    }
}

.btn-spacing {
   color: var(--surface);
}

.intro-text {
    text-align: center;
    font-size: 1.125rem;
    max-width: 900px;
    margin: 0 auto;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.text-large {
    font-size: 1.125rem;
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

.text-center-mt {
    text-align: center;
    margin-top: 3rem;
}

.grid-align-start {
    align-items: start;
}

.btn-full {
    width: 100%;
}

.highlight-box p.text-large {
    font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 5rem 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--surface);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
        display: block;
    }
    
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: -1;
    }
    
    .nav-menu.active::before {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-menu li:first-child {
        border-top: 1px solid var(--border-light);
    }
    
    .nav-menu a {
        display: block;
        padding: 1.25rem 0;
        font-size: 1rem;
        width: 100%;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a:hover {
        padding-left: 0.5rem;
    }
    
    .brand {
        font-size: 1.25rem;
    }
    
    .brand-icon {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 8rem 1rem 6rem;
        min-height: 55vh;
    }
    
    .hero .container::before,
    .hero .container::after {
        font-size: 5rem;
        opacity: 0.08;
    }
    
    .hero h1::before {
        width: 40px;
        height: 40px;
        top: -1rem;
    }
    
    .hero h1::after {
        width: 100px;
        height: 4px;
    }
    
    .hero p::before,
    .hero p::after {
        display: none;
    }
    
    section {
        padding: 4rem 1rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .card {
        padding: 2rem;
    }
    
    form {
        padding: 2rem 1.5rem;
    }
    
    .privacy-popup-content {
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-popup-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .privacy-popup-buttons .btn {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .success-content .btn-group {
        flex-direction: column;
    }
    
    .success-content .btn-group .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    nav {
        padding: 0.875rem 0;
    }
    
    .brand {
        font-size: 1.125rem;
    }
    
    .brand-icon {
        font-size: 1.375rem;
    }
    
    .hamburger {
        width: 24px;
        height: 20px;
    }
    
    .nav-menu {
        width: 260px;
        padding: 4.5rem 1.5rem 2rem;
    }
    
    .nav-menu a {
        font-size: 0.9375rem;
        padding: 1rem 0;
    }
    
    .hero {
        padding: 6rem 1rem 4rem;
        min-height: 50vh;
    }
    
    .hero .container::before,
    .hero .container::after {
        font-size: 4rem;
        opacity: 0.06;
    }
    
    .hero h1 {
        margin-bottom: 2rem;
    }
    
    .hero h1::before {
        width: 30px;
        height: 30px;
        top: -0.75rem;
    }
    
    .hero h1::after {
        width: 80px;
        height: 3px;
        bottom: -1rem;
    }
    
    .hero p {
        margin: 2.5rem auto 3rem;
    }
    
    .hero p::before,
    .hero p::after {
        display: none;
    }
    
    .hero-buttons {
        margin-top: 3rem;
        gap: 1rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .card img {
        height: 200px;
    }
    
    form {
        padding: 1.5rem 1rem;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }
    
    .highlight-box {
        padding: 2rem 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 240px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 0.9375rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    section {
        padding: 2.5rem 0.75rem;
    }
    
    .card {
        padding: 1.25rem;
    }
    
    form {
        padding: 1.25rem 0.75rem;
    }
    
    .hero {
        padding: 5rem 0.75rem 3rem;
        min-height: 45vh;
    }
    
    .hero .container {
        padding: 0 0.5rem;
    }
    
    .hero .container::before,
    .hero .container::after {
        display: none;
    }
    
    .hero h1 {
        font-size: clamp(1.5rem, 8vw, 2rem) !important;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
        padding: 0 0.5rem;
    }
    
    .hero h1::before {
        width: 25px;
        height: 25px;
        top: -0.5rem;
        border-width: 2px;
    }
    
    .hero h1::after {
        width: 60px;
        height: 3px;
        bottom: -0.75rem;
    }
    
    .hero p {
        font-size: clamp(0.9375rem, 4vw, 1.125rem) !important;
        margin: 2rem auto 2.5rem;
        padding: 0 0.5rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        margin-top: 2.5rem;
        gap: 0.75rem;
        flex-direction: column;
        width: 100%;
        padding: 0 0.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .hero-content {
        width: 100%;
    }
}

@media (max-width: 546px) {
    .mt-2{
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
 }