:root {
    /* Color Palette */
    --primary-red: #bf051f;
    --primary-dark: #000;
    --secondary-dark: #1a1a1a;
    --accent-dark: #44000b;
    --text-white: #ffffff;
    --text-grey: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Layout */
    --container-width: 1400px;
    --header-height: 120px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html,
body {
    height: 100%;
    margin: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

body.no-scroll {
    overflow: hidden;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.grid-bg {
    position: relative;
}

.grid-bg::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

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

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

.section-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -3px;
    line-height: 1;
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-grey);
    max-width: 600px;
    font-weight: 500;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

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

.btn-primary:hover {
    background-color: #e60624;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(191, 5, 31, 0.3);
}

/* --- Header & Navbar --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999 !important;
    padding: 15px 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    height: 70px;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-left {
    width: 80px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
    z-index: 10000 !important;
}

.hamburger span {
    display: block;
    width: 45px;
    height: 3px;
    background: white;
    transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-logo {
    height: 60px;
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 20001 !important;
}

/* MQ button removed */

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: var(--transition-smooth);
    z-index: 1000;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-nav a {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    text-decoration: none;
}

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

/* --- Hero Section --- */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./assets/Links/Unknown-5.jpg') center / 100% no-repeat;
    z-index: 1;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--header-height) 100px 40px;
}

.hero-left {
    flex: 1;
}

.hero-title {
    font-size: clamp(4rem, 8vw, 8.5rem);
    font-weight: 900;
    line-height: 0.8;
    color: var(--primary-red);
    text-align: left;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -3px;
}

.hero-title .line {
    display: block;
}

.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
}

.hero-services {
    display: flex;
    gap: 50px;
    margin-bottom: 10px;
}

.hero-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-service-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.hero-service-item span {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-white);
}

.hero-cta {
    width: 100%;
    max-width: 400px;
    /* match width of services approx */
}

.hero-cta .btn-primary {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    width: 100%;
    display: block;
    text-align: center;
}

/* --- Section Styling --- */
section {
    padding: 80px 0;
}

.alt-bg {
    background-color: var(--secondary-dark);
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-grey);
    max-width: 600px;
    margin: 0 auto;
}



/* --- About Section --- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-list {
    margin-top: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.features-list i {
    color: var(--primary-red);
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(191, 5, 31, 0.2);
    mix-blend-mode: multiply;
}


/* --- Contact Page Red Theme --- */
.contact-page {
    background-color: var(--primary-red);
}

.contact-page #contact-hero,
.contact-page #faq {
    background-color: transparent;
}

.contact-page .section-title {
    color: var(--text-white);
}

.contact-page .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.contact-page .info-card,
.contact-page .contact-form {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-page .info-card h3 {
    color: var(--text-white);
}

.contact-page .info-item i {
    background: rgba(191, 5, 31, 0.2);
    color: var(--primary-red);
}

.contact-page .form-group label {
    color: var(--text-grey);
}

.contact-page .form-group input,
.contact-page .form-group select,
.contact-page .form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-page .btn-primary {
    background-color: var(--text-white);
    color: var(--primary-red);
}

.contact-page .btn-primary:hover {
    background-color: #f0f0f0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* --- Contact, Services, About & Story Page Red Theme --- */
.contact-page,
.services-page,
.about-page,
.story-page {
    background-color: var(--primary-red);
}

.contact-page #contact-hero,
.contact-page #faq,
.services-page #services-hero,
.about-page #about-hero,
.story-page #story-hero {
    background-color: transparent !important;
}

.contact-page .section-title,
.services-page .section-title,
.about-page .section-title,
.story-page .section-title {
    color: var(--text-white) !important;
}

.contact-page .section-subtitle,
.services-page .section-subtitle,
.about-page .section-subtitle,
.story-page .section-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
}

.contact-page .info-card,
.contact-page .contact-form,
.contact-page .faq-item,
.services-page .service-card,
.about-page .expertise-card,
.story-page .story-highlight-card {
    background: #000 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    opacity: 1 !important;
}

.contact-page .info-card h3,
.services-page .service-info h3,
.about-page .expertise-card h3,
.contact-page .faq-question {
    color: var(--text-white) !important;
}

.services-page .service-info p,
.about-page .expertise-card p,
.contact-page .faq-answer p {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Header Adjustments for Red Pages */
.contact-page .header-logo,
.services-page .header-logo,
.about-page .header-logo,
.story-page .header-logo {
    filter: brightness(0) !important;
}

.contact-page header.scrolled .header-logo,
.services-page header.scrolled .header-logo,
.about-page header.scrolled .header-logo,
.story-page header.scrolled .header-logo {
    filter: brightness(0) invert(1) !important;
}

.contact-page .hamburger span,
.services-page .hamburger span,
.about-page .hamburger span,
.story-page .hamburger span {
    background: #000 !important;
}

.contact-page header.scrolled .hamburger span,
.services-page header.scrolled .hamburger span,
.about-page header.scrolled .hamburger span,
.story-page header.scrolled .hamburger span {
    background: #fff !important;
}

/* MQ button styles removed */

/* Footer Adjustments for Red Pages */
.contact-page footer,
.services-page footer,
.about-page footer,
.story-page footer {
    background-color: var(--primary-dark) !important;
    color: var(--text-white) !important;
}

.contact-page .footer-logo,
.services-page .footer-logo,
.about-page .footer-logo,
.story-page .footer-logo {
    filter: brightness(0) invert(1) !important;
}

.contact-page .footer-contact p,
.services-page .footer-contact p,
.about-page .footer-contact p,
.story-page .footer-contact p {
    color: var(--text-grey) !important;
}



/* --- Services Page --- */
#services-hero {
    background-color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
    /* Ensure all cards have the same height */
}

.service-card {
    background: #0a0a0a !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 60px 50px;
    border-radius: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 1 !important;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card::before,
.expertise-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(191, 5, 31, 0.08) 0%, transparent 50%);
    z-index: -1;
    animation: moveGradient 15s infinite linear;
    pointer-events: none;
}

@keyframes moveGradient {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(10%, 10%);
    }

    50% {
        transform: translate(0, 20%);
    }

    75% {
        transform: translate(-10%, 10%);
    }

    100% {
        transform: translate(0, 0);
    }
}

.service-card:hover {
    background: #111 !important;
    transform: translateY(-15px);
    border-color: var(--primary-red) !important;
    box-shadow: 0 20px 40px rgba(191, 5, 31, 0.15);
}

.service-card:hover::before {
    background: radial-gradient(circle at center, rgba(191, 5, 31, 0.25) 0%, transparent 60%);
    animation-duration: 5s;
    /* Speed up on hover */
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: rotate(-5deg) scale(1.1);
}

.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-icon i {
    font-size: 3rem;
    color: var(--text-white);
}

.service-info h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-white);
    letter-spacing: -1px;
}

.service-card:hover h3 {
    color: var(--primary-red);
}

.service-info p {
    color: var(--text-grey);
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-white);
}

.service-features i {
    color: var(--primary-red);
    font-size: 0.8rem;
}

.services-cta {
    margin-top: 100px;
    text-align: center;
}

.cta-card {
    background: linear-gradient(145deg, #bf051f 0%, #7a0314 100%);
    padding: 100px 50px;
    border-radius: 50px;
    color: white;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-card h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-card .btn-primary {
    background-color: white;
    color: var(--primary-red);
    font-size: 1.1rem;
    padding: 18px 45px;
}

.cta-card .btn-primary:hover {
    background-color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}


/* --- FAQ Section --- */
#faq {
    background-color: var(--primary-dark);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(191, 5, 31, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.faq-question span {
    padding-right: 20px;
}

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 0 32px 32px;
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item.active .faq-question {
    color: var(--primary-red);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Adjust as needed */
}

/* --- Subpage Layout --- */
.subpage-main {
    padding-top: 50px;
    padding-bottom: 100px;
}

/* --- Contact Page --- */
#contact-hero {
    background-color: var(--primary-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 40px;
}

.info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    height: 100%;
}

.info-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--primary-red);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: rgba(191, 5, 31, 0.1);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
}

.info-item span {
    font-weight: 600;
    font-size: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.contact-form {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
}

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

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    font-size: 15px;
    line-height: 1.4;
    animation: formFadeIn 0.3s ease forwards;
    text-align: center;
    position: relative;
    z-index: 100;
    min-height: 50px;
    font-weight: 500;
}

.form-message.success {
    display: block !important;
    background: rgba(46, 204, 113, 0.95); /* Solid high contrast */
    color: #ffffff !important;
    border: 1px solid #2ecc71;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.form-message.error {
    display: block !important;
    background: rgba(231, 76, 60, 0.95); /* Solid high contrast */
    color: #ffffff !important;
    border: 1px solid #e74c3c;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.form-message i {
    margin-right: 10px;
    font-size: 1.1rem;
    display: inline-block;
    animation: iconPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes iconPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes formFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-grey);
}

.form-group.error label {
    color: #e74c3c;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: rgba(231, 76, 60, 0.5) !important;
    background: rgba(231, 76, 60, 0.05) !important;
}

.error-text {
    font-size: 11px;
    color: #e74c3c;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: none;
}

.form-group.error .error-text {
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select option {
    background: var(--secondary-dark);
    color: var(--text-white);
}

.contact-form .btn-primary {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}


/* --- Footer --- */
footer {
    background-color: var(--primary-red);
    padding: 40px 0;
    color: var(--primary-dark);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-logo {
    height: 60px;
    filter: brightness(0);
}

.footer-contact p {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.5;
}

.footer-contact i {
    margin-right: 8px;
    font-size: 0.9em;
    transform: scaleX(-1);
    display: inline-block;
}

/* --- Responsive --- */
@media (max-width: 992px) {

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 20px;
        letter-spacing: -2px;
        position: relative;
        display: inline-block;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 60px;
        height: 5px;
        background: var(--primary-red);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Navbar Mobile */
    header {
        height: 100px;
    }

    .nav-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        position: relative;
    }

    .header-left {
        display: none;
    }

    .header-right {
        position: absolute;
        right: 20px;
        display: flex;
        align-items: center;
        gap: 15px !important;
    }

    .header-logo {
        height: 80px !important;
    }

    .hamburger span {
        width: 30px !important;
        height: 2px !important;
    }

    .mq-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 1rem !important;
    }

    /* Hero Mobile */
    #hero {
        height: 100vh;
        padding-top: 100px;
        align-items: center;
    }

    .hero-bg {
        background: url('./assets/Links/Unknown-2.jpg') center/cover no-repeat;
    }

    .hero-bg .overlay {
        background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
        background-color: transparent;
    }

    .hero-content {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        height: auto;
        min-height: 100vh;
        padding-top: 35vh;
        padding-bottom: 80px;
        gap: 35px;
    }

    .hero-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        flex: none;
        margin-top: 150px;
    }

    .hero-title {
        font-size: 3.8rem !important;
        text-align: center !important;
        letter-spacing: -2px;
        line-height: 0.85;
        margin-bottom: 0;
        width: 100%;
    }

    .hero-right {
        width: 100%;
        align-items: center !important;
        gap: 35px;
        flex: none;
        margin-top: 0;
    }

    .hero-services {
        margin-bottom: 0 !important;
        gap: 20px !important;
        justify-content: center;
        width: 100%;
    }

    .hero-service-item img {
        width: 45px !important;
        height: 45px !important;
        margin-bottom: 10px;
    }

    .hero-service-item span {
        font-size: 0.85rem !important;
        font-weight: 800;
    }

    .hero-cta {
        width: 100%;
    }

    .hero-cta .btn-primary {
        width: 100%;
        padding: 18px;
        border-radius: 50px;
        font-size: 1rem;
        background-color: var(--primary-red);
        text-transform: none;
        font-weight: 800;
        letter-spacing: 0;
    }

    /* FAQ Mobile */
    .faq-question {
        padding: 20px 24px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 24px 24px;
        font-size: 0.9rem;
    }

    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-card,
    .contact-form {
        padding: 30px 20px;
    }
}

/* --- Expertise Grid --- */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.expertise-card {
    padding: 40px;
    border-radius: 24px;
    transition: var(--transition-smooth);
    text-align: center;
}

.expertise-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.expertise-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

/* --- About Quote --- */
.quote-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
}

.quote-text {
    font-size: 2rem;
    line-height: 1.4;
    color: var(--text-white);
    margin-bottom: 30px;
    font-weight: 600;
}

.quote-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.about-footer-tagline {
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
}

.red-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-red);
}

/* --- Story Layout --- */
.narrow-container {
    max-width: 800px;
}

.story-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.story-highlight-card {
    padding: 40px;
    border-radius: 24px;
    margin: 40px 0;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.story-highlight-card p {
    margin-bottom: 0;
    font-size: 1.4rem;
    color: var(--text-white) !important;
    font-weight: 600;
}

.bold-callout {
    font-size: 1.6rem !important;
    font-weight: 700;
    color: var(--text-white) !important;
    margin: 40px 0;
}

.mission-banner {
    padding: 80px 40px;
    background: #000;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-banner h2 {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.mission-banner p {
    font-size: 1.4rem;
    color: var(--text-white);
    max-width: 700px;
    margin: 0 auto 30px;
}

.story-tagline {
    font-weight: 700;
    color: var(--primary-red);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- About Hero & Intro --- */
#about-main {
    padding: 100px 0;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-end;
    padding: 0 0 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.about-hero-grid .section-title {
    margin-bottom: 0;
}

.about-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-white);
    line-height: 1.1;
    margin: 0;
    letter-spacing: -2px;
}

.about-tagline {
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-align: right;
    letter-spacing: 0.5px;
}

/* --- About Split Layout --- */
#about-content {
    padding-top: 25px;
}

.about-split-layout {
    display: none;
    /* Removed in favor of services layout */
}

.about-footer-text {
    max-width: 900px;
    margin: 80px auto 0;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-footer-text strong {
    color: var(--primary-red);
}

.about-text-content {
    /* Sticky removed to fix alignment */
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-white);
    margin: 0 0 25px 0;
}

.supporting-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 90%;
}

.about-text-content .lead-text {
    margin-bottom: 30px;
}

.side-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-white);
    margin-top: 0;
    margin-bottom: 40px;
    position: relative;
}

.side-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--primary-red);
}

.expertise-side-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 1200px) {
    .about-split-layout {
        gap: 40px;
    }
}

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

    .about-text-content {
        position: static;
        margin-bottom: 60px;
    }

    .expertise-side-grid {
        grid-template-columns: 1fr;
    }
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

.expertise-card {
    background: #0a0a0a !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 60px 50px;
    border-radius: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.expertise-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.expertise-card:hover::after {
    transform: scaleX(1);
}

.expertise-card:hover {
    background: #111 !important;
    transform: translateY(-15px);
    border-color: var(--primary-red) !important;
    box-shadow: 0 20px 40px rgba(191, 5, 31, 0.15);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.expertise-card:hover .expertise-icon {
    background: var(--primary-red);
    transform: rotate(10deg) scale(1.1);
}

.expertise-icon img {
    width: 45px;
    height: 45px;
    filter: brightness(0) invert(1);
}

.expertise-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-white);
    line-height: 1.3;
}

.expertise-info p {
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Ensure hamburger active state is always visible */
body .hamburger.active span,
.about-page .hamburger.active span,
.services-page .hamburger.active span,
.contact-page .hamburger.active span,
.story-page .hamburger.active span {
    background: #fff !important;
    z-index: 20000 !important;
    opacity: 1 !important;
    height: 4px !important;
}