/* GoalConsulting Custom Styles - matrix.css */

/* Color Variables with Unique Names */
:root {
    --crimson-primary: #d62828;
    --rose-whisper: #fbe9e9;
    --burgundy-depth: #961c1c;
    --ocean-secondary: #2a5f7a;
    --sky-accent: #87ceeb;
    --gold-tertiary: #d4af37;
    --cream-light: #f9f7e8;
    --steel-accent: #708090;
    --mint-bg: #f0f8f0;
    --slate-neutral: #6c757d;
    --pearl-light: #f8f9fa;
    --info-blue: #17a2b8;
    --warning-amber: #ffc107;
    --success-emerald: #28a745;
}

/* Base Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--burgundy-depth);
    background-color: #ffffff;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--slate-neutral);
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: var(--burgundy-depth);
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Container and Layout Utilities */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation Header */
.primary-navigation {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navigation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.brand-identity img {
    height: 72px;
    width: auto;
}

.mobile-toggle {
    display: none;
}

.toggle-control {
    display: none;
    cursor: pointer;
    padding: 12px;
    z-index: 2;
}

.menu-lines {
    width: 28px;
    height: 3px;
    background: var(--burgundy-depth);
    position: relative;
    transition: all 0.3s ease;
}

.menu-lines:before,
.menu-lines:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--burgundy-depth);
    transition: all 0.3s ease;
}

.menu-lines:before { top: -9px; }
.menu-lines:after { top: 9px; }

.navigation-wrapper {
    display: flex;
    align-items: center;
    gap: 22px;
}

.navigation-items {
    display: flex;
    gap: 35px;
    margin: 0;
}

.navigation-link {
    color: var(--burgundy-depth);
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.navigation-link:hover {
    color: var(--crimson-primary);
}

.navigation-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--crimson-primary);
    transition: width 0.3s ease;
}

.navigation-link:hover:after {
    width: 100%;
}

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    .toggle-control {
        display: block;
    }

    .navigation-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        transition: all 0.3s ease;
        padding-top: 85px;
        flex-direction: column;
        align-items: center;
        z-index: 1;
    }

    .navigation-items {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .navigation-item {
        width: 100%;
        text-align: center;
        margin: 18px 0;
    }

    .navigation-link {
        display: inline-block;
        padding: 12px 25px;
        font-size: 18px;
    }

    .mobile-toggle:checked ~ .navigation-wrapper {
        left: 0;
    }

    .mobile-toggle:checked ~ .toggle-control .menu-lines {
        background: transparent;
    }

    .mobile-toggle:checked ~ .toggle-control .menu-lines:before {
        transform: rotate(45deg);
        top: 0;
    }

    .mobile-toggle:checked ~ .toggle-control .menu-lines:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero Section */
.hero-showcase {
    background: var(--pearl-light);
    position: relative;
    margin-bottom: 15px;
    padding: 70px 0;
    min-height: 500px;
}

.hero-showcase::before {
    content: "";
    display: block;
    width: 8%;
    height: 100%;
    background: var(--crimson-primary);
    position: absolute;
    top: 0;
    left: 0;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    min-height: 400px;
}

.hero-text-content h4 {
    font-size: 28px;
    color: var(--slate-neutral);
    margin-bottom: 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
}

.hero-text-content h1 {
    font-size: 2.8rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--burgundy-depth);
    line-height: 1.2;
}

.hero-text-content p {
    margin-bottom: 32px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero-image-container {
    position: relative;
    top: 3px;
}

.hero-image-container img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Action Buttons */
.action-button {
    display: inline-block;
    border: 1px solid var(--crimson-primary);
    border-radius: 28px;
    color: #ffffff;
    font-weight: 600;
    padding: 16px 45px;
    background: var(--crimson-primary);
    transition: all 0.4s ease;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.primary-action {
    padding: 16px 38px;
}

.action-button:hover {
    border-color: var(--burgundy-depth);
    background: transparent;
    color: var(--burgundy-depth);
    transform: translateY(-2px);
}

/* About Section */
.company-overview {
    background: var(--burgundy-depth);
    padding: 95px 0;
}

.background-dark {
    background: var(--burgundy-depth);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 38px;
    line-height: 1.1;
}

.summary-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 22px;
}

.detailed-description {
    color: #ffffff;
    margin-bottom: 42px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.overview-action {
    background: var(--crimson-primary);
    border-color: var(--crimson-primary);
}

.overview-action:hover {
    background: #ffffff;
    color: var(--burgundy-depth);
    border-color: #ffffff;
}

.content-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Services Section */
.services-showcase {
    padding: 80px 0;
    background: #ffffff;
}

.section-header {
    display: flex;
    justify-content: center;
    margin-bottom: 65px;
}

.header-content {
    max-width: 650px;
    text-align: center;
}

.section-title {
    color: var(--burgundy-depth);
    margin-bottom: 16px;
    font-size: 2.4rem;
}

.header-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.service-card {
    padding: 35px;
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 25px;
}

.icon-graphic {
    width: 60px;
    height: 60px;
    filter: hue-rotate(180deg) saturate(1.2);
}

.service-title {
    color: var(--burgundy-depth);
    margin-bottom: 18px;
    font-size: 1.4rem;
}

.service-card p {
    line-height: 1.8;
    font-size: 1rem;
}

/* Success Stories Section */
.success-stories-area {
    padding: 95px 0;
    background: var(--pearl-light);
}

.section-spacing {
    padding: 95px 0;
}

.stories-header {
    text-align: center;
    margin-bottom: 75px;
}

.stories-header h2 {
    font-size: 4.5rem;
    color: var(--sky-accent);
    opacity: 0.15;
    margin: 0;
    line-height: 1;
    font-weight: 700;
}

.stories-header h1 {
    color: var(--burgundy-depth);
    margin-top: -35px;
    font-size: 2.2rem;
}

.stories-header p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--slate-neutral);
    max-width: 580px;
    margin: 15px auto 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    position: relative;
    display: inline-block;
    margin-bottom: 35px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: scale(1.05);
}

.story-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.story-card:hover .story-image {
    filter: brightness(0.8);
}

.story-content {
    position: absolute;
    background: rgba(150, 28, 28, 0.85);
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    transition: all 0.4s ease;
    padding: 20px;
}

.story-card:hover .story-content {
    background: linear-gradient(135deg, var(--sky-accent) 0%, var(--mint-bg) 100%);
}

.story-content h3 {
    font-size: 1.1rem;
    margin: 0;
    padding: 0;
    transition: all 0.4s ease;
}

.story-content h3 a {
    color: #ffffff;
    font-weight: 500;
}

.story-card:hover .story-content h3 a {
    color: var(--burgundy-depth);
    font-weight: 600;
}

/* Testimonials Section */
.client-testimonials {
    position: relative;
    padding: 80px 0;
}

.background-light {
    background: var(--pearl-light);
}

.testimonials-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.testimonial-background-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonials-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--burgundy-depth);
    margin-bottom: 35px;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-item.active {
    display: block;
    opacity: 1;
}

.testimonial-card {
    font-size: 1.1rem;
}

.testimonial-text p {
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--slate-neutral);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--burgundy-depth);
    font-size: 1.1rem;
}

.author-position {
    font-size: 0.95rem;
    color: var(--crimson-primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.carousel-controls {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.control-btn {
    background: rgba(150, 28, 28, 0.1);
    border: 1px solid var(--burgundy-depth);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: var(--burgundy-depth);
}

.control-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0.3);
}

.control-btn:hover img {
    filter: brightness(1);
}

/* Footer */
.site-footer {
    background: var(--burgundy-depth);
    padding: 85px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 35px;
}

.section-title {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 28px;
    text-transform: capitalize;
}

.header-content .aa{
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
    color: var(--crimson-primary);
    margin-bottom: 28px;
    text-transform: capitalize;
}

.company-info p,
.footer-links li a {
    color: #c8d0d7;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-links li a:hover {
    color: var(--crimson-primary);
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--crimson-primary);
}

.social-links img {
    width: 18px;
    height: 18px;
    filter: brightness(1);
}

.footer-bottom {
    background: rgba(150, 28, 28, 0.95);
    padding: 25px 0;
    margin-top: 40px;
}

.copyright-text {
    color: #ffffff;
    margin-bottom: 0;
    text-align: center;
    font-size: 0.95rem;
}

.copyright-text a {
    color: var(--rose-whisper);
}

.copyright-text a:hover {
    color: var(--sky-accent);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-showcase::before {
        width: 25%;
    }

    .hero-layout,
    .about-layout,
    .testimonials-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text-content h1 {
        font-size: 2.2rem;
    }

    .content-text h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .hero-showcase::before {
        width: 15%;
    }

    .hero-showcase {
        padding: 50px 0;
    }

    .company-overview {
        padding: 60px 0;
    }

    .services-showcase,
    .success-stories-area {
        padding: 60px 0;
    }

    .stories-header h2 {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 25px;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-header h2 {
        font-size: 2.2rem;
    }

    .site-footer {
        padding: 50px 0 15px;
    }
}

@media (max-width: 575px) {
    .hero-showcase::before {
        width: 8%;
    }

    .hero-text-content h1 {
        font-size: 1.8rem;
    }

    .content-text h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stories-header h2 {
        font-size: 2.5rem;
    }
}

/* Performance and Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Services Page Specific Styles */

/* Services Hero Section */
.services-hero-area {
    padding: 80px 0;
    background: var(--pearl-light);
    text-align: center;
}

.background-light-section {
    background: var(--pearl-light);
}

.hero-content-centered {
    max-width: 750px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
    color: var(--crimson-primary);
    font-weight: 700;
    letter-spacing: 2.3px;
    text-transform: uppercase;
}

.section-main-title {
    font-size: 2.8rem;
    color: var(--burgundy-depth);
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--slate-neutral);
    margin: 0;
}

/* Primary Services Showcase */
.primary-services-showcase {
    padding: 85px 0;
    background: #ffffff;
}

.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
    margin-top: 25px;
}

.service-item-block {
    text-align: center;
    padding: 35px 25px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    border: 1px solid #f1f1f1;
}

.service-item-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.service-icon-container {
    width: 85px;
    height: 85px;
    margin: 0 auto 28px;
    background: var(--crimson-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-icon-container::before,
.service-icon-container::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 60px;
    height: 60px;
    transform: scaleY(0.57) rotate(-45deg);
    background-color: inherit;
    left: 12.5px;
}

.service-icon-container::before {
    top: -30px;
}

.service-icon-container::after {
    bottom: -30px;
}

.service-icon-graphic {
    width: 45px;
    height: 45px;
    filter: brightness(0) invert(1);
}

.service-content-area {
    padding: 15px 0 0;
}

.service-heading {
    font-size: 1.4rem;
    color: var(--burgundy-depth);
    margin-bottom: 16px;
    font-weight: 600;
}

.service-content-area p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate-neutral);
}

/* Detailed Services Cards */
.detailed-services-section {
    padding: 95px 0;
    background: #ffffff;
}

.section-header-area {
    text-align: center;
    margin-bottom: 65px;
}

.services-section-title {
    font-size: 2.4rem;
    color: var(--burgundy-depth);
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.3;
}

.services-section-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--slate-neutral);
    max-width: 650px;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 15px;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card-item {
    box-shadow: 0px 15px 35px 0px rgba(150, 150, 150, 0.12);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 38px;
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #ffffff;
}

.service-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 25px 45px 0px rgba(150, 150, 150, 0.18);
}

.card-image-area {
    overflow: hidden;
    position: relative;
    height: 220px;
}

.card-image-responsive {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.service-card-item:hover .card-image-responsive {
    transform: scale(1.08);
}

.card-content-section {
    padding: 32px 35px;
    background: #ffffff;
}

.card-content-section h4 {
    font-size: 1.3rem;
    color: var(--burgundy-depth);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    font-weight: 600;
    line-height: 1.4;
}

.card-content-section p {
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate-neutral);
}

.card-action-button {
    font-size: 13px;
    font-weight: 600;
    color: var(--burgundy-depth);
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1.2px;
}

.card-action-button:after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--crimson-primary);
    transition: all 0.3s ease;
}

.card-action-button:hover {
    color: var(--crimson-primary);
    text-decoration: none;
}

.card-action-button:hover:after {
    width: 100%;
}

/* Services Advantages Section */
.services-advantages-section {
    padding: 75px 0;
    background: #ffffff;
}

.advantages-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.advantages-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.advantages-title {
    color: var(--burgundy-depth);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.advantages-title span {
    display: inline-block;
    border-bottom: 4px solid var(--crimson-primary);
}

.advantages-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--slate-neutral);
    margin-bottom: 18px;
}

.advantages-content-section p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.advantages-cta-button {
    display: inline-block;
    color: #ffffff;
    background-color: var(--crimson-primary);
    border: 2px solid var(--crimson-primary);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.advantages-cta-button:hover {
    background: transparent;
    color: var(--crimson-primary);
    transform: translateY(-2px);
}

/* FAQ Section */
.services-faq-section {
    padding: 85px 0;
}

.faq-header-section {
    display: flex;
    justify-content: center;
    margin-bottom: 55px;
}

.faq-header-content {
    max-width: 650px;
    text-align: center;
}

.faq-subtitle {
    font-size: 14px;
    display: block;
    font-weight: 650;
    color: var(--crimson-primary);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
}

.faq-header-content h2 {
    font-size: 2.2rem;
    font-weight: 680;
    color: var(--burgundy-depth);
}

.accordion-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-card {
    border: none;
    box-shadow: 0px 8px 32px -4px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    border-radius: 8px;
    background: #ffffff;
}

.faq-card-header {
    background: #fcfcfc;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    cursor: pointer;
}

.faq-toggle-button {
    color: var(--burgundy-depth);
    font-weight: 580;
    padding: 20px 28px;
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    text-decoration: none;
    border: none;
    background: transparent;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-toggle-button:hover {
    color: var(--crimson-primary);
}

.faq-icon {
    width: 20px;
    height: 20px;
    filter: hue-rotate(180deg) saturate(1.2);
}

.faq-toggle-button::after {
    content: "";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--slate-neutral);
    transition: all 0.3s ease;
}

.faq-card.active .faq-toggle-button::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-collapse.show {
    max-height: 300px;
}

.faq-answer {
    padding: 25px 28px;
    background: #fcfcfc;
    line-height: 1.8;
    color: var(--slate-neutral);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .advantages-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-main-title {
        font-size: 2.2rem;
    }

    .services-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .services-hero-area,
    .primary-services-showcase,
    .detailed-services-section,
    .services-faq-section {
        padding: 60px 0;
    }

    .services-grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-item-block {
        padding: 25px 20px;
    }

    .section-main-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 575px) {
    .section-main-title {
        font-size: 1.6rem;
    }

    .services-section-title {
        font-size: 1.7rem;
    }

    .advantages-title {
        font-size: 1.8rem;
    }
}

/* Pricing Services Section */
.pricing-services-section {
    padding: 95px 0;
    background: var(--pearl-light);
}

.background-subtle {
    background: var(--pearl-light);
}

.pricing-header-area {
    text-align: center;
    margin-bottom: 75px;
}

.pricing-header-content {
    max-width: 720px;
    margin: 0 auto;
}

.pricing-subtitle {
    font-size: 13px;
    display: block;
    font-weight: 650;
    color: var(--crimson-primary);
    text-transform: uppercase;
    letter-spacing: 2.4px;
    margin-bottom: 14px;
}

.pricing-main-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--burgundy-depth);
    margin-bottom: 20px;
    line-height: 1.2;
}

.pricing-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--slate-neutral);
    margin: 0;
}

.pricing-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-bottom: 55px;
}

.pricing-service-block {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.35s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.pricing-service-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.featured-service {
    border: 2px solid var(--crimson-primary);
    transform: scale(1.02);
}

.featured-service:hover {
    transform: scale(1.02) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--crimson-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.service-pricing-header {
    text-align: center;
    padding: 40px 30px 25px;
    background: linear-gradient(135deg, #ffffff 0%, var(--pearl-light) 100%);
}

.service-pricing-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 22px;
    background: var(--crimson-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pricing-icon-graphic {
    width: 38px;
    height: 38px;
    filter: brightness(0) invert(1);
}

.pricing-service-title {
    font-size: 1.4rem;
    color: var(--burgundy-depth);
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1.3;
}

.pricing-info {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.price-from {
    font-size: 0.9rem;
    color: var(--slate-neutral);
    font-weight: 500;
}

.price-amount {
    font-size: 2.2rem;
    color: var(--crimson-primary);
    font-weight: 700;
    line-height: 1;
}

.price-period {
    font-size: 0.95rem;
    color: var(--slate-neutral);
    font-weight: 500;
}

.pricing-service-details {
    padding: 25px 30px 35px;
}

.pricing-service-details p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate-neutral);
    margin-bottom: 22px;
    text-align: center;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}

.pricing-features-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--slate-neutral);
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.pricing-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--crimson-primary);
    font-weight: 600;
    font-size: 1rem;
}

.pricing-features-list li:last-child {
    font-weight: 600;
    color: var(--burgundy-depth);
    font-size: 0.9rem;
    margin-top: 8px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.pricing-features-list li:last-child::before {
    content: "£";
    color: var(--crimson-primary);
    font-weight: 700;
}

.pricing-action-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--crimson-primary);
    color: #ffffff;
    padding: 14px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--crimson-primary);
}

.pricing-action-btn:hover {
    background: transparent;
    color: var(--crimson-primary);
    transform: translateY(-2px);
}

.featured-service .pricing-action-btn {
    background: var(--burgundy-depth);
    border-color: var(--burgundy-depth);
}

.featured-service .pricing-action-btn:hover {
    background: transparent;
    color: var(--burgundy-depth);
}

.pricing-note-section {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-note-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.note-icon {
    width: 24px;
    height: 24px;
    filter: hue-rotate(180deg) saturate(1.2);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-note-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--slate-neutral);
    margin: 0;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 991px) {
    .pricing-main-title {
        font-size: 2.2rem;
    }

    .pricing-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .featured-service {
        transform: none;
    }

    .featured-service:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-services-section {
        padding: 60px 0;
    }

    .pricing-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-pricing-header {
        padding: 30px 25px 20px;
    }

    .pricing-service-details {
        padding: 20px 25px 30px;
    }

    .pricing-main-title {
        font-size: 1.9rem;
    }

    .price-amount {
        font-size: 1.9rem;
    }
}

@media (max-width: 575px) {
    .pricing-main-title {
        font-size: 1.7rem;
    }

    .service-pricing-header {
        padding: 25px 20px 18px;
    }

    .pricing-service-details {
        padding: 18px 20px 25px;
    }

    .pricing-note-section {
        padding: 20px 25px;
    }

    .pricing-note-content {
        flex-direction: column;
        gap: 10px;
    }
}

.policy h1, .policy h2{
    color: var(--crimson-primary);
}

/* Contact Page Specific Styles */

/* Contact Hero Section */
.contact-hero-section {
    padding: 85px 0;
    text-align: center;
}

.background-light-area {
    background: var(--pearl-light);
}

.contact-hero-content {
    max-width: 750px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 13px;
    display: block;
    font-weight: 650;
    color: var(--crimson-primary);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 15px;
}

.hero-main-heading {
    font-size: 2.8rem;
    color: var(--burgundy-depth);
    font-weight: 700;
    margin-bottom: 22px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--slate-neutral);
    margin: 0;
}

/* Main Contact Section */
.main-contact-section {
    padding: 95px 0;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 65px;
    align-items: flex-start;
}

.contact-form-section {
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.form-row-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 28px;
}

.form-field-section.full-width {
    grid-column: 1 / -1;
}

.form-field-section.submit-section {
    grid-column: 1 / -1;
    margin-top: 15px;
}

.form-input-control {
    width: 100%;
    height: 55px;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    padding: 0 18px;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    color: var(--burgundy-depth);
    transition: all 0.3s ease;
}

.form-input-control:focus {
    outline: none;
    border-color: var(--crimson-primary);
    box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.1);
}

.form-input-control:hover {
    border-color: var(--slate-neutral);
}

.form-input-control::placeholder {
    color: var(--slate-neutral);
    font-weight: 400;
}

.form-input-control.error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

textarea.form-input-control {
    height: auto;
    padding: 18px;
    resize: vertical;
    min-height: 120px;
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
}

select.form-input-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 45px;
}

.field-error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 8px;
    display: none;
    font-weight: 500;
}

.field-error-message.show {
    display: block;
}

.form-submit-button {
    width: 100%;
    background: var(--crimson-primary);
    color: #ffffff;
    border: 2px solid var(--crimson-primary);
    padding: 16px 35px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.form-submit-button:hover {
    background: var(--burgundy-depth);
    border-color: var(--burgundy-depth);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(214, 40, 40, 0.3);
}

.form-submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Contact Information */
.contact-info-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 35px;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    height: fit-content;
}

.contact-info-title {
    font-size: 1.5rem;
    color: var(--burgundy-depth);
    font-weight: 600;
    margin-bottom: 35px;
    text-align: center;
}

.contact-details-list {
    margin-bottom: 35px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon-wrapper {
    width: 45px;
    height: 45px;
    background: var(--rose-whisper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
}

.contact-icon {
    width: 22px;
    height: 22px;
    filter: hue-rotate(180deg) saturate(1.3);
}

.contact-detail-content {
    flex: 1;
}

.detail-label {
    display: block;
    color: var(--burgundy-depth);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.detail-value {
    color: var(--slate-neutral);
    line-height: 1.6;
    font-size: 0.95rem;
}

.consultation-note {
    background: var(--rose-whisper);
    padding: 22px 20px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.note-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.note-icon-graphic {
    width: 24px;
    height: 24px;
    filter: hue-rotate(180deg) saturate(1.3);
}

.consultation-note p {
    color: var(--burgundy-depth);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Why Contact Us Section */
.why-contact-section {
    padding: 85px 0;
    background: #ffffff;
}

.why-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.why-contact-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.why-contact-title {
    color: var(--burgundy-depth);
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.why-contact-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--slate-neutral);
    margin-bottom: 20px;
    line-height: 1.6;
}

.why-contact-content p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: var(--slate-neutral);
}

/* Service Areas Section */
.service-areas-section {
    padding: 95px 0;
}

.service-areas-header {
    text-align: center;
    margin-bottom: 65px;
}

.areas-section-title {
    font-size: 2.4rem;
    color: var(--burgundy-depth);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.areas-section-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--slate-neutral);
    max-width: 650px;
    margin: 0 auto;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.service-area-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.35s ease;
}

.service-area-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.area-card-header {
    text-align: center;
    margin-bottom: 25px;
}

.area-icon {
    width: 50px;
    height: 50px;
    filter: hue-rotate(180deg) saturate(1.2);
    margin-bottom: 15px;
}

.area-title {
    color: var(--burgundy-depth);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.area-card-content p {
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--slate-neutral);
}

.area-cities {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.area-cities li {
    color: var(--slate-neutral);
    font-size: 0.9rem;
    padding: 6px 12px;
    background: var(--rose-whisper);
    border-radius: 15px;
    text-align: center;
    font-weight: 500;
}

/* Form Validation Animation */
.form-input-control.shake {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Success Message */
.form-success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.form-success-message.show {
    display: block;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-layout-grid,
    .why-contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-main-heading {
        font-size: 2.3rem;
    }

    .why-contact-title {
        font-size: 2rem;
    }

    .areas-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-section,
    .main-contact-section,
    .why-contact-section,
    .service-areas-section {
        padding: 60px 0;
    }

    .form-row-group {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-section {
        padding: 35px 25px;
    }

    .contact-info-section {
        padding: 30px 25px;
    }

    .service-areas-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero-main-heading {
        font-size: 1.9rem;
    }
}

@media (max-width: 575px) {
    .hero-main-heading {
        font-size: 1.7rem;
    }

    .why-contact-title {
        font-size: 1.8rem;
    }

    .areas-section-title {
        font-size: 1.8rem;
    }

    .contact-form-section {
        padding: 25px 20px;
    }

    .contact-info-section {
        padding: 25px 20px;
    }

    .service-area-card {
        padding: 25px 20px;
    }

    .area-cities {
        grid-template-columns: 1fr;
    }
}

.footer-section p {
    color: #fff;
}