/* Green Marble OÜ - Luxury Custom CSS Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    /* Premium Color Palette */
    --color-bg-dark: #031710;       /* Deepest emerald-black */
    --color-bg-medium: #062319;     /* Deep rich emerald */
    --color-bg-light: #0d382b;      /* Muted emerald green */
    
    --color-gold: #c5a85c;          /* Muted luxurious gold */
    --color-gold-light: #e5d5a5;    /* Soft glowing gold */
    --color-gold-gradient: linear-gradient(135deg, #e5d5a5 0%, #c5a85c 50%, #907635 100%);
    
    --color-slate-light: #e6edea;   /* Marble off-white */
    --color-slate: #9bb0a8;         /* Cool gray-green slate */
    
    --color-white: #ffffff;
    --color-success: #2e7d32;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout Details */
    --container-width: 1200px;
    --section-padding: 8rem 2rem;
    --transition-fast: all 0.3s ease;
    --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Shadows & Glassmorphism */
    --shadow-soft: 0 15px 45px -10px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 25px 60px -10px rgba(197, 168, 92, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: 1px solid rgba(255, 255, 255, 0.06);
    --blur-strength: blur(12px);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-slate);
    background-color: var(--color-bg-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-weight: 600;
    line-height: 1.3;
}

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

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Luxury Header / Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 23, 16, 0.85);
    backdrop-filter: var(--blur-strength);
    -webkit-backdrop-filter: var(--blur-strength);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

header.scrolled {
    background: rgba(3, 23, 16, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: var(--transition-fast);
}

header.scrolled .nav-container {
    height: 75px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a:not(.btn) {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 0.5rem 0;
    color: var(--color-slate-light);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold-gradient);
    transition: var(--transition-fast);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--color-gold-light);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}

.burger-line {
    width: 28px;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

/* Premium Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(197, 168, 92, 0.5);
    color: var(--color-gold);
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-gold-gradient);
    transition: var(--transition-fast);
    z-index: -1;
}

.btn:hover {
    color: var(--color-bg-dark);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(197, 168, 92, 0.3);
}

.btn:hover::before {
    left: 0;
}

.btn-solid {
    background: var(--color-gold-gradient);
    color: var(--color-bg-dark);
    border-color: transparent;
}

.btn-solid::before {
    background: var(--color-white);
}

.btn-solid:hover {
    color: var(--color-bg-dark);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: linear-gradient(180deg, rgba(3, 23, 16, 0.4) 0%, rgba(3, 23, 16, 0.95) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: linear-gradient(rgba(3, 23, 16, 0.8), rgba(3, 23, 16, 0.95)), url('/images/service_cladding.png');
    background-size: cover;
    background-position: center;
    animation: backgroundZoom 25s infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(13, 56, 43, 0.2) 0%, transparent 60%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: var(--color-white);
    line-height: 1.15;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.6s;
}

.hero h1 span {
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--color-slate);
    margin-bottom: 3rem;
    max-width: 650px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.2s;
}

/* Sections */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-white);
    text-transform: uppercase;
}

.section-title span {
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--color-slate);
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

/* About Section Home */
.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-preview-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.about-preview-content p {
    margin-bottom: 1.8rem;
}

.about-preview-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.about-preview-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--color-slate-light);
}

.about-preview-features li::before {
    content: '✓';
    color: var(--color-gold);
    font-weight: bold;
}

.about-preview-image {
    position: relative;
    border: 1px solid rgba(197, 168, 92, 0.2);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.01);
}

.about-preview-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    border-top: 2px solid var(--color-gold);
    border-left: 2px solid var(--color-gold);
}

.about-preview-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25px;
    height: 25px;
    border-bottom: 2px solid var(--color-gold);
    border-right: 2px solid var(--color-gold);
}

.about-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: grayscale(20%) contrast(110%);
}

/* Services Home Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    backdrop-filter: var(--blur-strength);
    -webkit-backdrop-filter: var(--blur-strength);
    transition: var(--transition-slow);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-gold-gradient);
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(197, 168, 92, 0.3);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::after {
    width: 100%;
}

.service-icon-wrapper {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.service-link {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link span {
    transition: var(--transition-fast);
}

.service-card:hover .service-link span {
    transform: translateX(6px);
}

/* Stats Section */
.stats {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-medium) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.stat-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-slow);
}

.stat-item:hover {
    background: var(--glass-bg);
    border-color: rgba(197, 168, 92, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-slate-light);
    text-transform: uppercase;
}

/* Call to Action (CTA) */
.cta {
    text-align: center;
    background: linear-gradient(rgba(3, 23, 16, 0.85), rgba(3, 23, 16, 0.85)), url('/images/service_structural.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 10rem 2rem;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: var(--color-slate-light);
}

/* Footer styling */
footer {
    background-color: #020f0b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6rem 0 3rem 0;
    color: var(--color-slate);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-info p {
    margin-top: 1.5rem;
    max-width: 320px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--color-gold-gradient);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-gold-light);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-contact-icon {
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer-contact-text strong {
    display: block;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

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

.footer-bottom-links a:hover {
    color: var(--color-gold);
}

/* Inner Page Header */
.inner-hero {
    padding: 12rem 0 6rem 0;
    background: linear-gradient(180deg, rgba(3, 23, 16, 0.95) 0%, var(--color-bg-dark) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
}

.inner-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumbs a {
    color: var(--color-gold);
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.3);
}

/* About Page Styles */
.about-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-quote {
    border-left: 2px solid var(--color-gold);
    padding-left: 2rem;
    font-style: italic;
    font-size: 1.15rem;
    margin: 2rem 0;
    color: var(--color-slate-light);
}

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

.value-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 3rem 2.5rem;
    transition: var(--transition-slow);
}

.value-card:hover {
    background: var(--glass-bg);
    border-color: rgba(197, 168, 92, 0.1);
    transform: translateY(-5px);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
    letter-spacing: 1px;
}

/* Services Showcase (Services Index Page) */
.services-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6rem;
}

.service-row-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 3.5rem;
    transition: var(--transition-slow);
}

.service-row-card:nth-child(even) {
    grid-template-columns: 1.2fr 1fr;
}

.service-row-card:nth-child(even) .service-row-image-container {
    order: 2;
}

.service-row-card:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(197, 168, 92, 0.15);
    box-shadow: var(--shadow-soft);
}

.service-row-image-container {
    border: 1px solid rgba(197, 168, 92, 0.15);
    padding: 1rem;
}

.service-row-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    filter: grayscale(10%) contrast(105%);
}

.service-row-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.service-row-tagline {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-row-content p {
    margin-bottom: 2rem;
}

/* Service Detail Page */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 6rem;
}

.service-detail-body h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-detail-body p {
    margin-bottom: 2rem;
}

.service-gallery {
    margin-top: 4rem;
}

.service-gallery-main {
    border: 1px solid rgba(197, 168, 92, 0.2);
    padding: 1rem;
}

.service-gallery-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.service-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

.sidebar-box {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 3rem 2.5rem;
    margin-bottom: 2.5rem;
    backdrop-filter: var(--blur-strength);
    -webkit-backdrop-filter: var(--blur-strength);
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.8rem;
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--color-slate-light);
    font-size: 0.95rem;
}

.sidebar-list li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

.sidebar-materials span, .sidebar-apps span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    margin: 0 0.5rem 0.5rem 0;
    font-size: 0.85rem;
    color: var(--color-slate-light);
    border-radius: 2px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
}

.contact-form-container {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 4rem;
    backdrop-filter: var(--blur-strength);
    -webkit-backdrop-filter: var(--blur-strength);
}

.alert-success {
    background: rgba(46, 125, 50, 0.15);
    border: 1px solid rgba(46, 125, 50, 0.3);
    color: #81c784;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    border-radius: 2px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
}

.form-control {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1.2rem;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    border-radius: 2px;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.04);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 3rem;
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-white);
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.8rem;
}

.map-container {
    height: 300px;
    border: 1px solid rgba(197, 168, 92, 0.15);
    background: radial-gradient(circle, rgba(13, 56, 43, 0.15) 0%, rgba(3, 23, 16, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    padding: 2rem;
    z-index: 2;
}

.map-placeholder p {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.map-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: radial-gradient(#c5a85c 1px, transparent 1px);
    background-size: 20px 20px;
}

/* FAQs Accordion */
.faqs-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.faq-header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    transition: transform 0.4s ease;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-content {
    padding: 0 2rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    font-size: 0.95rem;
}

/* FAQ Active States */
.faq-item.active {
    background: var(--glass-bg);
    border-color: rgba(197, 168, 92, 0.15);
}

.faq-item.active .faq-question {
    color: var(--color-gold-light);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Privacy Policy Layout */
.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 5rem;
    backdrop-filter: var(--blur-strength);
    -webkit-backdrop-filter: var(--blur-strength);
}

.privacy-date {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 3rem;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    color: var(--color-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.privacy-section p {
    margin-bottom: 1rem;
}

.privacy-section ul {
    list-style: none;
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.privacy-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.privacy-section ul li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

/* Scroll Animations */
.reveal-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

.reveal-hidden.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .footer-info {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 5rem 1.5rem;
    }
    
    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(3, 23, 16, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        transition: left 0.5s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .burger-menu {
        display: flex;
    }
    
    /* Burger transformation when active */
    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .about-preview-grid, 
    .about-detail-grid,
    .service-row-card,
    .service-row-card:nth-child(even),
    .service-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .service-row-card:nth-child(even) .service-row-image-container {
        order: 0;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .contact-form-container {
        padding: 2.5rem 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-container {
        padding: 2.5rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

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