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

:root {
    --primary-gray: #4a4a4a;
    --dark-gray: #2c2c2c;
    --light-gray: #f5f5f5;
    --medium-gray: #808080;
    --accent-gray: #606060;
    --text-dark: #1a1a1a;
    --text-light: #e0e0e0;
    --white: #ffffff;
    --border-gray: #d0d0d0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    opacity: 0.8;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
}

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

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

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

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-gray) 100%);
    color: var(--white);
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    transform: scale(1.05);
}

.hero-section .container {
    position: relative;
    z-index: 1;
    padding: 8rem 0;
}

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

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-gray);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-gray);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark-gray);
}

/* Sections */
.services-section,
.contact-preview-section,
.map-section {
    padding: 5rem 0;
}

.services-section {
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-gray);
}

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

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Contact Preview */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.contact-item h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-item p {
    color: var(--text-dark);
}

.contact-item a {
    color: var(--accent-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--dark-gray);
}

/* Map Section */
.map-section {
    background-color: var(--white);
}

.map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 10;
    pointer-events: none;
}

.marker-pin {
    width: 40px;
    height: 40px;
    background-color: var(--accent-gray);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.marker-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background-color: var(--white);
    border-radius: 50%;
}

.marker-label {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-gray) 100%);
    color: var(--white);
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.page-header-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    transform: scale(1.05);
}

.page-header .container {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.contact-detail-item h3 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-detail-item p {
    color: var(--text-dark);
}

.contact-detail-item a {
    color: var(--accent-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-item a:hover {
    color: var(--dark-gray);
}

.contact-image {
    width: 100%;
    height: 300px;
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

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

/* Contact Form */
.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-gray);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

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

.contact-map h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p {
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    opacity: 0.8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

.cookie-content a {
    color: var(--white);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Legal Content Styles */
.legal-content {
    padding: 5rem 0;
    background-color: var(--white);
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    color: var(--dark-gray);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    color: var(--dark-gray);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.legal-text p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.legal-text ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-text ul li {
    margin-bottom: 0.5rem;
}

.legal-text a {
    color: var(--accent-gray);
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

/* Thank You Section */
.thank-you-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.thank-you-content p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.thank-you-info {
    text-align: left;
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.thank-you-info h3 {
    color: var(--dark-gray);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.thank-you-info ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.thank-you-info ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-dark);
    position: relative;
}

.thank-you-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gray);
    font-weight: bold;
}

.thank-you-info p {
    margin-bottom: 1rem;
}

.thank-you-info a {
    color: var(--accent-gray);
    text-decoration: none;
}

.thank-you-info a:hover {
    text-decoration: underline;
}

/* Intro Section */
.intro-section {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.intro-content .section-title {
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

/* Featured Sections */
.featured-sections {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

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

.featured-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.featured-card h3 {
    color: var(--dark-gray);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.featured-card p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.featured-link {
    color: var(--accent-gray);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.featured-link:hover {
    color: var(--dark-gray);
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.why-choose-item {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-3px);
}

.why-choose-item h3 {
    color: var(--dark-gray);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.why-choose-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

.why-choose-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

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

/* Services Detail Section */
.services-detail-section {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.service-detail-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-detail-card h2 {
    color: var(--dark-gray);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-detail-card > p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-detail-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.service-detail-card ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-dark);
    position: relative;
}

.service-detail-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gray);
    font-weight: bold;
}

.service-image {
    width: 100%;
    height: 250px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-metrics {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-gray);
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-gray);
}

.metric-label {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.services-table-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-gray) 100%);
    color: var(--white);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* About Sections */
.about-intro-section {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.about-intro-content {
    text-align: left;
}

.about-intro-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-intro-content h2 {
    color: var(--dark-gray);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.about-intro-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.about-stats-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

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

.stat-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-gray);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--medium-gray);
    font-size: 1rem;
}

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

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

.value-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.value-card h3 {
    color: var(--dark-gray);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-dark);
    line-height: 1.8;
}

.value-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-history-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.history-timeline {
    max-width: 900px;
    margin: 2rem auto 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 60px;
    top: 80px;
    width: 2px;
    height: calc(100% + 1rem);
    background-color: var(--border-gray);
}

.timeline-year {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    background-color: var(--accent-gray);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    border-radius: 8px;
}

.timeline-content {
    flex: 1;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: var(--dark-gray);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-dark);
    line-height: 1.8;
}

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

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

.team-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-card h3 {
    color: var(--dark-gray);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--accent-gray);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.team-bio {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 0.95rem;
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-gray);
}

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

/* News Section */
.news-section {
    padding: 5rem 0;
    background-color: var(--white);
}

/* Testimonials Full Section */
.testimonials-full-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

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

/* Statistics Section */
.statistics-section {
    padding: 5rem 0;
    position: relative;
    background-image: url('../image/car8.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.statistics-section .container {
    position: relative;
    z-index: 1;
}

.table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.data-table thead {
    background-color: var(--dark-gray);
    color: var(--white);
}

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

.data-table th {
    font-weight: 600;
    font-size: 1rem;
}

.data-table tbody tr {
    transition: background-color 0.3s ease;
}

.data-table tbody tr:hover {
    background-color: var(--light-gray);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.data-table td {
    color: var(--text-dark);
}

.data-table td:last-child {
    font-weight: 600;
    color: var(--accent-gray);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
    font-size: 1rem;
}

.testimonial-author {
    border-top: 1px solid var(--border-gray);
    padding-top: 1rem;
}

.testimonial-author h4 {
    color: var(--dark-gray);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.testimonial-date {
    color: var(--medium-gray);
    font-size: 0.85rem;
}

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

.accordion {
    max-width: 900px;
    margin: 2rem auto 0;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--white);
}

.accordion-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background-color: var(--light-gray);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.accordion-header:hover {
    background-color: var(--border-gray);
}

.accordion-item.active .accordion-header {
    background-color: var(--accent-gray);
    color: var(--white);
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 1.5rem;
}

.accordion-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

/* Articles Section */
.articles-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

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

.article-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.article-date {
    color: var(--accent-gray);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.article-card h3 {
    color: var(--dark-gray);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-card p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-link {
    color: var(--accent-gray);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: var(--dark-gray);
    text-decoration: underline;
}

.article-image {
    width: 100%;
    height: 250px;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

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

/* Working Hours Table */
.working-hours-table {
    margin-top: 2rem;
}

.working-hours-table h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hours-table thead {
    background-color: var(--accent-gray);
    color: var(--white);
}

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

.hours-table th {
    font-weight: 600;
    font-size: 0.95rem;
}

.hours-table tbody tr:last-child td {
    border-bottom: none;
}

.hours-table td {
    color: var(--text-dark);
}

/* Contact FAQ Section */
.contact-faq-section {
    padding: 5rem 0;
    background-color: var(--white);
}

/* Form Select Styling */
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-gray);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.form-group select:focus {
    outline: none;
    border-color: var(--accent-gray);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.fade-in:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.3s;
}

.fade-in:nth-child(4) {
    animation-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background-color: var(--dark-gray);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a.active::after {
        display: none;
    }

    .nav-menu a.active {
        font-weight: bold;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .services-section,
    .contact-preview-section,
    .map-section,
    .contact-section,
    .contact-map,
    .statistics-section,
    .testimonials-section,
    .faq-section,
    .articles-section,
    .contact-faq-section,
    .services-detail-section,
    .services-table-section,
    .cta-section,
    .about-intro-section,
    .about-stats-section,
    .about-values-section,
    .about-history-section,
    .about-team-section,
    .news-section,
    .testimonials-full-section,
    .testimonials-stats-section,
    .intro-section,
    .featured-sections,
    .why-choose-section {
        padding: 3rem 0;
    }

    .hero-section {
        min-height: 400px;
    }

    .hero-section .container {
        padding: 4rem 0;
    }

    .page-header {
        min-height: 350px;
    }

    .page-header .container {
        padding: 3rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .about-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-intro-content {
        text-align: center;
    }

    .about-intro-image {
        height: 300px;
    }

    .why-choose-image {
        height: 150px;
    }

    .service-image {
        height: 200px;
    }

    .article-image {
        height: 200px;
    }

    .contact-image {
        height: 250px;
    }

    .value-image {
        height: 180px;
        margin-bottom: 1rem;
    }

    .services-detailed-grid,
    .stats-grid,
    .values-grid,
    .team-grid,
    .featured-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .intro-cta {
        justify-content: center;
        align-items: center;
    }

    .intro-cta .btn {
        width: auto;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-item:not(:last-child)::after {
        display: none;
    }

    .timeline-year {
        width: 100%;
    }

    .metric-item {
        flex: 1;
    }

    /* Convert tables to cards on mobile */
    .table-wrapper {
        overflow-x: visible;
    }

    .data-table,
    .hours-table {
        display: block;
        width: 100%;
    }

    .data-table thead,
    .hours-table thead {
        display: none;
    }

    .data-table tbody,
    .hours-table tbody {
        display: block;
        width: 100%;
    }

    .data-table tbody tr,
    .hours-table tbody tr {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        background-color: var(--white);
        border: 1px solid var(--border-gray);
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        transition: box-shadow 0.3s ease;
    }

    .data-table tbody tr:hover,
    .hours-table tbody tr:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .data-table tbody tr:last-child,
    .hours-table tbody tr:last-child {
        margin-bottom: 0;
    }

    .data-table td,
    .hours-table td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0.75rem 0;
        border: none;
        border-bottom: 1px solid var(--border-gray);
        text-align: left;
    }

    .data-table td:last-child,
    .hours-table td:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .data-table td:first-child,
    .hours-table td:first-child {
        padding-top: 0;
    }

    .data-table td::before,
    .hours-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--dark-gray);
        margin-right: 1rem;
        flex-shrink: 0;
        min-width: 120px;
    }

    .data-table td::before {
        color: var(--dark-gray);
    }

    .data-table td {
        color: var(--text-dark);
    }

    /* Special styling for last column in data-table (usually highlights) */
    .data-table tbody tr td:last-child {
        font-weight: 600;
        color: var(--accent-gray);
        border-bottom: none !important;
    }

    .testimonials-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .accordion-content {
        font-size: 0.95rem;
    }

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

    .map-container iframe {
        height: 300px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-content p {
        min-width: auto;
        margin-bottom: 1rem;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons .btn {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .service-card,
    .contact-item {
        padding: 1.5rem;
    }

    /* Table cards - additional mobile optimizations */
    .data-table tbody tr,
    .hours-table tbody tr {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .data-table td::before,
    .hours-table td::before {
        min-width: 100px;
        font-size: 0.9rem;
    }

    .data-table td,
    .hours-table td {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    .testimonial-card,
    .article-card {
        padding: 1.5rem;
    }

    .accordion-header {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

