* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --copper: #B87333;
    --birch-white: #F5F5DC;
    --forest-green: #2C5F2D;
    --charcoal: #333333;
    --light-gray: #F8F8F8;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Header & Navigation */
header {
    background: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--copper);
    font-family: 'Playfair Display', serif;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0.5rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 0.5rem 0;
    min-width: 220px;
    margin-top: 0.5rem;
    list-style: none;
}

.dropdown.active .dropdown-menu {
    display: block;
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--copper);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    margin: 3px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), 
                url('images/hero.webp') center/cover;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    width: 100%;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: var(--copper);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #9a5f2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 115, 51, 0.3);
}

/* Service Hero */
.service-hero {
    background: linear-gradient(rgba(44, 95, 45, 0.85), rgba(44, 95, 45, 0.85)), 
                url('images/hero.webp') center/cover;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 3rem 2rem;
}

.service-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
}

/* Contacts Page */
.contacts-hero {
    background: linear-gradient(rgba(44, 95, 45, 0.85), rgba(44, 95, 45, 0.85)),
                url('images/hero.webp') center/cover;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 3rem 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.team-card h3 {
    color: var(--forest-green);
    margin-bottom: 0.35rem;
}

.team-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin-bottom: 1rem;
}

.team-photo-placeholder {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d9d9d9, #bdbdbd);
    color: var(--white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.team-role {
    color: var(--copper);
    font-weight: 600;
    margin-bottom: 1rem;
}

.office-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: stretch;
}

.office-card,
.map-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.map-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    min-height: 380px;
}

.office-card h3 {
    color: var(--forest-green);
    margin: 1.25rem 0 0.5rem;
}

.map-embed {
    display: block;
    flex: 1;
    width: 100%;
    height: 100%;
    min-height: 100%;
    border: 0;
}

/* FAQ Page */
.faq-controls {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.faq-search,
.faq-category-select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.faq-search:focus,
.faq-category-select:focus {
    outline: none;
    border-color: var(--copper);
}

.faq-no-results {
    margin-top: 1rem;
    color: #777;
    display: none;
}

.faq-category h2 {
    text-align: left;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: var(--forest-green);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    float: right;
    color: var(--copper);
    font-weight: 700;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    padding: 0 1.25rem 1rem;
    color: #666;
}

/* Sections */
section {
    padding: 5rem 2rem;
}

section > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--forest-green);
}

/* Service Content Sections */
.service-content {
    max-width: 1200px;
    margin: 0 auto;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.service-content > div {
    margin-bottom: 4.5rem;
    padding-top: 0.5rem;
}

.service-content > div:last-child {
    margin-bottom: 0;
}

.service-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.service-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-intro ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.service-intro li {
    margin-bottom: 0.5rem;
}

.service-intro h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--forest-green);
    font-size: 1.25rem;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-process .process-step,
.service-process .feature-item {
    background: var(--light-gray);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--copper);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    color: var(--forest-green);
    margin-bottom: 1rem;
}

/* Examples Grid */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.example-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.example-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.example-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    color: var(--copper);
}

.example-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

/* Materials List */
.materials-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.material-item {
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.material-item h4 {
    color: var(--forest-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Service CTA */
.service-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 300px;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    margin-top: 4rem;
}

.service-cta::before,
.service-cta::after {
    content: "";
    flex: 1;
}

.service-cta h2 {
    margin: 0;
}

.service-cta p {
    font-size: 1.1rem;
    margin: 0;
    max-width: 700px;
}

/* Features & Benefits Grid */
.features-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item,
.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.feature-item h3,
.benefit-item h3 {
    color: var(--copper);
    margin-bottom: 1rem;
}

/* Styles Grid */
.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.style-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.style-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.style-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    color: var(--forest-green);
}

.style-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

/* Timeline & Pricing */
.timeline-info,
.pricing-table,
.pricing-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.timeline-item,
.pricing-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.timeline-item h3,
.pricing-item h3 {
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--copper);
    margin: 1rem 0;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: #666;
}

/* Restoration Types */
.restoration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.restoration-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.restoration-card h3 {
    color: var(--copper);
    margin-bottom: 1rem;
}

.restoration-card ul {
    list-style: none;
    margin-top: 1rem;
}

.restoration-card li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.restoration-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--forest-green);
    font-weight: 700;
}

/* Before/After Grid */
.beforeafter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.beforeafter-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beforeafter-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.before-image,
.after-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.beforeafter-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.beforeafter-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    color: var(--forest-green);
}

.beforeafter-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.why-item h3 {
    color: var(--copper);
    margin-bottom: 1rem;
}

/* Design Types Grid */
.design-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.design-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.design-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.design-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    color: var(--forest-green);
}

.design-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

/* Gallery */
.examples-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item p {
    padding: 1rem;
    text-align: center;
    color: #666;
}

.example-card:hover,
.style-card:hover,
.type-card:hover,
.beforeafter-card:hover,
.gallery-item:hover {
    transform: perspective(900px) translateY(-6px) rotateX(2deg);
    box-shadow:
        0 16px 28px rgba(0,0,0,0.16),
        0 30px 50px rgba(0,0,0,0.16);
}

/* Software Features */
.software-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.software-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
}

.software-item h3 {
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.software-bullets {
    margin-top: 1.5rem;
    padding-left: 1.5rem;
}

.software-bullets li {
    margin-bottom: 1rem;
}

.software-bullets li p {
    margin-top: 0.35rem;
    color: #666;
}

/* Why List */
.why-list {
    max-width: 800px;
    margin: 2rem auto;
    list-style: none;
}

.why-list li {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background: var(--white);
    border-left: 4px solid var(--copper);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Types Grid */
.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.type-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.type-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.type-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    color: var(--copper);
}

.type-card p {
    padding: 0 1.5rem;
    color: #666;
}

.type-card ul {
    list-style: none;
    padding: 1rem 1.5rem 1.5rem;
}

.type-card li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #666;
}

.type-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--forest-green);
    font-weight: 700;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow:
        0 10px 20px rgba(0,0,0,0.12),
        0 22px 40px rgba(0,0,0,0.12);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    transform: perspective(900px) translateZ(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 0;
    transition: opacity 0.3s;
}

.service-card::after {
    display: none;
}

.service-card[data-service="mittatilaus"]::before {
    background-image: url('images/mittatilaus.webp');
}

.service-card[data-service="keittio"]::before {
    background-image: url('images/keittio.webp');
}

.service-card[data-service="kiintokalusteet"]::before {
    background-image: url('images/kiintokalusteet.webp');
}

.service-card[data-service="kunnostus"]::before {
    background-image: url('images/kunnostus.webp');
}

.service-card[data-service="suunnittelu"]::before {
    background-image: url('images/suunnittelu.webp');
}

.service-card h3,
.service-card p {
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: perspective(900px) translateY(-6px) rotateX(2deg);
    box-shadow:
        0 16px 28px rgba(0,0,0,0.16),
        0 30px 50px rgba(0,0,0,0.16);
}

.service-card.active {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    transition: all 0.3s;
    text-align: left;
}

.service-card:hover h3 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.service-card.active h3 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.service-card p {
    display: none;
}

/* Why Choose Us */
.why-us {
    background: var(--light-gray);
    width: 100%;
}

.why-content {
    margin: 0 auto 3rem;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
}

.why-content p {
    margin-bottom: 1rem;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.usp-item {
    text-align: center;
}

.usp-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 1rem;
    object-fit: cover;
}

.usp-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--forest-green);
}

.usp-item p {
    color: #666;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--copper);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: perspective(900px) translateZ(0);
}

.testimonial-card:hover {
    transform: perspective(900px) translateY(-6px) rotateX(2deg);
    box-shadow:
        0 16px 28px rgba(0,0,0,0.16),
        0 30px 50px rgba(0,0,0,0.16);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: var(--forest-green);
}

.testimonial-location {
    color: #888;
    font-size: 0.9rem;
}

/* Contact */
.contact {
    background: var(--light-gray);
    width: 100%;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-compact .contact-container {
    grid-template-columns: 1fr;
}

.contact-compact .contact-info .cta-button {
    margin-bottom: 2rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--forest-green);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-item a,
.contact-item a:link,
.contact-item a:visited,
.contact-item a:active {
    color: inherit;
    text-decoration: none;
}

.contact-item a:hover {
    color: inherit;
    text-decoration: underline;
}

.contact-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Form */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input,
.form-group select {
    height: 50px;
    padding: 0 0.8rem;
    line-height: 1.2;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.41.59 6 5.17 10.59.59 12 2l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    padding-right: 2.2rem;
}

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

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

.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
}

/* Footer */
footer {
    background: var(--white);
    color: var(--charcoal);
    text-align: center;
    padding: 2rem;
    border-top: 4px solid var(--copper);
}

footer p {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), 
                    url('images/hero-mobile.webp') center/cover;
    }

    .service-hero {
        min-height: 30vh;
        padding: 2.5rem 1.5rem;
    }

    .contacts-hero {
        min-height: 30vh;
        padding: 2.5rem 1.5rem;
    }

    .office-grid {
        grid-template-columns: 1fr;
    }

    .map-card {
        min-height: 300px;
    }

    .faq-controls {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .service-hero-content h1 {
        font-size: 2.5rem;
    }

    .hero p,
    .service-hero-content p {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 100;
        gap: 1.5rem;
        transition: right 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .nav-links.active {
        display: flex;
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.2rem;
        border-bottom: 1px solid var(--light-gray);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    section {
        padding: 3rem 1.5rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-img {
        height: 40px;
    }
}
