/* CSS Variables */
:root {
    --primary-color: #b8a8d9;
    --sage-accent: #a8b5a1;
    --dark-bg: #8a9a8f;
    --text-dark: #3a4a3f;
    --text-gray: #6b7b70;
    --light-bg: #f5f7f5;
    --white: #ffffff;
    --font-base: 'Lora', serif;
    --font-alt: 'Josefin Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-alt);
    font-weight: 700;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-bg);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand .logo {
    height: 70px;
    transition: all 0.3s ease;
    mix-blend-mode: multiply;
}

.navbar-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--white);
    cursor: pointer;
    padding: 5px 10px;
}

.navbar-toggle .icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-toggle {
    border-color: var(--text-dark);
}

.navbar.scrolled .navbar-toggle .icon-bar {
    background-color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-menu li a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-alt);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-menu li a {
    color: var(--text-dark);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-45deg, var(--dark-bg), #4a5459, var(--primary-color), #8b85d4);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    padding-top: 80px;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, rgba(138, 154, 143, 0.4), rgba(184, 168, 217, 0.3), rgba(168, 181, 161, 0.35), rgba(138, 154, 143, 0.45));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: 2;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    width: 400%;
    height: 400px;
    left: -150%;
}

.shape-1 {
    background: var(--primary-color);
    top: 5%;
    clip-path: path('M -3000 100 Q -2500 30, -2000 100 Q -1500 170, -1000 100 Q -500 30, 0 100 Q 500 170, 1000 100 Q 1500 30, 2000 100 Q 2500 170, 3000 100 Q 3500 30, 4000 100 Q 4500 170, 5000 100 Q 5500 30, 6000 100 Q 6500 170, 7000 100 Q 7500 30, 8000 100 Q 8500 170, 9000 100 L 9000 500 L -3000 500 Z');
    animation: wave1 14s ease-in-out infinite;
}

.shape-2 {
    background: var(--primary-color);
    top: 15%;
    clip-path: path('M -3000 130 Q -2400 70, -1800 130 Q -1200 190, -600 130 Q 0 70, 600 130 Q 1200 190, 1800 130 Q 2400 70, 3000 130 Q 3600 190, 4200 130 Q 4800 70, 5400 130 Q 6000 190, 6600 130 Q 7200 70, 7800 130 Q 8400 190, 9000 130 Q 9600 70, 10200 130 L 10200 530 L -3000 530 Z');
    animation: wave2 16s ease-in-out infinite;
}

.shape-3 {
    background: var(--sage-accent);
    top: 28%;
    clip-path: path('M -3000 110 Q -2300 50, -1600 110 Q -900 180, -200 110 Q 500 40, 1200 110 Q 1900 180, 2600 110 Q 3300 40, 4000 110 Q 4700 180, 5400 110 Q 6100 40, 6800 110 Q 7500 180, 8200 110 L 8200 510 L -3000 510 Z');
    animation: wave3 18s ease-in-out infinite;
}

.shape-4 {
    background: var(--sage-accent);
    top: 40%;
    clip-path: path('M -3000 120 Q -2600 60, -2200 120 Q -1800 180, -1400 120 Q -1000 60, -600 120 Q -200 180, 200 120 Q 600 60, 1000 120 Q 1400 180, 1800 120 Q 2200 60, 2600 120 Q 3000 180, 3400 120 Q 3800 60, 4200 120 Q 4600 180, 5000 120 Q 5400 60, 5800 120 Q 6200 180, 6600 120 Q 7000 60, 7400 120 Q 7800 180, 8200 120 L 8200 520 L -3000 520 Z');
    animation: wave4 13s ease-in-out infinite;
}

.shape-5 {
    background: var(--primary-color);
    top: 52%;
    clip-path: path('M -3000 140 Q -2500 80, -2000 140 Q -1500 200, -1000 140 Q -500 80, 0 140 Q 500 200, 1000 140 Q 1500 80, 2000 140 Q 2500 200, 3000 140 Q 3500 80, 4000 140 Q 4500 200, 5000 140 Q 5500 80, 6000 140 Q 6500 200, 7000 140 Q 7500 80, 8000 140 Q 8500 200, 9000 140 L 9000 540 L -3000 540 Z');
    animation: wave5 17s ease-in-out infinite;
}

.shape-6 {
    background: var(--sage-accent);
    top: 63%;
    clip-path: path('M -3000 115 Q -2300 55, -1600 115 Q -900 175, -200 115 Q 500 55, 1200 115 Q 1900 175, 2600 115 Q 3300 55, 4000 115 Q 4700 175, 5400 115 Q 6100 55, 6800 115 Q 7500 175, 8200 115 L 8200 515 L -3000 515 Z');
    animation: wave6 19s ease-in-out infinite;
}

.shape-7 {
    background: var(--primary-color);
    top: 74%;
    clip-path: path('M -3000 125 Q -2600 65, -2200 125 Q -1800 185, -1400 125 Q -1000 65, -600 125 Q -200 185, 200 125 Q 600 65, 1000 125 Q 1400 185, 1800 125 Q 2200 65, 2600 125 Q 3000 185, 3400 125 Q 3800 65, 4200 125 Q 4600 185, 5000 125 Q 5400 65, 5800 125 Q 6200 185, 6600 125 Q 7000 65, 7400 125 Q 7800 185, 8200 125 L 8200 525 L -3000 525 Z');
    animation: wave7 15s ease-in-out infinite;
}

.shape-8 {
    background: var(--primary-color);
    top: 85%;
    clip-path: path('M -3000 135 Q -2500 75, -2000 135 Q -1500 195, -1000 135 Q -500 75, 0 135 Q 500 195, 1000 135 Q 1500 75, 2000 135 Q 2500 195, 3000 135 Q 3500 75, 4000 135 Q 4500 195, 5000 135 Q 5500 75, 6000 135 Q 6500 195, 7000 135 Q 7500 75, 8000 135 Q 8500 195, 9000 135 L 9000 535 L -3000 535 Z');
    animation: wave8 20s ease-in-out infinite;
}

@keyframes wave1 {
    0%, 100% { transform: translateX(0%); }
    33% { transform: translateX(-1.2%); }
    66% { transform: translateX(0.8%); }
}

@keyframes wave2 {
    0%, 100% { transform: translateX(0%); }
    25% { transform: translateX(1.5%); }
    75% { transform: translateX(-0.9%); }
}

@keyframes wave3 {
    0%, 100% { transform: translateX(0%); }
    40% { transform: translateX(-1.3%); }
    80% { transform: translateX(0.7%); }
}

@keyframes wave4 {
    0%, 100% { transform: translateX(0%); }
    30% { transform: translateX(1.1%); }
    70% { transform: translateX(-1.4%); }
}

@keyframes wave5 {
    0%, 100% { transform: translateX(0%); }
    35% { transform: translateX(1.3%); }
    65% { transform: translateX(-0.8%); }
}

@keyframes wave6 {
    0%, 100% { transform: translateX(0%); }
    45% { transform: translateX(-1.1%); }
    85% { transform: translateX(1.2%); }
}

@keyframes wave7 {
    0%, 100% { transform: translateX(0%); }
    38% { transform: translateX(1.4%); }
    72% { transform: translateX(-1%); }
}

@keyframes wave8 {
    0%, 100% { transform: translateX(0%); }
    28% { transform: translateX(-1.2%); }
    68% { transform: translateX(0.9%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
}

.hero-subtitle {
    font-family: var(--font-alt);
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.hero-title {
    font-size: 82px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-family: var(--font-base);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 45px;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 20px 45px;
    font-family: var(--font-alt);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(162, 155, 254, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #8b85d4);
    color: var(--white);
    border-color: var(--primary-color);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(162, 155, 254, 0.5);
    background: linear-gradient(135deg, #8b85d4, var(--primary-color));
}

/* Quote Section */
.quote-section {
    background-color: var(--white);
    padding: 80px 0;
}

.quote-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote-text {
    font-family: var(--font-alt);
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.quote-author {
    font-style: italic;
    color: var(--text-gray);
}

/* Chi Sono Section */
.chi-sono-section {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.section-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.chi-sono-image img {
    width: 100%;
    height: auto;
    max-width: 550px;
    border-radius: 50%;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-top: 20px;
}

.content-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Servizi Section */
.servizi-section {
    background-color: var(--white);
    padding: 100px 0;
    overflow: visible;
    position: relative;
}

.servizi-section .section-header {
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.services-grid .service-card {
    flex: 0 0 calc(25% - 22.5px);
    max-width: 320px;
    min-width: 250px;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    cursor: pointer;
    isolation: isolate;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--white);
    z-index: 0;
}

.service-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    z-index: 2;
    border-radius: 12px 12px 0 0;
}

.service-card[data-accent] .service-accent-bar {
    background: attr(data-accent);
}

.service-card:nth-child(1) .service-accent-bar {
    background: var(--primary-color);
}

.service-card:nth-child(2) .service-accent-bar {
    background: var(--sage-accent);
}

.service-icon {
    display: none;
}

.service-icon i {
    font-size: 80px;
    color: var(--primary-color);
    transition: transform 0.4s ease, color 0.4s ease, opacity 0.4s ease;
}

.service-card:nth-child(2) .service-icon i {
    color: var(--sage-accent);
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    opacity: 0.3;
}

/* Hover Icon Styles */
.service-hover-icon {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
}

.service-hover-icon i {
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-card:nth-child(2) .service-hover-icon i {
    color: var(--sage-accent);
}

.service-card:hover .service-hover-icon i {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(162, 155, 254, 0.4) 0%, rgba(162, 155, 254, 0.2) 40%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}

.service-card:hover::before {
    width: 120%;
    height: 120%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.08) !important;
    box-shadow: 0 25px 50px rgba(162, 155, 254, 0.3) !important;
    z-index: 10;
}

.service-card:nth-child(3):hover::after {
    opacity: 1;
    clip-path: polygon(246px 0, 250px 0, 250px 150px, 0 150px, 0 146px, 246px 146px);
}

.service-card:nth-child(3):hover::after {
    opacity: 1;
    clip-path: polygon(246px 0, 250px 0, 250px 150px, 0 150px, 0 146px, 246px 146px);
}

.service-image {
    display: none;
}

.service-content {
    padding: 30px 30px 50px;
    background-color: var(--white);
    position: relative;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card:hover .service-content {
    transform: translateY(70px);
}

.service-content::before {
    display: none;
}

.service-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-gray);
    line-height: 1.6;
}

.cta-button {
    text-align: center;
    padding: 60px 0 0;
    position: relative;
}

.cta-button .btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 50px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.services-grid:hover ~ .cta-button .btn {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(162, 155, 254, 0.5);
    background: linear-gradient(135deg, #8b85d4, var(--primary-color));
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    transition-delay: 0.6s;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    padding-bottom: 75%;
    background-color: var(--white);
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(162, 155, 254, 0.15);
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 60px;
}

.faq-sidebar {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.faq-sidebar h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 15px;
}

.faq-sidebar h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.faq-sidebar p {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(162, 155, 254, 0.15);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    font-family: var(--font-alt);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--light-bg);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #efefef;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
    background-color: var(--white);
}

.faq-answer.active {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.contact-form {
    max-width: 800px;
    margin: 60px auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    font-family: var(--font-base);
    font-size: 15px;
    border: 1px solid #ddd;
    background-color: var(--white);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.form-submit {
    text-align: center;
}

.form-submit .btn {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.form-submit .btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--white);
    padding: 40px 0 20px;
    border-top: 1px solid #ddd;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-dark);
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-logo img {
    max-height: 50px;
    opacity: 0.3;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.footer-copyright p {
    font-family: var(--font-alt);
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-gray);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--dark-bg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-row {
        grid-template-columns: 1fr;
    }
    
    .chi-sono-image {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: block;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .navbar-collapse.active {
        max-height: 400px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu li a {
        display: block;
        padding: 15px 0;
        color: var(--text-dark);
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle,
    .hero-description {
        font-size: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 14px;
    }
}
