:root {
    --molten-orange: #ff6b2c;
    --molten-orange-dark: #e55a1a;
    --charcoal-dark: #1a1a1a;
    --charcoal-medium: #2d2d2d;
    --charcoal-light: #3d3d3d;
    --steel-gray: #5a5a5a;
    --neon-accent: #ff8c42;
    --warm-white: #fefefe;
    --warm-gray: #f5f3f0;
    --text-on-dark: #ffffff;
    --text-on-light: #1a1a1a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-on-light);
    background-color: var(--warm-white);
}

strong, p {
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75em;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    min-height: 52px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--molten-orange), var(--molten-orange-dark));
    color: var(--text-on-dark);
    box-shadow: 0 4px 15px rgba(255, 107, 44, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--molten-orange-dark), var(--molten-orange));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 44, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--molten-orange);
    border: 2px solid var(--molten-orange);
}

.btn-outline:hover {
    background: var(--molten-orange);
    color: var(--text-on-dark);
}

.btn-dark {
    background: var(--charcoal-dark);
    color: var(--text-on-dark);
}

.btn-dark:hover {
    background: var(--charcoal-medium);
}


.header {
    background: var(--charcoal-dark);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--warm-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--molten-orange), var(--neon-accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: var(--warm-gray);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--molten-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--molten-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--warm-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}


.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 50%, var(--charcoal-dark) 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,140,66,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 44, 0.15);
    border: 1px solid rgba(255, 107, 44, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--molten-orange);
    margin-bottom: 25px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--warm-white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--molten-orange);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--warm-gray);
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    z-index: 2;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}


.section {
    padding: 100px 0;
}

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

.section-subtitle {
    color: var(--molten-orange);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--charcoal-dark);
}

.section-desc {
    max-width: 600px;
    margin: 20px auto 0;
    color: var(--steel-gray);
    font-size: 1.1rem;
}


.section-dark {
    background: var(--charcoal-dark);
}

.section-dark .section-title {
    color: var(--warm-white);
}

.section-dark .section-desc {
    color: var(--warm-gray);
    opacity: 0.8;
}


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

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--molten-orange);
    border-radius: 16px;
    z-index: -1;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--charcoal-dark);
}

.section-dark .about-content h3 {
    color: var(--warm-white);
}

.about-content p {
    color: var(--steel-gray);
    margin-bottom: 20px;
}

.section-dark .about-content p {
    color: var(--warm-gray);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 44, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--molten-orange);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.about-feature-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--charcoal-dark);
}

.about-feature-text p {
    font-size: 0.9rem;
    color: var(--steel-gray);
    margin: 0;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--warm-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card-image {
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-content {
    padding: 30px;
}

.service-card-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--charcoal-dark);
}

.service-card-desc {
    color: var(--steel-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--molten-orange);
    margin-bottom: 20px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--charcoal-dark);
    font-weight: 600;
    transition: gap 0.3s ease;
}

.service-card-link:hover {
    gap: 15px;
    color: var(--molten-orange);
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 44, 0.1);
    transition: all 0.4s ease;
}

.section-dark .feature-card {
    color: var(--warm-gray);
}

.feature-card:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 107, 44, 0.3);
    transform: translateY(-5px);
}

.section-dark .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 44, 0.1);
}

.section-dark .feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 44, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--molten-orange), var(--neon-accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 44, 0.3);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--charcoal-medium);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--charcoal-light);
    opacity: 0.85;
    font-size: 0.95rem;
}

.section-dark .feature-card h3 {
    color: var(--warm-white);
}

.section-dark .feature-card p {
    color: var(--warm-gray);
}


.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--warm-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.team-card-image {
    height: 300px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-content {
    padding: 25px;
    text-align: center;
}

.team-card-content h3 {
    font-size: 1.3rem;
    color: var(--charcoal-dark);
    margin-bottom: 5px;
}

.team-card-content p {
    color: var(--molten-orange);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-card-content .bio {
    color: var(--steel-gray);
    font-size: 0.9rem;
}


.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--warm-white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 5rem;
    color: var(--molten-orange);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.review-card p {
    color: var(--charcoal-dark);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author-info h4 {
    font-size: 1rem;
    color: var(--charcoal-dark);
    margin-bottom: 3px;
}

.review-author-info p {
    font-size: 0.85rem;
    color: var(--steel-gray);
    font-style: normal;
}


.cta-section {
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="80" r="2" fill="rgba(255,140,66,0.1)"/><circle cx="80" cy="20" r="3" fill="rgba(255,140,66,0.1)"/><circle cx="50" cy="50" r="1.5" fill="rgba(255,140,66,0.1)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--warm-white);
    margin-bottom: 20px;
}

.cta-desc {
    color: var(--warm-gray);
    opacity: 0.9;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--charcoal-dark);
    margin-bottom: 20px;
}

.section-dark .contact-info h3 {
    color: var(--warm-white);
}

.contact-info > p {
    color: var(--steel-gray);
    margin-bottom: 35px;
}

.section-dark .contact-info > p {
    color: var(--warm-gray);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-item-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 107, 44, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--molten-orange);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.section-dark .contact-item-icon {
    background: rgba(255, 255, 255, 0.5);
}

.contact-item-content h4 {
    font-size: 1.1rem;
    color: var(--charcoal-dark);
    margin-bottom: 5px;
}

.section-dark .contact-item-content h4 {
    color: var(--warm-white);
}

.contact-item-content p {
    color: var(--steel-gray);
}

.section-dark .contact-item-content p {
    color: var(--warm-gray);
}

.contact-item-content a {
    color: var(--molten-orange);
    font-weight: 500;
}

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

.contact-form-wrapper {
    background: var(--warm-white);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
    font-size: 1.6rem;
    color: var(--charcoal-dark);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--charcoal-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--charcoal-dark);
    background: var(--warm-white);
    transition: border-color 0.3s ease;
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}


.map-section {
    padding: 0;
    height: 450px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}


.footer {
    background: var(--charcoal-dark);
    padding: 80px 0 30px;
    color: var(--warm-gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.footer-brand p {
    opacity: 0.75;
    margin-bottom: 25px;
    max-width: 300px;
}

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

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--molten-orange);
    transform: translateY(-3px);
}

.footer-column h4 {
    color: var(--warm-white);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: var(--warm-gray);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--molten-orange);
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--warm-gray);
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--molten-orange);
    opacity: 1;
}


.cookie-consent-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 450px;
    background: var(--charcoal-dark);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: block;
}

.cookie-consent-banner h4 {
    color: var(--warm-white);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.cookie-consent-banner p {
    color: var(--warm-gray);
    opacity: 0.85;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-buttons .btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 0.9rem;
    min-height: 44px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--molten-orange), var(--molten-orange-dark));
    color: var(--text-on-dark);
}

.cookie-btn-decline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--warm-gray);
}

.cookie-btn-decline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}


.page-header {
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,140,66,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--warm-white);
    margin-bottom: 15px;
}

.page-header p {
    color: var(--warm-gray);
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.breadcrumb a {
    color: var(--molten-orange);
}

.breadcrumb span {
    color: var(--warm-gray);
    opacity: 0.6;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.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;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--warm-white);
    font-size: 1.1rem;
}


.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--molten-orange), var(--neon-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-on-dark);
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(255, 107, 44, 0.3);
}

.process-step h3 {
    font-size: 1.2rem;
    color: var(--charcoal-dark);
    margin-bottom: 12px;
}

.process-step p {
    color: var(--steel-gray);
    font-size: 0.95rem;
}


.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: var(--warm-white);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal-dark);
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 44, 0.05);
}

.faq-question span {
    font-size: 1.5rem;
    color: var(--molten-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question span:last-child {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--warm-white);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}

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


.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--molten-orange), var(--neon-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
    box-shadow: 0 15px 40px rgba(255, 107, 44, 0.3);
}

.thank-you-content h1 {
    font-size: 2.5rem;
    color: var(--charcoal-dark);
    margin-bottom: 20px;
}

.thank-you-content p {
    color: var(--steel-gray);
    font-size: 1.15rem;
    margin-bottom: 35px;
}


.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.6rem;
    color: var(--charcoal-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--charcoal-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    color: var(--steel-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 25px 25px;
}

.legal-content li {
    color: var(--steel-gray);
    margin-bottom: 10px;
    line-height: 1.7;
}


@media (max-width: 1024px) {
    .hero-image {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--charcoal-dark);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.4s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .section {
        padding: 70px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .cookie-consent-banner {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
