/* 
 * Main Stylesheet for domain.com
 * Modern, bright, animated, responsive design
 */

:root {
    /* Color Palette */
    --primary: #3C40C6;    /* Indigo-cobalt */
    --accent: #FFA801;     /* Orange neon */
    --secondary: #34e7e4;  /* Mint ice */
    --bg-dark: #0f0f0f;    /* Dark blue to coal black gradient start */
    --bg-darker: #050505;  /* Dark blue to coal black gradient end */
    --text-primary: #ffffff; /* White */
    --text-secondary: #A4B0BE; /* Gray */
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-s: 1rem;
    --spacing-m: 2rem;
    --spacing-l: 3rem;
    --spacing-xl: 5rem;
    
    /* Typography */
    --font-heading: 'Rubik', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: var(--line-height-base);
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-s);
}

h1 {
    font-size: 3rem;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-m);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a:hover {
    color: var(--secondary);
}

a.underline:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

a.underline:hover:after {
    width: 100%;
}

ul, ol {
    padding-left: var(--spacing-m);
    margin-bottom: var(--spacing-m);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-s);
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(52, 231, 228, 0.5); }
    50% { box-shadow: 0 0 20px rgba(52, 231, 228, 0.8); }
    100% { box-shadow: 0 0 5px rgba(52, 231, 228, 0.5); }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.mb-s { margin-bottom: var(--spacing-s); }
.mb-m { margin-bottom: var(--spacing-m); }
.mb-l { margin-bottom: var(--spacing-l); }

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.4s; }
.animate-delay-3 { animation-delay: 0.6s; }
.animate-delay-4 { animation-delay: 0.8s; }

/* Header & Navigation */
.site-header {
    padding: var(--spacing-s) 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease;
    background-color: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.logo-svg {
    width: 150px;
    height: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav li {
    margin-left: var(--spacing-m);
}

.main-nav a {
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--accent);
}

.main-nav a:hover:after, .main-nav a.active:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.menu-toggle-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(15, 15, 15, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 5rem var(--spacing-m);
        transition: right 0.3s ease;
        z-index: 5;
    }
    
    .main-nav.menu-open {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin: 1rem 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .site-header.menu-open .menu-toggle-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .site-header.menu-open .menu-toggle-line:nth-child(2) {
        opacity: 0;
    }
    
    .site-header.menu-open .menu-toggle-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.btn:hover:before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--primary) 70%, var(--accent));
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(60, 64, 198, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(60, 64, 198, 0.5);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(90deg, var(--accent), var(--accent) 70%, var(--secondary));
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(255, 168, 1, 0.3);
}

.btn-accent:hover {
    box-shadow: 0 8px 25px rgba(255, 168, 1, 0.5);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: rgba(255, 168, 1, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.8), rgba(5, 5, 5, 0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    margin-bottom: var(--spacing-m);
    animation: fadeIn 1s ease 0.2s forwards;
    opacity: 0;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-l);
    color: var(--text-secondary);
    animation: fadeIn 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-s);
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
    justify-content: center;
}

/* About Section */
.about {
    position: relative;
    overflow: hidden;
}

.about-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(5, 5, 5, 0.95));
}

.about-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-gap: var(--spacing-l);
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-m);
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.about-image-small {
    max-width: 100%;
    height: auto;
}

.about-image:hover {
    transform: rotate(0);
}

/* Services Section */
.services {
    background: linear-gradient(to bottom, var(--bg-dark), rgba(15, 15, 15, 0.95));
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    display: inline-block;
    padding-bottom: var(--spacing-xs);
    position: relative;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: var(--spacing-l);
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: var(--spacing-m);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(60, 64, 198, 0.1);
    border-color: rgba(255, 168, 1, 0.1);
}

.service-icon {
    margin-bottom: var(--spacing-m);
    width: 80px;
    height: 80px;
    background: rgba(60, 64, 198, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent);
}

.service-card h3 {
    margin-bottom: var(--spacing-s);
    color: var(--accent);
}

.service-card p {
    color: var(--text-secondary);
}

/* Why Choose Us Section */
.why-us {
    background: radial-gradient(circle at top right, rgba(60, 64, 198, 0.05), transparent);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: var(--spacing-m);
}

.why-us-card {
    padding: var(--spacing-m);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(52, 231, 228, 0.1);
}

.why-us-card-icon {
    margin-bottom: var(--spacing-s);
    color: var(--accent);
    font-size: 2rem;
}

.why-us-card h3 {
    margin-bottom: var(--spacing-s);
    font-size: 1.5rem;
}

.why-us-card p {
    color: var(--text-secondary);
}

/* Gallery Section */
.gallery {
    background: linear-gradient(to top, var(--bg-dark), rgba(15, 15, 15, 0.95));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 15px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-s);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--text-primary);
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: var(--spacing-m);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: var(--spacing-m);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 168, 1, 0.2);
}

.testimonial-content {
    margin-bottom: var(--spacing-m);
    position: relative;
}

.testimonial-content:before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(255, 168, 1, 0.2);
    position: absolute;
    top: -2rem;
    left: -1rem;
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: var(--spacing-s);
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-name {
    font-weight: 600;
}

.testimonial-author-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Order Form Section */
.order-form {
    background: radial-gradient(circle at bottom left, rgba(52, 231, 228, 0.05), transparent);
    position: relative;
}

.form-container {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: var(--spacing-l);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: var(--spacing-l);
}

.form-group {
    margin-bottom: var(--spacing-m);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.form-input, 
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23FFA801' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 3rem;
    box-shadow: 0 0 10px rgba(255, 168, 1, 0.2);
}

.form-select option {
    background-color: rgba(15, 15, 15, 0.95);
    color: var(--text-primary);
    padding: 0.5rem;
}

.form-input:focus, 
.form-select:focus, 
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(255, 168, 1, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-checkbox-group {
    margin-top: var(--spacing-s);
}

.form-checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-xs);
}

.form-checkbox {
    margin-right: var(--spacing-xs);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.form-checkbox:checked:after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent);
    font-size: 14px;
}

.form-checkbox-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-checkbox-label a {
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-top: var(--spacing-m);
}

/* FAQ Section */
.faq {
    background: linear-gradient(to bottom, var(--bg-dark), rgba(15, 15, 15, 0.95));
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: var(--spacing-s);
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    background: rgba(255, 255, 255, 0.02);
    padding: var(--spacing-s) var(--spacing-m);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border-radius: 5px;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-title {
    margin: 0;
    font-size: 1.2rem;
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: none;
    padding: 0 var(--spacing-m);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.accordion-content.active {
    max-height: 1000px;
    padding-top: var(--spacing-m);
    padding-bottom: var(--spacing-m);
}

.accordion-header.active {
    background: rgba(60, 64, 198, 0.1);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
}

/* Contact Section */
.contact {
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: var(--spacing-l);
    align-items: center;
}

.contact-info {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: var(--spacing-l);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info h3 {
    margin-bottom: var(--spacing-m);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-m);
}

.contact-icon {
    margin-right: var(--spacing-s);
    width: 40px;
    height: 40px;
    background: rgba(255, 168, 1, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.contact-text h4 {
    margin-bottom: 5px;
    color: var(--text-primary);
}

.contact-text p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.site-footer {
    background: linear-gradient(to bottom, rgba(20, 20, 50, 0.95), rgba(5, 5, 5, 0.98));
    padding: var(--spacing-xl) 0 var(--spacing-m);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: var(--spacing-l);
}

.footer-about {
    grid-column: span 2;
}

.footer-logo {
    margin-bottom: var(--spacing-m);
}

.footer-about p {
    color: var(--text-secondary);
}

.footer-contact ul,
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-s);
    color: var(--text-secondary);
}

.footer-contact .icon {
    margin-right: var(--spacing-xs);
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-social h3 {
    margin-bottom: var(--spacing-s);
}

.social-icons {
    display: flex;
    gap: var(--spacing-s);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: rgba(255, 168, 1, 0.1);
    border-color: rgba(255, 168, 1, 0.3);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-l);
    margin-top: var(--spacing-l);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--spacing-m);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeIn 0.5s ease;
}

.cookie-popup p {
    margin: 0 0 var(--spacing-m) 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
}

.cookie-popup button {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    background: var(--accent);
    color: var(--text-primary);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 168, 1, 0.3);
}

.cookie-popup button:hover {
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 168, 1, 0.4);
}

/* Policy Pages */
.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem var(--spacing-m) var(--spacing-xl);
}

.policy-content {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: var(--spacing-xl) var(--spacing-l);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-content h1 {
    margin-bottom: var(--spacing-l);
}

.policy-content h2 {
    margin-top: var(--spacing-l);
    margin-bottom: var(--spacing-s);
    font-size: 1.8rem;
}

.policy-content h3 {
    margin-top: var(--spacing-m);
    margin-bottom: var(--spacing-xs);
    font-size: 1.5rem;
}

.policy-content p {
    color: var(--text-secondary);
}

.policy-content ul, .policy-content ol {
    color: var(--text-secondary);
}

.back-to-home {
    margin-top: var(--spacing-m);
    display: inline-block;
}

/* Thanks page */
.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--spacing-xl);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-xl);
    border-radius: 15px;
    border: 2px solid rgba(255, 168, 1, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.thanks-icon {
    font-size: 5rem;
    color: var(--accent);
    animation: pulse 2s infinite;
    margin-bottom: var(--spacing-m);
}

.thanks-content h1 {
    margin-bottom: var(--spacing-s);
}

.thanks-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-l);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.8rem;
    }
    
    .contact-grid,
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        min-height: 300px;
    }
    
    .footer-about {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container {
        width: 95%;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-gap: var(--spacing-m);
    }
    
    .form-container {
        padding: var(--spacing-m);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .services-grid,
    .why-us-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
