/* ========================================
   DOMAIN - MODERN ACCOUNTING WEBSITE
   Color Palette:
   - Primary: #2B2D42 (deep navy)
   - Accent: #EF233C (bright red)
   - Background: #F8F9FA (off-white)
   - Secondary: #8D99AE (blue-gray)
======================================== */

/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2B2D42;
    background-color: #F8F9FA;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #6B7280;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #EF233C, #FF4757);
    color: white;
    box-shadow: 0 4px 20px rgba(239, 35, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(239, 35, 60, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #2B2D42, #3C3F5A);
    color: white;
    box-shadow: 0 4px 20px rgba(43, 45, 66, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(43, 45, 66, 0.4);
}

.btn-outline {
    background: transparent;
    color: #2B2D42;
    border: 2px solid #2B2D42;
}

.btn-outline:hover {
    background: #2B2D42;
    color: white;
    transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2B2D42, #3C3F5A);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-accept {
    background: #EF233C;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    background: #d91e36;
    transform: translateY(-1px);
}

.btn-info {
    color: #8D99AE;
    text-decoration: underline;
}

.btn-info:hover {
    color: white;
}

/* Header */
.header {
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(43, 45, 66, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2B2D42, #EF233C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

/* Mobile Menu Toggle */
.menu-toggle-checkbox {
    display: none;
}

.menu-toggle-label {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: #2B2D42;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Navigation Menu */
.nav-menu {
    position: relative;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: #2B2D42;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #EF233C;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #EF233C;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #EF233C, #FF4757);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(239, 35, 60, 0.3);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 35, 60, 0.4);
}

.phone-icon {
    font-size: 1.2rem;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 45, 66, 0.85), rgba(239, 35, 60, 0.75));
    z-index: -1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
    background: rgba(43, 45, 66, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-title {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title-main {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.7);
}

.hero-title-sub {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: white;
    opacity: 1;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 1px 3px 6px rgba(0, 0, 0, 0.7);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-cta {
    font-size: 1.1rem;
    padding: 18px 35px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.hero-phone {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.6);
    color: white;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero-phone:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6);
}

.feature-icon {
    color: #EF233C;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: #2B2D42;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #EF233C, #FF4757);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #8D99AE;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-item {
    margin-bottom: 2.5rem;
}

.about-item-title {
    color: #2B2D42;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about-item-description {
    color: #6B7280;
    line-height: 1.7;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(43, 45, 66, 0.15);
}

/* Advantages Section */
.advantages {
    background: linear-gradient(135deg, #F8F9FA, #EDF2F7);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(43, 45, 66, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(43, 45, 66, 0.15);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #EF233C, #FF4757);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.advantage-title {
    color: #2B2D42;
    margin-bottom: 1rem;
}

.advantage-description {
    color: #6B7280;
    line-height: 1.6;
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #F8F9FA, #EDF2F7);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(43, 45, 66, 0.1);
}

.service-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 15px;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-featured {
    background: white;
    border: 2px solid #EF233C;
    position: relative;
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #EF233C, #FF4757);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-title {
    color: #2B2D42;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #EF233C;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(43, 45, 66, 0.1);
}

.service-feature:last-child {
    border-bottom: none;
}

.feature-check {
    color: #EF233C;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-action {
    text-align: center;
}

.service-select {
    width: 100%;
    justify-content: center;
}

/* Process Section */
.process {
    background: linear-gradient(135deg, #2B2D42, #3C3F5A);
    color: white;
}

.process .section-title,
.process .section-subtitle {
    color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EF233C, #FF4757);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 60px;
    margin-bottom: 1.5rem;
}

.step-title {
    color: white;
    margin-bottom: 1rem;
}

.step-description {
    color: #E5E7EB;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #F8F9FA, #EDF2F7);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(43, 45, 66, 0.1);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.star {
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: #4B5563;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.author-name {
    color: #2B2D42;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-position {
    color: #8D99AE;
    font-size: 0.9rem;
    margin: 0;
}

/* Form Section */
.order-form-section {
    position: relative;
    background: linear-gradient(135deg, #2B2D42, #3C3F5A);
    overflow: hidden;
}

.form-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.form-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 45, 66, 0.8);
    z-index: -1;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    color: #2B2D42;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #6B7280;
}

.form-errors {
    background: linear-gradient(135deg, #FEF2F2, #FECACA);
    border: 1px solid #F87171;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.form-errors h4 {
    color: #DC2626;
    margin-bottom: 1rem;
}

.form-errors ul {
    list-style: none;
    margin: 0;
}

.form-errors li {
    color: #DC2626;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.form-errors li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    color: #2B2D42;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select {
    padding: 1rem 1.5rem;
    border: 2px solid #E5E7EB;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #EF233C;
    box-shadow: 0 0 0 3px rgba(239, 35, 60, 0.1);
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox {
    margin-top: 0.25rem;
    transform: scale(1.2);
    accent-color: #EF233C;
}

.checkbox-label {
    color: #4B5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

.policy-link {
    color: #EF233C;
    text-decoration: underline;
}

.policy-link:hover {
    color: #d91e36;
}

.form-actions {
    margin-top: 1rem;
}

.form-submit {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    justify-content: center;
    gap: 0.75rem;
}

.btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.form-submit:hover .btn-icon {
    transform: translateX(5px);
}

.form-note {
    text-align: center;
    color: #6B7280;
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #F8F9FA, #EDF2F7);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(43, 45, 66, 0.1);
}

.contact-icon {
    font-size: 2rem;
    color: #EF233C;
}

.contact-title {
    color: #2B2D42;
    margin-bottom: 0.5rem;
}

.contact-text {
    color: #6B7280;
    margin-bottom: 0.25rem;
}

.contact-text a {
    color: #EF233C;
    font-weight: 600;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-note {
    color: #8D99AE;
    font-size: 0.9rem;
}

.contact-map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(43, 45, 66, 0.15);
}

.google-map {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 20px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2B2D42, #1F2136);
    color: #E5E7EB;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-title {
    background: linear-gradient(135deg, #EF233C, #FF4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-description {
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #9CA3AF;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #EF233C;
}

.footer .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    background: none;
    padding: 0;
}

.footer .contact-item:hover {
    transform: none;
    box-shadow: none;
}

.footer .contact-item .icon {
    font-size: 1.2rem;
    color: #EF233C;
    width: 20px;
}

.footer .contact-item a {
    color: #9CA3AF;
    transition: color 0.3s ease;
}

.footer .contact-item a:hover {
    color: white;
}

.legal-list,
.services-list {
    list-style: none;
}

.legal-link,
.service-link {
    color: #9CA3AF;
    padding: 0.25rem 0;
    display: inline-block;
    transition: color 0.3s ease;
}

.legal-link:hover,
.service-link:hover {
    color: #EF233C;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright,
.domain-info {
    color: #9CA3AF;
    margin: 0;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    background: white;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-title {
    color: #2B2D42;
    margin-bottom: 1rem;
}

.legal-subtitle {
    color: #8D99AE;
    font-style: italic;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #2B2D42;
    border-bottom: 2px solid #EF233C;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: #2B2D42;
    margin: 2rem 0 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #6B7280;
}

.legal-link {
    color: #EF233C;
    text-decoration: underline;
}

.legal-link:hover {
    color: #d91e36;
}

.legal-content .contact-info {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.legal-content .contact-info p {
    margin-bottom: 0.5rem;
}

.legal-actions {
    text-align: center;
    margin-top: 3rem;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .menu-toggle-label {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(248, 249, 250, 0.98);
        backdrop-filter: blur(20px);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .menu-toggle-checkbox:checked ~ .nav-menu {
        right: 0;
    }
    
    .menu-toggle-checkbox:checked ~ .nav-menu .nav-overlay {
        opacity: 1;
        visibility: visible;
    }
    
    .menu-toggle-checkbox:checked ~ .menu-toggle-label .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle-checkbox:checked ~ .menu-toggle-label .hamburger:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle-checkbox:checked ~ .menu-toggle-label .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 1rem;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(43, 45, 66, 0.1);
    }
    
    .nav-cta {
        margin-top: 1rem;
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-title-sub {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content {
        margin: 0 1rem;
        padding: 2.5rem 1.5rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .advantages-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-wrapper {
        margin: 0 20px;
        padding: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .advantages-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-card,
    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .form-wrapper {
        padding: 1.5rem;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        border-radius: 20px;
        margin: 0 1rem;
    }
    
    .google-map {
        height: 300px;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .nav-menu {
        display: none;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
}