:root {
    --fire-red: #dc2626;
    --fire-red-dark: #b91c1c;
    --fire-red-light: #ef4444;
    --amber: #f97316;
    --amber-dark: #ea580c;
    --amber-light: #fb923c;
    --charcoal: #1f1f1f;
    --charcoal-light: #333333;
    --charcoal-dark: #0f0f0f;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-400: #a1a1aa;
    --gray-500: #71717a;
    --gray-600: #52525b;
    --gray-700: #3f3f46;
    --gray-800: #27272a;
    --gray-900: #18181b;
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--fire-red);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--amber);
}

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

ul {
    list-style: none;
}

address {
    font-style: normal;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--fire-red);
    color: var(--white);
    border-color: var(--fire-red);
}

.btn-primary:hover {
    background: var(--fire-red-dark);
    border-color: var(--fire-red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}

.btn-secondary:hover {
    background: var(--charcoal-light);
    border-color: var(--charcoal-light);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--fire-red) 0%, var(--amber) 100%);
    border: none;
    padding: 1rem 2rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    opacity: 0.95;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--charcoal);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--fire-red);
}

.logo:hover {
    color: var(--fire-red);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--charcoal);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fire-red);
    transition: var(--transition);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu a {
        padding: 1rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--gray-200);
    }

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

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

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

.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    margin-top: 70px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--fire-red) 0%, var(--amber) 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    position: relative;
}

.hero h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--fire-red) 0%, var(--amber) 100%);
    margin-top: 1rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--fire-red);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--fire-red);
    border-radius: 8px;
    z-index: -1;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1::after {
        margin: 1rem auto 0;
    }

    .hero p {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-image::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    color: var(--fire-red);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    position: relative;
}

.section-badge::before,
.section-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--fire-red);
}

.section-badge::before {
    right: calc(100% + 15px);
}

.section-badge::after {
    left: calc(100% + 15px);
}

.services-section {
    padding: 5rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    max-width: 400px;
    margin: 0 auto;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-content {
    padding: 1.5rem;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--fire-red) 0%, var(--amber) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.features-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    box-shadow: var(--shadow-lg);
}

.feature-image {
    border-radius: 8px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--fire-red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.feature-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .feature-item {
        grid-template-columns: 1fr;
    }

    .feature-image {
        height: 200px;
    }
}

.work-section {
    padding: 5rem 0;
    background: var(--white);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.work-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31, 31, 31, 0.9) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

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

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

.work-overlay h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.work-overlay p {
    font-size: 0.875rem;
    color: var(--gray-300);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .work-grid {
        grid-template-columns: 1fr;
    }
}

.testimonials-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: var(--fire-red);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-content p {
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--fire-red) 0%, var(--amber) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--charcoal);
}

.author-location {
    font-size: 0.875rem;
    color: var(--gray-500);
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--fire-red) 0%, var(--amber) 100%);
}

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

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-content .btn-primary {
    background: var(--white);
    color: var(--fire-red);
    border-color: var(--white);
}

.cta-content .btn-primary:hover {
    background: var(--gray-100);
    border-color: var(--gray-100);
    color: var(--fire-red);
}

.contact-form-section {
    padding: 5rem 0;
    background: var(--white);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--fire-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

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

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

.consent-group {
    margin-top: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    accent-color: var(--fire-red);
}

.checkbox-label a {
    color: var(--fire-red);
}

.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    margin-top: 70px;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: var(--gray-300);
    font-size: 1.25rem;
}

.about-intro {
    padding: 5rem 0;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro-text .section-badge {
    text-align: left;
}

.about-intro-text .section-badge::before,
.about-intro-text .section-badge::after {
    display: none;
}

.about-intro-text h2 {
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.about-intro-text p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.about-intro-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
}

@media (max-width: 992px) {
    .about-intro-content {
        grid-template-columns: 1fr;
    }

    .about-intro-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

.mission-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mission-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--fire-red) 0%, var(--amber) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.mission-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.mission-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
}

.values-section {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-item {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 8px;
    border-left: 4px solid var(--fire-red);
    transition: var(--transition);
}

.value-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.value-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.value-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.value-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.credentials-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.credentials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.credentials-text h2 {
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.credentials-text p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credentials-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--charcoal);
}

.credentials-list svg {
    width: 24px;
    height: 24px;
    color: var(--fire-red);
    flex-shrink: 0;
}

.credentials-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
}

@media (max-width: 992px) {
    .credentials-content {
        grid-template-columns: 1fr;
    }

    .credentials-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

.service-area-section {
    padding: 5rem 0;
}

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-area-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
}

.service-area-areas h3 {
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.service-area-areas ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-area-areas li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--gray-700);
}

.service-area-areas li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--fire-red);
    border-radius: 50%;
}

@media (max-width: 992px) {
    .service-area-content {
        grid-template-columns: 1fr;
    }

    .service-area-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

.services-detail {
    padding: 5rem 0;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--gray-200);
}

.service-detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-detail-item.reverse {
    direction: rtl;
}

.service-detail-item.reverse > * {
    direction: ltr;
}

.service-detail-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
}

.service-detail-content .service-detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--fire-red) 0%, var(--amber) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-detail-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.service-detail-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
}

.service-features svg {
    width: 20px;
    height: 20px;
    color: var(--fire-red);
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .service-detail-item,
    .service-detail-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .service-detail-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .service-features {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--fire-red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--charcoal);
}

.contact-item p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.contact-item .small {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.contact-form-wrapper {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.map-section {
    padding: 3rem 0 5rem;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.emergency-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.emergency-icon {
    width: 80px;
    height: 80px;
    background: var(--fire-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emergency-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.emergency-text {
    flex: 1;
    min-width: 200px;
}

.emergency-text h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.emergency-text p {
    color: var(--gray-300);
    margin-bottom: 0;
}

.emergency-content .btn {
    flex-shrink: 0;
    background: var(--fire-red);
    border-color: var(--fire-red);
}

.emergency-content .btn:hover {
    background: var(--fire-red-light);
    border-color: var(--fire-red-light);
}

.business-content {
    padding: 5rem 0;
}

.business-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.business-intro h2 {
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.business-intro p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.business-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.business-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.business-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--fire-red) 0%, var(--amber) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.business-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.business-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.business-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.business-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.business-card li {
    color: var(--gray-700);
    font-size: 0.95rem;
    padding-left: 1.25rem;
    position: relative;
}

.business-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--fire-red);
    font-weight: bold;
}

@media (max-width: 992px) {
    .business-grid {
        grid-template-columns: 1fr;
    }
}

.data-collection-section {
    background: var(--gray-50);
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.data-collection-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.data-collection-section > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--gray-600);
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.data-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.data-item h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
    border-bottom: 2px solid var(--fire-red);
    padding-bottom: 0.75rem;
}

.data-item ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.data-item li {
    color: var(--gray-700);
    font-size: 0.95rem;
    padding-left: 1.25rem;
    position: relative;
}

.data-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--amber);
}

@media (max-width: 992px) {
    .data-grid {
        grid-template-columns: 1fr;
    }
}

.value-section {
    padding: 4rem 0;
}

.value-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--charcoal);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--fire-red) 0%, var(--amber) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.value-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.value-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .value-grid {
        grid-template-columns: 1fr;
    }
}

.legal-content {
    padding: 5rem 0;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.last-updated {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-document h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--charcoal);
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.legal-document h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-document h3 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--charcoal-light);
}

.legal-document p {
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.legal-document ul,
.legal-document ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-document ul {
    list-style: disc;
}

.legal-document ol {
    list-style: decimal;
}

.legal-document li {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.legal-document address {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.legal-document address p {
    margin-bottom: 0.25rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 2rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid var(--gray-200);
}

.cookie-table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--charcoal);
}

.cookie-table td {
    color: var(--gray-700);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .legal-document {
        padding: 1.5rem;
    }
}

.footer {
    background: var(--charcoal);
    color: var(--gray-300);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-brand address p {
    margin-bottom: 0.5rem;
}

.footer-brand a {
    color: var(--gray-300);
}

.footer-brand a:hover {
    color: var(--fire-red);
}

.footer-links h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--fire-red);
    padding-left: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.disclaimer {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.copyright {
    color: var(--gray-500);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0;
    max-width: 600px;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-left: auto;
}

.cookie-customize-panel {
    display: none;
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.cookie-customize-panel.active {
    display: block;
}

.cookie-option {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--white);
    border-radius: 4px;
    margin-bottom: 1rem;
}

.cookie-option:last-of-type {
    margin-bottom: 0;
}

.cookie-option strong {
    display: block;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.cookie-option p {
    color: var(--gray-600);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    transition: var(--transition);
    border-radius: 28px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: var(--white);
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--fire-red);
}

input:checked + .slider:before {
    transform: translateX(22px);
}

input:disabled + .slider {
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-customize-buttons {
    margin-top: 1rem;
    text-align: right;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text p {
        max-width: 100%;
    }

    .cookie-buttons {
        margin-left: 0;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --white: #18181b;
        --charcoal: #fafafa;
        --gray-50: #27272a;
        --gray-100: #3f3f46;
        --gray-200: #52525b;
        --gray-300: #71717a;
        --gray-400: #a1a1aa;
        --gray-500: #d4d4d8;
        --gray-600: #e4e4e7;
        --gray-700: #f4f4f5;
        --gray-800: #fafafa;
        --gray-900: #ffffff;
    }
}
