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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-position: inside;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav a:hover {
    color: #d4af37;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3d5467 100%);
    color: #ffffff;
    padding: 6rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Page Hero */
.page-hero {
    background-color: #f8f9fa;
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 3px solid #d4af37;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-intro {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #d4af37;
    color: #1a1a1a;
}

.btn-primary:hover {
    background-color: #c19b2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Intro Section */
.intro-section {
    background-color: #f8f9fa;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.section-image {
    max-width: 400px;
    width: 100%;
}

.content-text p {
    margin-bottom: 1.2rem;
}

/* Values Section */
.values-section {
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    margin-bottom: 1rem;
}

/* Featured Service */
.featured-service {
    background-color: #f8f9fa;
}

.featured-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.featured-text {
    flex: 1;
}

.featured-text p {
    margin-bottom: 1.2rem;
}

.featured-text .btn {
    margin-top: 1.5rem;
}

.featured-image {
    max-width: 400px;
    width: 100%;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3d5467 100%);
    color: #ffffff;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat-item {
    flex: 1 1 200px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Philosophy Section */
.philosophy-section {
    background-color: #f8f9fa;
    text-align: center;
}

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

.philosophy-content p {
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Testimonials */
.testimonials-section {
    text-align: center;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #d4af37;
    border-radius: 4px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #2c3e50;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
}

/* Process Section */
.process-section {
    background-color: #f8f9fa;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.process-step {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 220px;
    padding: 2rem 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #d4af37;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    margin-bottom: 1rem;
}

/* Industries Section */
.industries-section {
    text-align: center;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.industry-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: left;
}

.industry-item h3 {
    margin-bottom: 1rem;
    color: #d4af37;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
}

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

.faq-item {
    margin-bottom: 1rem;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background-color: #ffffff;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: #d4af37;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

/* Insights Section */
.insights-section {
    background-color: #f8f9fa;
    text-align: center;
}

.insights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.insight-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: left;
    border-top: 3px solid #d4af37;
}

.insight-card h3 {
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3d5467 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

/* Content Section (About Page) */
.content-section {
    padding: 3rem 0;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block p {
    margin-bottom: 1.2rem;
}

.content-block ul {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.content-block li {
    margin-bottom: 0.8rem;
    padding-left: 1rem;
}

/* Features List */
.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.feature-item h3 {
    margin-bottom: 0.5rem;
}

/* Principles List */
.principles-list {
    margin-top: 1.5rem;
}

.principles-list li {
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

/* Timeline */
.timeline {
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    flex-shrink: 0;
    width: 80px;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

/* Services Page */
.services-intro {
    text-align: center;
    padding: 2rem 0;
}

.services-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
}

.services-list {
    padding: 3rem 0;
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid #d4af37;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
}

.service-header h2 {
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4af37;
}

.service-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-details {
    margin-top: 2rem;
}

.service-details h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.service-details ul {
    margin-left: 1rem;
}

.service-details li {
    margin-bottom: 0.7rem;
}

/* Benefits Section */
.benefits-section {
    background-color: #f8f9fa;
    text-align: center;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.benefit-item h3 {
    margin-bottom: 1rem;
    color: #d4af37;
}

/* Comparison Section */
.comparison-section {
    padding: 3rem 0;
}

.comparison-table {
    margin-top: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-header,
.comparison-row {
    display: flex;
}

.comparison-header {
    background-color: #2c3e50;
    color: #ffffff;
    font-weight: 600;
}

.comparison-row:nth-child(even) {
    background-color: #ffffff;
}

.comparison-cell {
    flex: 1;
    padding: 1rem;
    text-align: center;
    border-right: 1px solid #dee2e6;
}

.comparison-cell:first-child {
    text-align: left;
    flex: 1.5;
}

.comparison-cell:last-child {
    border-right: none;
}

/* Contact Page */
.contact-info {
    padding: 3rem 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card a {
    color: #d4af37;
    font-weight: 600;
}

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

/* About Location */
.about-location {
    background-color: #f8f9fa;
    padding: 3rem 0;
}

.about-location p {
    margin-bottom: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Directions Section */
.directions-section {
    padding: 3rem 0;
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.direction-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.direction-item h3 {
    margin-bottom: 1rem;
    color: #d4af37;
}

/* Company Info Section */
.company-info-section {
    background-color: #f8f9fa;
    padding: 3rem 0;
}

.company-details {
    max-width: 600px;
    margin: 2rem auto 0;
}

.company-details p {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #ffffff;
    border-left: 3px solid #d4af37;
    border-radius: 4px;
}

/* Visit Description */
.visit-description {
    padding: 3rem 0;
}

.visit-description p {
    margin-bottom: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact FAQ */
.contact-faq {
    background-color: #f8f9fa;
    padding: 3rem 0;
}

/* Opening Times Extended */
.opening-times-extended {
    padding: 3rem 0;
}

.opening-times-extended p {
    margin-bottom: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Thank You Page */
.thank-you-section {
    padding: 5rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.thank-you-section h1 {
    margin-bottom: 1.5rem;
    color: #d4af37;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thank-you-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Next Steps */
.next-steps {
    background-color: #f8f9fa;
    padding: 3rem 0;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.step-card .step-number {
    margin-bottom: 1.5rem;
}

/* Recommendations Section */
.recommendations-section {
    padding: 3rem 0;
    text-align: center;
}

.recommendations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.recommendation-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: left;
}

.recommendation-card h3 {
    margin-bottom: 1rem;
    color: #d4af37;
}

.link-arrow {
    color: #2c3e50;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.link-arrow:hover {
    color: #d4af37;
}

/* Legal Content */
.legal-content {
    padding: 2rem 0;
}

.legal-section {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.legal-section h2 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-section p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.legal-section ul,
.legal-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    margin-bottom: 2rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
}

.cookies-table tr {
    border-bottom: 1px solid #dee2e6;
}

.cookies-table tr:last-child {
    border-bottom: none;
}

.cookies-table td {
    padding: 0.75rem 1rem;
}

.cookies-table td:first-child {
    width: 30%;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: #d4af37;
    font-size: 1.1rem;
}

.footer-col p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-col a {
    display: block;
    color: #ffffff;
    margin-bottom: 0.75rem;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
    color: #d4af37;
}

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

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-content h2 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cookie-option {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-description {
    margin-top: 0.5rem;
    margin-left: 2rem;
    font-size: 0.95rem;
    color: #555;
}

.cookie-modal .cookie-buttons {
    margin-top: 2rem;
    justify-content: flex-end;
}

/* Responsive Design */
@media (min-width: 768px) {
    .content-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }

    .featured-content {
        flex-direction: row;
        align-items: center;
    }
}

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

    .nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        background-color: #1a1a1a;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav.active {
        left: 0;
    }

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

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

    h2 {
        font-size: 1.75rem;
    }

    .value-card,
    .testimonial-card,
    .industry-item,
    .insight-card,
    .benefit-item,
    .contact-card,
    .direction-item,
    .recommendation-card {
        flex: 1 1 100%;
    }

    .process-step,
    .step-card {
        flex: 1 1 100%;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-cell {
        padding: 0.75rem 0.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
}

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

    .hero-text {
        font-size: 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}
