:root {
    --primary-color: #d1bfa7; /* Beige baseline */
    --secondary-color: #2c3e5a; /* Dark blue baseline */
    --accent-color: #f1c40f;
    --danger-color: #e74c3c;
    --text-color: #333333;
    --font-family: 'Inter', sans-serif;

    /* Premium Design Tokens */
    --premium-navy: #0a192f;
    --premium-orange: #f47920;
    --premium-gradient: linear-gradient(135deg, #0a192f 0%, #172a45 100%);
    --accent-gradient: linear-gradient(135deg, #f47920 0%, #ff9a44 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-premium: 0 30px 60px rgba(0, 0, 0, 0.2);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Utilities */
.premium-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-smooth);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

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

body {
    font-family: var(--font-family);
    background-color: #2b2d33;
    /* Dark background to match footer and prevent white bar */
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

.hero-container {
    width: 100%;
    padding: 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 8px 0;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    background-color: #fff;
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header.menu-open {
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header.scrolled .nav-links a {
    color: #333;
}

header.menu-open .nav-links a {
    color: #333;
}

header.scrolled .nav-links a:hover {
    color: var(--primary-color);
}

header.menu-open .nav-links a:hover {
    color: var(--primary-color);
}

header.scrolled .logo img {
    height: 90px;
    z-index: 1100;
    position: relative;
}

header.menu-open .logo img {
    z-index: 1100;
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Keeping this for general alignment */
}



.logo img {
    height: 100px;
    width: auto;
    transition: height 0.3s ease;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-item--services > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-item--services > a::after {
    content: "▾";
    font-size: 11px;
    line-height: 1;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s, opacity 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 250px;
    padding: 12px 0;
    margin: 0;
    list-style: none;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.22s ease 0.22s, transform 0.22s ease 0.22s, visibility 0s linear 0.44s;
    z-index: 1200;
}

.nav-dropdown a {
    display: block;
    padding: 10px 18px;
    color: #1f2937;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.nav-dropdown a:hover {
    color: var(--premium-orange, #f47920);
    background: rgba(244, 121, 32, 0.06);
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.nav-item--services:hover .nav-dropdown,
.nav-item--services:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
    border-radius: 3px;
}

header.scrolled .hamburger span {
    background-color: #333;
}

header.menu-open .hamburger span {
    background-color: #333;
}

.sd-page header {
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.sd-page .nav-links a {
    color: #333;
}

.sd-page .nav-links a:hover {
    color: var(--primary-color);
}

.sd-page .hamburger span {
    background-color: #333;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

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

.hamburger.active span {
    background-color: #333 !important;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.2s, background-color 0.2s;
    display: inline-block;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #1a1a1a;
}

.btn-secondary {
    background-color: var(--primary-color);
    color: #1a1a1a;
    font-size: 16px;
    padding: 15px 30px;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-image {
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    clip-path: polygon(60% 0, 100% 0, 100% 100%, 30% 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10%;
    z-index: 2;
    color: #fff;
}

.hero-text {
    max-width: 450px;
    text-align: left;
}

.hero-subtitle {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
    opacity: 0.9;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero {
        min-height: 100vh;
    }

    .hero-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(17, 24, 39, 0.68) 0%, rgba(17, 24, 39, 0.36) 48%, rgba(17, 24, 39, 0.18) 100%);
        z-index: 1;
    }

    .hero-image {
        width: 100%;
    }

    .hero-overlay {
        display: none;
    }

    .hero-content {
        justify-content: flex-start;
        padding: 0 48px;
    }

    .hero-text {
        max-width: 540px;
    }

    .hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        width: 70%;
        height: calc(100vh - 80px);
        background-color: #fff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 24px;
        padding: 40px 32px 32px;
        overflow-y: auto;
        transition: 0.4s ease-in-out;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-item--services {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .nav-item--services > a::after {
        content: "+";
        font-size: 18px;
        font-weight: 700;
        margin-left: auto;
    }

    .nav-dropdown {
        position: static;
        min-width: 0;
        width: 100%;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transform: none;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease, opacity 0.2s ease, visibility 0.2s ease;
    }

    .nav-item--services.mobile-open > a::after {
        content: "−";
    }

    .nav-item--services.mobile-open .nav-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 420px;
    }

    .nav-dropdown li {
        width: 100%;
    }

    .nav-dropdown li + li {
        margin-top: 8px;
    }

    .nav-dropdown a {
        padding: 0 0 0 18px;
        color: #666 !important;
        font-size: 15px;
        line-height: 1.45;
        white-space: normal;
    }

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

    .nav-links a {
        color: #333 !important;
        font-size: 18px;
        text-align: left;
    }

    nav .btn {
        display: none; /* Hide estimate button on mobile nav to save space, can be added to the mobile menu ul if needed */
    }

    .hero {
        min-height: 100svh;
    }

    .hero-content {
        align-items: flex-end;
        padding: 0 24px 72px;
    }

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

    .hero-bg::after {
        background: linear-gradient(180deg, rgba(17, 24, 39, 0.18) 0%, rgba(17, 24, 39, 0.5) 52%, rgba(17, 24, 39, 0.8) 100%);
    }
}

@media (max-width: 576px) {
    .header .container {
        padding: 0 15px;
    }

    .logo img {
        height: 80px;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .hero-content {
        padding: 0 18px 56px;
    }

    .btn {
        padding: 10px 20px;
    }
}

/* About Us Section */
.about {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-left {
    position: relative;
    padding: 50px 0;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.img-1 {
    width: 85%;
    border-radius: 60px 60px 0 60px;
    display: block;
    position: relative;
    z-index: 2;
}

.yellow-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 90%;
    height: 90%;
    border: 3px solid var(--accent-color);
    border-radius: 65px 65px 0 65px;
    z-index: 1;
}

.img-2 {
    width: 85%;
    border-radius: 0 60px 60px 60px;
    position: absolute;
    bottom: -50px;
    right: -20px;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: -40px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 25px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 4;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 220px;
}

.experience-count {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.experience-text {
    display: flex;
    flex-direction: column;
}

.experience-text span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.experience-text strong {
    font-size: 1.2rem;
    font-weight: 600;
}

.about-right {
    padding-left: 20px;
}

.section-subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.section-subtitle .line {
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.section-title {
    color: var(--accent-color);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-right p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle svg {
    width: 22px;
    height: 22px;
}

.feature-item span {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

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

    .about-left {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-right {
        padding-left: 0;
        text-align: center;
    }

    .section-subtitle {
        justify-content: center;
    }

    .features-grid {
        text-align: left;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #f9f9f9;
}

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

.section-header .subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding: 0 40px;
}

.section-header .subtitle::before,
.section-header .subtitle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.section-header .subtitle::before {
    left: 0;
}

.section-header .subtitle::after {
    right: 0;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #111;
    margin-top: 10px;
}

.section-header h2 span {
    color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: visible;
}

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

.service-icon {
    position: absolute;
    bottom: -25px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--danger-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.2);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-content {
    padding: 40px 25px 30px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-read-more {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-read-more:hover {
    background-color: #1e2a4a;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Combined Viewport Section */
.combined-viewport {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

/* Why Choose Us Section */
.why-choose-us {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.why-choose-us .container {
    width: 100%;
}

.section-header h2 span {
    color: var(--accent-color);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 30px auto 0;
}

.why-card {
    background-color: var(--primary-color);
    padding: 40px 30px;
    color: #111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 4px;
}

.why-icon {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.why-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* Testimonials Section */
.testimonials {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 0;
    background-color: #111;
    color: #fff;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    max-width: 1100px;
}

.testimonial-left {
    flex: 1;
    padding-right: 60px;
}

.testimonial-left .subtitle {
    color: #fff;
    margin-bottom: 15px;
}

.testimonial-left .subtitle::before,
.testimonial-left .subtitle::after {
    background-color: #fff;
}

.testimonial-left h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.testimonial-left p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-right {
    flex: 1;
    padding-left: 60px;
    border-left: 1.5px solid rgba(255, 255, 255, 0.4);
}

.testimonial-box {
    position: relative;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.user-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-nav {
    display: flex;
    gap: 10px;
}

.testimonial-nav button {
    background: #fff;
    color: #111;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.testimonial-nav button:hover {
    background: var(--primary-color);
}

.testimonials .btn-primary {
    background-color: var(--primary-color);
    color: #111;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 14px;
}

.testimonials .btn-primary:hover {
    background-color: #c4b096;
}

@media (max-width: 992px) {
    .combined-viewport {
        height: auto;
        min-height: auto;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-content {
        flex-direction: column;
    }

    .testimonial-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .testimonial-right {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        padding-top: 40px;
    }
}

/* Projects Section */
.projects {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
    background-color: #fff;
    box-sizing: border-box;
}

.center {
    text-align: center;
}

.works-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary-color);
}

.works-subtitle::before,
.works-subtitle::after {
    content: "";
    height: 1px;
    width: 50px;
    background-color: var(--secondary-color);
}

.accent-navy {
    color: var(--secondary-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 30px auto 0;
    width: 100%;
}

.project-item {
    position: relative;
    aspect-ratio: 3 / 2;
    /* Slightly shorter than square to fit 2 rows comfortably */
    overflow: hidden;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-more-btn {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.view-more-btn:hover {
    background-color: #1e2a4a;
}

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

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

/* Contact Us Section */
.contact {
    height: 60vh;
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #0b0c10 !important;
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1556911223-e1f020128ff1?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
    padding: 25px 0;
    box-sizing: border-box;
}

.contact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 200px;
    z-index: 3;
    height: 100%;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
}

.accent-yellow {
    color: #ffd700;
}

.contact-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    background-color: #d1d1d1;
    border: none;
    padding: 12px 18px;
    border-radius: 4px;
    font-size: 15px;
    color: #1a1a1a;
    width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.btn-submit {
    background-color: #ffd700;
    color: #1a1a1a;
    border: none;
    padding: 12px 35px;
    font-weight: 800;
    font-size: 15px;
    border-radius: 50px;
    cursor: pointer;
    width: fit-content;
    margin-top: 5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    background-color: #ffc800;
}

.contact-map-wrapper {
    flex: 1.2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.map-decoration-box {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 300px;
    background-color: var(--primary-color);
    z-index: 1;
    opacity: 0.8;
}

.map-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-height: 420px;
    aspect-ratio: 1 / 1;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background-color: #eee;
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .contact {
        height: auto;
        padding: 80px 0;
    }

    .contact-container {
        flex-direction: column;
    }

    .map-decoration-box {
        display: none;
    }

    .contact-map-wrapper {
        width: 100%;
        margin-top: 50px;
    }

    .btn-submit {
        width: 100%;
        margin: 0 auto;
        display: block;
    }
}

/* Footer Section */
.site-footer {
    background-color: #2b2d33 !important;
    color: #fff;
    padding: 45px 0 0;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 45px;
    background-color: transparent !important;
}

.footer-col {
    background-color: transparent !important;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff !important;
    background-color: transparent !important;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    color: #fff !important;
    background-color: transparent !important;
}

.footer-line {
    color: #ffd700;
}

.footer-col.about p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    background-color: transparent !important;
}

.footer-badges {
    display: flex;
    gap: 15px;
    align-items: center;
    background-color: transparent !important;
}

.badge-item {
    background-color: transparent !important;
}

.badge-item img,
.badge-item svg {
    height: 60px;
    width: auto;
    filter: brightness(1) !important;
    background-color: transparent !important;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
}

.day-dot {
    width: 4px;
    height: 4px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 10px;
}

.hours-list li span.time {
    margin-left: auto;
    font-weight: 600;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-icon {
    width: 32px;
    height: 32px;
    background-color: #1a1b1f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    flex-shrink: 0;
}

.footer-icon svg {
    width: 16px;
    height: 16px;
}

.footer-text strong {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.footer-text p {
    font-size: 14px;
    color: #fff;
}

.footer-bottom {
    background-color: #1a1b1f;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Footer v2 - Collison Free */
.main-footer-v2 {
    background:
        linear-gradient(180deg, #2b2d34 0%, #25272d 100%) !important;
    color: #fff !important;
    padding: 0 !important;
    font-family: 'Inter', sans-serif !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    position: relative !important;
    overflow: hidden !important;
}

.main-footer-v2::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        radial-gradient(circle at left top, rgba(255, 210, 77, 0.08), transparent 28%),
        radial-gradient(circle at right bottom, rgba(255, 255, 255, 0.03), transparent 30%) !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

.footer-v2-container {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: clamp(40px, 4vw, 72px) !important;
    width: min(1240px, calc(100% - 64px)) !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: 58px 0 38px 0 !important;
    background: transparent !important;
    position: relative !important;
    z-index: 1 !important;
}

.footer-v2-col {
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    min-width: 0;
}

.footer-v2-col.about,
.footer-v2-col.hours,
.footer-v2-col.contact-info {
    max-width: none !important;
}

.footer-v2-col.about {
    flex: 0 0 360px !important;
}

.footer-v2-col.hours {
    flex: 0 0 440px !important;
}

.footer-v2-col.contact-info {
    flex: 0 0 360px !important;
}

.footer-v2-col.about p {
    max-width: 34ch !important;
    margin-bottom: 26px !important;
}

.footer-v2-col h3 {
    font-size: 18px !important;
    font-weight: 800 !important;
    min-height: 44px !important;
    margin-bottom: 22px !important;
    color: #fff !important;
    letter-spacing: 0.01em !important;
}

.footer-v2-logo {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 22px !important;
    line-height: 1.1 !important;
}

.footer-v2-line {
    color: #ffd700 !important;
}

.footer-v2-col.about p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.72) !important;
    margin-bottom: 26px !important;
}

.footer-v2-badges {
    display: flex !important;
    gap: 14px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    margin-top: 18px !important;
    margin-bottom: 0 !important;
}

.footer-v2-badge {
    min-height: auto !important;
    min-width: auto !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
    margin-right: 0 !important;
    overflow: visible !important;
}

.footer-v2-badge img {
    max-height: 54px !important;
    max-width: 92px !important;
    object-fit: contain !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.footer-v2-badge svg {
    display: block !important;
    max-height: 54px !important;
    max-width: 92px !important;
}

.hours-v2-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

.hours-v2-list li {
    font-size: 14px !important;
    margin-bottom: 14px !important;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 14px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0 0 14px 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 0 !important;
}

.day-dot-v2 {
    width: 6px !important;
    height: 6px !important;
    background: linear-gradient(135deg, #ffd24d, #f5b800) !important;
    border-radius: 50% !important;
    margin-right: 0 !important;
    box-shadow: 0 0 0 6px rgba(255, 210, 77, 0.08) !important;
}

.hours-v2-list li span.time {
    margin-left: 0 !important;
    font-weight: 700 !important;
    color: #fff !important;
    white-space: nowrap !important;
}

.footer-v2-contact-item {
    display: flex !important;
    gap: 14px !important;
    margin-bottom: 20px !important;
    padding: 0 0 18px 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 0 !important;
    align-items: flex-start !important;
}

.footer-v2-contact-item:last-child,
.hours-v2-list li:last-child {
    margin-bottom: 0 !important;
}

.footer-v2-text {
    width: 100% !important;
}

.footer-v2-icon {
    width: 38px !important;
    height: 38px !important;
    background: rgba(255, 210, 77, 0.12) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    color: #ffd24d !important;
    flex-shrink: 0 !important;
    box-shadow: none !important;
}

.footer-v2-text strong {
    display: block !important;
    font-size: 12px !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-bottom: 6px !important;
}

.footer-v2-text p {
    font-size: 15px !important;
    color: #fff !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

.footer-v2-text a {
    color: #ffd24d !important;
    text-decoration: none !important;
    transition: color 0.25s ease !important;
}

.footer-v2-text a:hover {
    color: #fff !important;
}

.footer-v2-bottom {
    background: rgba(10, 12, 15, 0.5) !important;
    padding: 20px 0 !important;
    text-align: center !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-bottom: 0 !important;
    position: relative !important;
    z-index: 1 !important;
}

.footer-v2-bottom p {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.62) !important;
    margin: 0 !important;
}

.dev-link-v2 {
    color: #ffd24d !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}

.dev-link-v2:hover {
    text-decoration: underline;
    color: #fff !important;
}

@media (max-width: 992px) {
    .footer-v2-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        width: min(1180px, calc(100% - 48px)) !important;
        column-gap: 34px !important;
        row-gap: 34px !important;
    }

    .footer-v2-col.about {
        grid-column: 1 / -1 !important;
        flex: none !important;
    }

    .footer-v2-col.contact-info {
        max-width: none !important;
        flex: none !important;
    }

    .footer-v2-col.hours {
        max-width: none !important;
        flex: none !important;
    }
}

@media (max-width: 768px) {
    .footer-v2-container {
        grid-template-columns: 1fr !important;
        width: calc(100% - 40px) !important;
        row-gap: 30px !important;
        column-gap: 0 !important;
        padding: 38px 0 26px !important;
    }

    .footer-v2-col h3 {
        min-height: 0 !important;
        margin-bottom: 18px !important;
    }

    .footer-v2-badges {
        justify-content: flex-start !important;
    }

    .footer-v2-logo {
        font-size: 24px !important;
    }

    .hours-v2-list li {
        grid-template-columns: auto 1fr !important;
    }

    .hours-v2-list li span.time {
        grid-column: 2 !important;
        justify-self: start !important;
    }
}

/* Footer Rebuild */
.site-footer-rebuild {
    position: relative;
    background: linear-gradient(180deg, #2c2f36 0%, #24262d 100%);
    color: #fff;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-rebuild::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 208, 73, 0.08), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.03), transparent 30%);
    pointer-events: none;
}

.footer-rebuild-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 34px;
    width: min(1180px, calc(100% - 64px));
    max-width: none;
    margin: 0 auto;
    padding: 56px 0 40px;
}

.footer-rebuild-block {
    min-width: 0;
    padding: 0;
}

.footer-rebuild-top {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 44px;
    align-items: start;
}

.footer-rebuild-shell::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 84px;
    height: 4px;
    background: linear-gradient(90deg, #ffd24d, #f0b90b);
    border-radius: 999px;
}

.footer-rebuild-title {
    margin: 0 0 24px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.footer-rebuild-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: none;
}

.footer-rebuild-logo span {
    color: #ffd24d;
}

.footer-rebuild-copy {
    max-width: 30ch;
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.74);
}

.footer-rebuild-badges {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.footer-rebuild-badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-rebuild-badge img,
.footer-rebuild-badge svg {
    display: block;
    max-width: 102px;
    max-height: 62px;
    object-fit: contain;
}

.footer-rebuild-hours-intro {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.66);
}

.footer-rebuild-hours-block {
    padding-top: 8px;
}

.footer-rebuild-hours-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-rebuild-hours-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.footer-rebuild-hour-card {
    min-width: 0;
    padding: 18px 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    display: grid;
    gap: 10px;
}

.footer-rebuild-day {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-rebuild-hour-card .footer-rebuild-day::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #ffd24d;
    flex-shrink: 0;
}

.footer-rebuild-time {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.footer-rebuild-contact-list {
    display: grid;
    gap: 14px;
}

.footer-rebuild-contact-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-rebuild-contact-item:last-child {
    margin-bottom: 0;
}

.footer-rebuild-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 210, 77, 0.14);
    color: #ffd24d;
}

.footer-rebuild-label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
}

.footer-rebuild-value {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
}

.footer-rebuild-value a,
.footer-rebuild-link {
    color: #ffd24d;
    text-decoration: none;
}

.footer-rebuild-value a:hover,
.footer-rebuild-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-rebuild-bottom {
    position: relative;
    z-index: 1;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 12, 15, 0.45);
}

.footer-rebuild-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.64);
}

/* Footer Clean */
.site-footer-clean {
    background: linear-gradient(180deg, #2c2f36 0%, #23252c 100%);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-clean-shell {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.95fr;
    gap: 40px;
    width: min(1180px, calc(100% - 64px));
    max-width: none;
    margin: 0 auto;
    padding: 56px 0 40px;
}

.footer-clean-col {
    min-width: 0;
}

.footer-clean-logo {
    margin: 0 0 22px;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
}

.footer-clean-logo span {
    color: #ffd24d;
}

.footer-clean-title {
    margin: 0 0 22px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.footer-clean-copy {
    max-width: 31ch;
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.74);
}

.footer-clean-badges {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-clean-badges img,
.footer-clean-badges svg {
    display: block;
    max-width: 102px;
    max-height: 62px;
    object-fit: contain;
}

.footer-clean-hours-list,
.footer-clean-contact-list {
    display: grid;
    gap: 14px;
}

.footer-clean-hours-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

.footer-clean-hours-row,
.footer-clean-contact-item {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-clean-hours-row {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.88);
}

.footer-clean-hours-row span:first-child {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}

.footer-clean-hours-row span:last-child {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.footer-clean-contact-label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
}

.footer-clean-contact-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
}

.footer-clean-contact-item a,
.footer-clean-link {
    color: #ffd24d;
    text-decoration: none;
}

.footer-clean-contact-item a:hover,
.footer-clean-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-clean-bottom {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 12, 15, 0.45);
}

.footer-clean-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 992px) {
    .footer-rebuild-shell {
        width: min(1180px, calc(100% - 48px));
        gap: 34px;
        padding: 48px 0 36px;
    }

    .footer-rebuild-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-rebuild-copy {
        max-width: 42ch;
    }

    .footer-rebuild-hours-heading {
        align-items: start;
        flex-direction: column;
    }

    .footer-rebuild-hours-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .footer-rebuild-shell {
        width: calc(100% - 40px);
        gap: 24px;
        padding: 40px 0 28px;
    }

    .footer-rebuild-title {
        margin-bottom: 22px;
    }

    .footer-rebuild-logo {
        font-size: 28px;
    }

    .footer-rebuild-copy {
        font-size: 15px;
    }

    .footer-rebuild-hours-grid {
        grid-template-columns: 1fr;
    }

    .footer-clean-shell {
        grid-template-columns: 1fr;
        width: calc(100% - 40px);
        gap: 28px;
        padding: 40px 0 28px;
    }

    .footer-clean-logo {
        font-size: 28px;
    }

    .footer-clean-copy {
        font-size: 15px;
    }

    .footer-clean-hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .footer-clean-hours-list {
        grid-template-columns: 1fr;
    }
}

/* Footer Modern */
.site-footer-modern {
    background:
        radial-gradient(circle at top left, rgba(255, 210, 77, 0.08), transparent 28%),
        linear-gradient(180deg, #2c2f36 0%, #23252c 100%);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-modern-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 56px;
    width: min(1180px, calc(100% - 64px));
    max-width: none;
    margin: 0 auto;
    padding: 44px 0 32px;
}

.footer-modern-brand,
.footer-modern-panel {
    min-width: 0;
}

.footer-modern-kicker {
    margin: 0 0 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffd24d;
}

.footer-modern-title {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
}

.footer-modern-copy {
    max-width: 32ch;
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.74);
}

.footer-modern-badges {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-modern-badges img,
.footer-modern-badges svg {
    display: block;
    max-width: 102px;
    max-height: 62px;
    object-fit: contain;
}

.footer-modern-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-content: start;
}

.footer-modern-section {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.footer-modern-heading {
    margin: 0 0 16px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}

.footer-modern-contact-list {
    display: grid;
    gap: 12px;
}

.footer-modern-contact-row {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-modern-contact-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.footer-modern-label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
}

.footer-modern-contact-row p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
}

.footer-modern-hours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.footer-modern-hour-chip {
    min-width: 0;
    padding: 0 0 12px;
    border-radius: 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-modern-hour-chip span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
}

.footer-modern-hour-chip strong {
    font-size: 15px;
    line-height: 1.2;
    color: #fff;
    white-space: nowrap;
}

.footer-modern-contact-row a,
.footer-modern-link {
    color: #ffd24d;
    text-decoration: none;
}

.footer-modern-contact-row a:hover,
.footer-modern-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-modern-bottom {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 12, 15, 0.45);
}

.footer-modern-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 992px) {
    .footer-modern-shell {
        grid-template-columns: 1fr;
        width: min(1180px, calc(100% - 48px));
        gap: 30px;
        padding: 40px 0 32px;
    }

    .footer-modern-panel {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-modern-shell {
        width: calc(100% - 40px);
        gap: 24px;
        padding: 36px 0 26px;
    }

    .footer-modern-title {
        font-size: 22px;
    }

    .footer-modern-copy {
        font-size: 15px;
    }

    .footer-modern-panel {
        grid-template-columns: 1fr;
    }

    .footer-modern-hour-chip {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}
/* --- About Page Styles --- */

/* Premium About Hero */
.about-hero {
    height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--premium-navy);
    overflow: hidden;
    padding-top: 80px;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.about-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--premium-navy) 0%, rgba(10, 25, 47, 0.4) 100%);
}

.about-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-hero-content {
    max-width: 700px;
}

.about-hero-label {
    display: inline-block;
    color: var(--premium-orange);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.about-hero-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--premium-orange);
}

.about-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    color: #fff;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-hero h1 span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
}

.about-hero-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
}

.about-hero-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

/* Premium Story Section */
.story-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
}

.story-content {
    position: relative;
}

.story-label {
    color: var(--premium-orange);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.story-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--premium-navy);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

/* Asymmetrical Image Tiles */
.story-images {
    position: relative;
    height: 600px;
}

.story-img-main {
    width: 80%;
    height: 450px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow-premium);
    position: relative;
    z-index: 2;
}

.story-img-sub {
    width: 60%;
    height: 300px;
    object-fit: cover;
    border-radius: 30px;
    position: absolute;
    bottom: 0;
    right: -20px;
    z-index: 3;
    border: 10px solid #fff;
    box-shadow: var(--shadow-premium);
}

.story-bg-pattern {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--premium-orange) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.2;
    z-index: 1;
}

/* Floating Stats Cards */
.story-stats-v2 {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.stat-card-v2 {
    background: var(--premium-navy);
    padding: 30px;
    border-radius: 20px;
    flex: 1;
    transition: var(--transition-smooth);
    color: #fff;
    text-align: center;
}

.stat-card-v2:hover {
    transform: translateY(-10px);
    background: var(--premium-orange);
}

.stat-card-v2 h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-card-v2 p {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #f47920;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Mission & Vision */
.mission-vision {
    background: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.9)), url('mission_vision_background.png');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.mv-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.mv-icon {
    margin-bottom: 25px;
    color: #f47920;
}

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.mv-card p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 48px;
    font-weight: 800;
    color: rgba(244, 121, 32, 0.1);
    position: absolute;
    top: 20px;
    right: 20px;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
}

.member-img {
    width: 200px;
    height: 200px;
    background: #eee;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.member-img::after {
    content: 'DE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: 800;
    color: #ccc;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .story-grid, .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-image-wrapper {
        order: -1;
    }
}

@media (max-width: 576px) {
    .story-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-hero {
        height: 60vh;
    }
}

/* ═══════════════════════════════════════════════════
   PREMIUM ABOUT PAGE  — ap-* namespace
═══════════════════════════════════════════════════ */

/* Shared eyebrow label */
.ap-eyebrow {
    display: inline-block;
    color: var(--premium-orange, #f47920);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
    position: relative;
    padding-left: 48px;
}
.ap-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 38px;
    height: 2px;
    background: var(--premium-orange, #f47920);
}
.ap-eyebrow--dark {
    color: #f47920;
}

/* Shared button */
.ap-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.ap-btn--orange {
    background: var(--premium-orange, #f47920);
    color: #fff;
}
.ap-btn--orange:hover {
    background: #e06510;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(244,121,32,0.4);
}
.ap-btn--white {
    background: #fff;
    color: #0a192f;
}
.ap-btn--white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* ── HERO ──────────────────────────────────── */
.ap-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    padding-top: 80px;
    background: #0a192f;
}

.ap-hero__img {
    position: absolute;
    inset: 0;
    right: 0;
    left: 40%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}
.ap-hero__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0a192f 0%, rgba(10,25,47,0.6) 50%, rgba(10,25,47,0.1) 100%);
}

.ap-hero__panel {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 80px 0;
}

.ap-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 600px;
}

.ap-hero__h1 {
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: -1px;
}
.ap-hero__h1 em {
    font-style: italic;
    color: var(--premium-orange, #f47920);
}

.ap-hero__sub {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    max-width: 480px;
}

/* Floating badge */
.ap-hero__badge {
    position: absolute;
    bottom: 60px;
    right: 5%;
    z-index: 3;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.ap-badge__num {
    font-size: 48px;
    font-weight: 900;
    color: var(--premium-orange, #f47920);
    line-height: 1;
}
.ap-badge__txt {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── STORY ─────────────────────────────────── */
.ap-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
    background: #fff;
    overflow: hidden;
}

.ap-story__images {
    position: relative;
    background: #f4f4f4;
    overflow: hidden;
}
.ap-story__dot-pattern {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 160px;
    height: 160px;
    background-image: radial-gradient(#f47920 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.25;
    z-index: 0;
}
.ap-story__img-main {
    position: absolute;
    top: 40px;
    left: 50px;
    width: 75%;
    height: 60%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
    z-index: 2;
}
.ap-story__img-sub {
    position: absolute;
    bottom: 40px;
    right: 30px;
    width: 55%;
    height: 45%;
    object-fit: cover;
    border-radius: 20px;
    border: 8px solid #fff;
    box-shadow: 0 16px 40px rgba(0,0,0,0.14);
    z-index: 3;
}
.ap-story__pill {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 4;
    background: #0a192f;
    color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.ap-story__pill strong {
    color: var(--premium-orange, #f47920);
    font-size: 16px;
}

.ap-story__content {
    padding: 90px 70px 90px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ap-story__h2 {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 900;
    color: #0a192f;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}
.ap-story__content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Story stats */
.ap-story__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 44px;
    padding-top: 36px;
    border-top: 2px solid #f0f0f0;
}
.ap-stat {
    text-align: center;
    padding: 0 10px;
    position: relative;
}
.ap-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #e0e0e0;
}
.ap-stat__num {
    display: block;
    font-size: 38px;
    font-weight: 900;
    color: #0a192f;
    line-height: 1;
    margin-bottom: 6px;
}
.ap-stat__num em {
    font-style: normal;
    color: var(--premium-orange, #f47920);
}
.ap-stat__lbl {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    font-weight: 600;
}

/* ── MISSION / VISION ──────────────────────── */
.ap-mv {
    position: relative;
    background: linear-gradient(135deg, #0a192f 0%, #172a45 100%);
    padding: 100px 0;
    overflow: hidden;
}
.ap-mv__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(80px, 15vw, 200px);
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    letter-spacing: 10px;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}
.ap-mv__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.ap-mv__divider {
    width: 1px;
    height: 180px;
    background: rgba(255,255,255,0.15);
}
.ap-mv__card {
    padding: 20px;
}
.ap-mv__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(244,121,32,0.15);
    color: var(--premium-orange, #f47920);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(244,121,32,0.3);
}
.ap-mv__card h3 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.ap-mv__card p {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
}

/* ── VALUES ────────────────────────────────── */
.ap-values {
    background: #f7f7f7;
    padding: 100px 0;
}
.ap-section-head {
    text-align: center;
    margin-bottom: 60px;
}
.ap-values__h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #0a192f;
    line-height: 1.15;
}
.ap-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ap-val-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
}
.ap-val-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.12);
}
.ap-val-card:hover .ap-val-card__bar {
    transform: scaleX(1);
}
.ap-val-card__num {
    font-size: 52px;
    font-weight: 900;
    color: #f0f0f0;
    line-height: 1;
    margin-bottom: 24px;
    display: block;
    transition: color 0.35s;
}
.ap-val-card:hover .ap-val-card__num {
    color: rgba(244,121,32,0.12);
}
.ap-val-card__body h4 {
    font-size: 20px;
    font-weight: 800;
    color: #0a192f;
    margin-bottom: 12px;
}
.ap-val-card__body p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}
.ap-val-card__bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--premium-orange, #f47920);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* ── CTA BANNER ────────────────────────────── */
.ap-cta {
    background: linear-gradient(135deg, #f47920 0%, #ff9a44 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.ap-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.ap-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
}
.ap-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}
.ap-cta__text h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 12px;
}
.ap-cta__text p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1100px) {
    .ap-values__grid { grid-template-columns: repeat(2, 1fr); }
    .ap-story__content { padding: 70px 50px; }
}

@media (max-width: 900px) {
    .ap-hero__img { left: 0; clip-path: none; opacity: 0.25; }
    .ap-story { grid-template-columns: 1fr; }
    .ap-story__images { min-height: 400px; }
    .ap-story__content { padding: 60px 40px; }
    .ap-mv__grid { grid-template-columns: 1fr; gap: 40px; }
    .ap-mv__divider { display: none; }
    .ap-cta__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .ap-hero { min-height: auto; padding: 120px 0 60px; }
    .ap-hero__badge { display: none; }
    .ap-values__grid { grid-template-columns: 1fr; }
    .ap-story__stats { grid-template-columns: 1fr 1fr; }
    .ap-story__img-sub { display: none; }
    .ap-story__pill { display: none; }
}

/* ═══════════════════════════════════════════════════
   SERVICES PAGE  — sv-* namespace
═══════════════════════════════════════════════════ */

/* Shared label */
.sv-label {
    display: inline-block;
    color: var(--premium-orange, #f47920);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}
.sv-label--light {
    color: rgba(255,255,255,0.6);
}

/* ── HERO ──────────────────────────────────── */
.sv-hero {
    background: #0a192f;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Bold diagonal orange stripe */
.sv-hero__stripe {
    position: absolute;
    top: -80px;
    right: -100px;
    width: 500px;
    height: 900px;
    background: var(--premium-orange, #f47920);
    opacity: 0.07;
    transform: rotate(20deg);
    pointer-events: none;
}
.sv-hero__stripe::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 80px;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.04);
}

.sv-hero__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
}

.sv-hero__h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.sv-hero__h1 span {
    color: var(--premium-orange, #f47920);
}

.sv-hero__sub {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    margin-bottom: 36px;
}

/* Pill tags */
.sv-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.sv-pill {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Stat block */
.sv-hero__stat-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-left: 2px solid rgba(255,255,255,0.08);
    padding-left: 50px;
}
.sv-hero__stat span {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: var(--premium-orange, #f47920);
    line-height: 1;
}
.sv-hero__stat p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* ── INTRO STRIP ───────────────────────────── */
.sv-strip {
    background: #f47920;
    padding: 22px 0;
}
.sv-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.sv-strip__inner p {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
.sv-ghost-btn {
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s, border-color 0.3s;
}
.sv-ghost-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

/* ── SERVICE ROWS ──────────────────────────── */
.sv-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}
.sv-row--reverse {
    direction: rtl;
}
.sv-row--reverse > * {
    direction: ltr;
}
.sv-row--alt .sv-row__body {
    background: #f8f7f5;
}

.sv-row__img {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.sv-row__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,25,47,0.15) 0%, rgba(10,25,47,0.5) 100%);
}
.sv-row__num {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 2;
    font-size: 80px;
    font-weight: 900;
    color: rgba(255,255,255,0.12);
    line-height: 1;
    letter-spacing: -4px;
    pointer-events: none;
}

.sv-row__body {
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.sv-row__icon {
    width: 40px;
    height: 40px;
    color: var(--premium-orange, #f47920);
    margin-bottom: 20px;
    flex-shrink: 0;
}

.sv-row__body h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 900;
    color: #0a192f;
    margin-bottom: 18px;
    line-height: 1.15;
}

.sv-row__body > p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 28px;
}

.sv-row__features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.sv-row__features li {
    font-size: 14px;
    color: #444;
    font-weight: 600;
    padding-left: 20px;
    position: relative;
}
.sv-row__features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--premium-orange, #f47920);
    font-weight: 700;
}

.sv-cta-btn {
    display: inline-block;
    background: #0a192f;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    align-self: flex-start;
}
.sv-cta-btn:hover {
    background: var(--premium-orange, #f47920);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244,121,32,0.3);
}

.sv-row__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.sv-detail-link {
    color: #0a192f;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sv-detail-link:hover {
    color: var(--premium-orange, #f47920);
}

/* ── PROCESS ───────────────────────────────── */
.sv-process {
    background: #0a192f;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.sv-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--premium-orange, #f47920);
}

.sv-process__head {
    margin-bottom: 64px;
}
.sv-process__h2 {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}

.sv-process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.sv-process__steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 8px);
    right: calc(12.5% + 8px);
    height: 2px;
    background: rgba(244,121,32,0.3);
}

.sv-step {
    padding: 0 24px 0 0;
    position: relative;
}
.sv-step__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--premium-orange, #f47920);
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(244,121,32,0.15);
}
.sv-step h4 {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.sv-step p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
}

/* ── SERVICES CTA BAND ─────────────────────── */
.sv-cta {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sv-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--premium-orange, #f47920);
}
.sv-cta__inner h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
}
.sv-cta__inner p {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
}
.sv-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.sv-cta__primary {
    background: var(--premium-orange, #f47920);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}
.sv-cta__primary:hover {
    background: #e06510;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(244,121,32,0.4);
}
.sv-cta__secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    border: 2px solid rgba(255,255,255,0.15);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.sv-cta__secondary:hover {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
    .sv-hero__inner { grid-template-columns: 1fr; gap: 50px; }
    .sv-hero__stat-block { flex-direction: row; border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding: 30px 0 0; }
    .sv-row { grid-template-columns: 1fr; min-height: auto; }
    .sv-row__img { min-height: 350px; }
    .sv-row--reverse { direction: ltr; }
    .sv-process__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .sv-process__steps::before { display: none; }
}

@media (max-width: 640px) {
    .sv-strip__inner { flex-direction: column; text-align: center; }
    .sv-row__body { padding: 50px 30px; }
    .sv-row__features { grid-template-columns: 1fr; }
    .sv-process__steps { grid-template-columns: 1fr; }
    .sv-hero__stat-block { flex-wrap: wrap; }
}

/* ═══════════════════════════════════════════════════
   WORKS / PORTFOLIO PAGE  — wk-* namespace
═══════════════════════════════════════════════════ */

.wk-eyebrow {
    display: inline-block;
    color: var(--premium-orange, #f47920);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
}
.wk-eyebrow--center { display: block; text-align: center; }

/* ── HERO ──────────────────────────────────── */
.wk-hero {
    background: #0a192f;
    padding: 160px 0 0;
    position: relative;
    overflow: hidden;
}
.wk-hero__grid-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}
.wk-hero__content {
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
}
.wk-hero__h1 {
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.0;
    letter-spacing: -2px;
    margin-bottom: 24px;
}
.wk-hero__h1 em {
    font-style: italic;
    color: var(--premium-orange, #f47920);
}
.wk-hero__sub {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
}

/* Marquee ticker */
.wk-ticker {
    background: var(--premium-orange, #f47920);
    overflow: hidden;
    padding: 14px 0;
    position: relative;
    z-index: 2;
}
.wk-ticker__track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: wkTicker 28s linear infinite;
}
.wk-ticker__track span {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-shrink: 0;
}
.wk-dot { color: rgba(255,255,255,0.5) !important; font-size: 10px !important; }
@keyframes wkTicker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── FILTER BAR ────────────────────────────── */
.wk-filter-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    position: sticky;
    top: 80px;
    z-index: 100;
}
.wk-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.wk-filter {
    border: 2px solid #e8e8e8;
    background: #fff;
    color: #555;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}
.wk-filter:hover,
.wk-filter--active {
    background: #0a192f;
    border-color: #0a192f;
    color: #fff;
}

/* ── PORTFOLIO GRID ────────────────────────── */
.wk-portfolio { padding: 60px 0 80px; background: #f7f7f5; }
.wk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 320px;
    gap: 16px;
}
.wk-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.wk-card--large { grid-column: span 2; }
.wk-card__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.wk-card:hover .wk-card__img { transform: scale(1.06); }
.wk-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,25,47,0.92) 0%, rgba(10,25,47,0.3) 50%, transparent 100%);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.wk-card:hover .wk-card__overlay { opacity: 1; }
.wk-card__cat {
    display: inline-block;
    background: var(--premium-orange, #f47920);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    align-self: flex-start;
}
.wk-card__title { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; line-height: 1.25; }
.wk-card__loc { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.wk-card__link {
    display: inline-block;
    color: var(--premium-orange, #f47920);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: letter-spacing 0.2s;
}
.wk-card__link:hover { letter-spacing: 0.5px; }

/* ── STATS BAND ────────────────────────────── */
.wk-stats { background: #0a192f; padding: 70px 0; }
.wk-stats__grid { display: flex; align-items: center; justify-content: center; }
.wk-stat { text-align: center; padding: 0 60px; }
.wk-stat__num { display: block; font-size: 52px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 8px; }
.wk-stat__num em { font-style: normal; color: var(--premium-orange, #f47920); }
.wk-stat p { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.45); font-weight: 600; }
.wk-stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ── TESTIMONIALS ──────────────────────────── */
.wk-testimonials { background: #fff; padding: 100px 0; }
.wk-testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.wk-testi-card {
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 36px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.wk-testi-card:hover { border-color: var(--premium-orange, #f47920); transform: translateY(-6px); }
.wk-testi-card__quote {
    font-size: 16px; line-height: 1.75; color: #444; font-style: italic;
    margin-bottom: 28px; position: relative; padding-top: 20px;
}
.wk-testi-card__quote::before {
    content: '\201C';
    position: absolute; top: -10px; left: -6px;
    font-size: 60px; color: var(--premium-orange, #f47920); opacity: 0.3;
    font-family: Georgia, serif; line-height: 1;
}
.wk-testi-card__author { display: flex; align-items: center; gap: 14px; }
.wk-testi-card__avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--premium-orange, #f47920); color: #fff;
    font-size: 14px; font-weight: 800; display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
}
.wk-testi-card__author strong { display: block; font-size: 15px; font-weight: 800; color: #0a192f; }
.wk-testi-card__author span { font-size: 13px; color: #999; }

/* ── CTA ───────────────────────────────────── */
.wk-cta { background: #f7f7f5; border-top: 1px solid #e8e8e8; padding: 90px 0; }
.wk-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.wk-cta__left h2 { font-size: clamp(2.2rem, 3.5vw, 3.2rem); font-weight: 900; color: #0a192f; line-height: 1.1; margin-bottom: 12px; }
.wk-cta__left h2 em { font-style: italic; color: var(--premium-orange, #f47920); }
.wk-cta__left p { font-size: 16px; color: #666; }
.wk-cta__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }
.wk-cta__btn-primary {
    background: var(--premium-orange, #f47920); color: #fff;
    padding: 16px 36px; border-radius: 50px; font-size: 15px; font-weight: 700;
    text-decoration: none; transition: all 0.3s;
}
.wk-cta__btn-primary:hover { background: #e06510; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(244,121,32,0.3); }
.wk-cta__btn-secondary {
    color: #0a192f; border: 2px solid #ccc; padding: 14px 28px;
    border-radius: 50px; font-size: 15px; font-weight: 700; text-decoration: none; transition: all 0.3s;
}
.wk-cta__btn-secondary:hover { border-color: #0a192f; }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
    .wk-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 280px; }
    .wk-stats__grid { flex-wrap: wrap; gap: 30px; }
    .wk-stat-divider { display: none; }
    .wk-stat { padding: 0 30px; }
}
@media (max-width: 768px) {
    .wk-testi__grid { grid-template-columns: 1fr; }
    .wk-cta__inner { flex-direction: column; text-align: center; }
    .wk-cta__actions { justify-content: center; }
}
@media (max-width: 600px) {
    .wk-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
    .wk-card--large { grid-column: span 1; }
    .wk-hero__h1 { letter-spacing: -1px; }
}

/* ═══════════════════════════════════════════════════
   TESTIMONIAL PAGE  — tm-* namespace
═══════════════════════════════════════════════════ */

.tm-eyebrow {
    display: inline-block;
    color: var(--premium-orange, #f47920);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
    position: relative;
    padding-left: 46px;
}
.tm-eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 36px; height: 2px;
    background: var(--premium-orange, #f47920);
}

/* ── HERO ──────────────────────────────────── */
.tm-hero {
    background: #0a192f;
    padding: 150px 0 90px;
    position: relative;
    overflow: hidden;
}
.tm-hero__bg-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(100px, 18vw, 260px);
    font-weight: 900;
    color: rgba(255,255,255,0.025);
    letter-spacing: 20px;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}
.tm-hero__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.tm-hero__h1 {
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}
.tm-hero__h1 em {
    font-style: italic;
    color: var(--premium-orange, #f47920);
}
.tm-hero__sub {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 500px;
}

/* Score block */
.tm-hero__score-block {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    padding: 40px;
    min-width: 280px;
    text-align: center;
    backdrop-filter: blur(10px);
}
.tm-score-circle {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}
.tm-score-num {
    font-size: 72px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.tm-score-max {
    font-size: 22px;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
}
.tm-stars {
    font-size: 26px;
    color: #fbbf24;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.tm-score-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 28px;
}

/* Rating bars */
.tm-rating-bars { display: flex; flex-direction: column; gap: 10px; }
.tm-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
}
.tm-bar-row span:first-child { width: 22px; text-align: right; flex-shrink: 0; }
.tm-bar-row span:last-child { width: 30px; text-align: left; flex-shrink: 0; }
.tm-bar {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 50px;
    overflow: hidden;
}
.tm-bar__fill {
    height: 100%;
    background: var(--premium-orange, #f47920);
    border-radius: 50px;
    transition: width 1s ease;
}

/* ── PLATFORM STRIP ────────────────────────── */
.tm-platform-strip {
    background: #f7f7f5;
    border-bottom: 1px solid #eee;
    padding: 18px 0;
}
.tm-platform-strip__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.tm-platform-strip__inner > span {
    font-size: 13px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.tm-platform-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.tm-pbadge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid #e8e8e8;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    color: #333;
}

/* ── BENTO REVIEWS GRID ────────────────────── */
.tm-reviews {
    background: #f7f7f5;
    padding: 60px 0 90px;
}
.tm-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
}

/* Base card */
.tm-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Variants */
.tm-card--featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #0a192f, #172a45);
    border: none;
    position: relative;
}
.tm-card--wide { grid-column: span 2; }
.tm-card--dark {
    background: #0a192f;
    border: none;
}
.tm-card--orange {
    background: linear-gradient(135deg, #f47920, #ff9a44);
    border: none;
}

.tm-card__stars { font-size: 18px; color: #fbbf24; letter-spacing: 1px; }
.tm-card__stars--light { color: #fde68a; }
.tm-card__stars--white { color: rgba(255,255,255,0.9); }

.tm-card__quote {
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    font-style: italic;
    flex: 1;
}
.tm-card__quote--light { color: rgba(255,255,255,0.75); }
.tm-card__quote--white { color: rgba(255,255,255,0.92); }
.tm-card--featured .tm-card__quote { color: rgba(255,255,255,0.85); font-size: 18px; }

.tm-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}
.tm-card__avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--premium-orange, #f47920);
    color: #fff;
    font-size: 14px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.tm-card__avatar--white {
    background: rgba(255,255,255,0.25);
    color: #fff;
}
.tm-card--featured .tm-card__avatar { background: var(--premium-orange, #f47920); }

.tm-card__info strong {
    display: block;
    font-size: 15px; font-weight: 800; color: #0a192f;
}
.tm-card__info span {
    display: block;
    font-size: 13px; color: #999;
}
.tm-card__info--light strong { color: #fff; }
.tm-card__info--light span { color: rgba(255,255,255,0.5); }
.tm-card__info--white strong { color: #fff; }
.tm-card__info--white span { color: rgba(255,255,255,0.65); }
.tm-card--featured .tm-card__info strong { color: #fff; }
.tm-card--featured .tm-card__info span { color: rgba(255,255,255,0.5); }

.tm-card__date {
    font-size: 11px !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 2px;
}
.tm-card__tag {
    position: absolute;
    top: 28px; right: 28px;
    background: var(--premium-orange, #f47920);
    color: #fff;
    font-size: 11px; font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 50px;
}
.tm-card--dark .tm-card__info strong { color: #fff; }
.tm-card--dark .tm-card__info span { color: rgba(255,255,255,0.45); }

/* ── CTA ───────────────────────────────────── */
.tm-cta {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 90px 0;
}
.tm-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.tm-cta__text h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #0a192f;
    line-height: 1.1;
    margin-bottom: 12px;
}
.tm-cta__text h2 em {
    font-style: italic;
    color: var(--premium-orange, #f47920);
}
.tm-cta__text p { font-size: 16px; color: #666; }
.tm-cta__actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; flex-shrink: 0; }
.tm-cta__review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 2px solid #e0e0e0;
    color: #333;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px; font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}
.tm-cta__review-btn:hover { border-color: #4285F4; color: #4285F4; transform: translateY(-2px); }
.tm-cta__contact-btn {
    display: inline-block;
    color: var(--premium-orange, #f47920);
    font-size: 15px; font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s;
}
.tm-cta__contact-btn:hover { transform: translateX(4px); }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
    .tm-hero__inner { grid-template-columns: 1fr; gap: 50px; }
    .tm-hero__score-block { max-width: 100%; }
    .tm-bento { grid-template-columns: repeat(2, 1fr); }
    .tm-card--featured { grid-column: span 2; }
    .tm-card--wide { grid-column: span 2; }
}
@media (max-width: 700px) {
    .tm-bento { grid-template-columns: 1fr; }
    .tm-card--featured,
    .tm-card--wide { grid-column: span 1; }
    .tm-cta__inner { flex-direction: column; text-align: center; }
    .tm-cta__actions { justify-content: center; }
}

/* ── Service Detail Pages ─────────────────── */
.sd-page {
    background: #f7f4ef;
}

.sd-page main {
    padding-top: 112px;
}

.sd-hero {
    padding: 34px 0 70px;
    background:
        radial-gradient(circle at top left, rgba(244, 121, 32, 0.14), transparent 28%),
        linear-gradient(180deg, #f7f4ef 0%, #f4efe8 100%);
}

.sd-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
    gap: 44px;
    align-items: stretch;
}

.sd-hero__copy {
    padding: 28px 0;
}

.sd-kicker {
    margin: 0 0 16px;
    color: var(--premium-orange, #f47920);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.sd-hero__title {
    margin: 0 0 18px;
    color: #101828;
    font-size: clamp(2.4rem, 4.8vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.sd-hero__lede {
    max-width: 58ch;
    margin: 0 0 24px;
    color: #475467;
    font-size: 18px;
    line-height: 1.75;
}

.sd-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.sd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.sd-btn:hover {
    transform: translateY(-2px);
}

.sd-btn--primary {
    background: var(--premium-orange, #f47920);
    color: #fff;
    box-shadow: 0 18px 40px rgba(244, 121, 32, 0.22);
}

.sd-btn--secondary {
    background: rgba(10, 25, 47, 0.06);
    color: #0a192f;
}

.sd-highlights {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sd-highlights span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    color: #344054;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.sd-hero__media {
    min-height: 520px;
    border-radius: 34px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.16);
}

.sd-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 32px;
    align-items: start;
}

.sd-visuals {
    padding: 0 0 84px;
}

.sd-visuals__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
    gap: 22px;
}

.sd-visuals__stack {
    display: grid;
    gap: 22px;
}

.sd-photo {
    min-height: 240px;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
    overflow: hidden;
}

.sd-photo--hero {
    min-height: 100%;
}

.sd-section {
    padding: 0 0 84px;
}

.sd-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.sd-overview__main,
.sd-overview__side {
    padding: 0;
}

.sd-section__eyebrow {
    margin: 0 0 10px;
    color: var(--premium-orange, #f47920);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.sd-section__title {
    margin: 0 0 18px;
    color: #101828;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.05;
}

.sd-overview__main p,
.sd-overview__side p,
.sd-cta__content p {
    margin: 0;
    color: #475467;
    font-size: 16px;
    line-height: 1.8;
}

.sd-list,
.sd-mini-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}

.sd-list li,
.sd-mini-list li {
    position: relative;
    padding-left: 22px;
    color: #344054;
    font-size: 15px;
    line-height: 1.75;
}

.sd-list li + li,
.sd-mini-list li + li {
    margin-top: 10px;
}

.sd-list li::before,
.sd-mini-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--premium-orange, #f47920);
}

.sd-includes__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.sd-include {
    padding: 22px 0 0;
    border-top: 1px solid rgba(10, 25, 47, 0.12);
}

.sd-include h3 {
    margin: 0 0 10px;
    color: #101828;
    font-size: 19px;
}

.sd-include p {
    margin: 0;
    color: #475467;
    font-size: 15px;
    line-height: 1.75;
}

.sd-process__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.sd-step-card {
    padding: 22px 0 0;
    border-top: 1px solid rgba(10, 25, 47, 0.12);
}

.sd-step-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(244, 121, 32, 0.12);
    color: var(--premium-orange, #f47920);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 16px;
}

.sd-step-card h3 {
    margin: 0 0 10px;
    color: #101828;
    font-size: 20px;
}

.sd-step-card p {
    margin: 0;
    color: #475467;
    font-size: 15px;
    line-height: 1.75;
}

.sd-cta {
    padding-bottom: 84px;
}

.sd-cta__card {
    padding: 28px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    border-top: 1px solid rgba(10, 25, 47, 0.12);
}

.sd-cta__content {
    max-width: 720px;
}

.sd-cta__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 1100px) {
    .sd-hero__layout,
    .sd-grid {
        grid-template-columns: 1fr;
    }

    .sd-hero__media {
        min-height: 420px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .sd-page main {
        padding-top: 96px;
    }

    .sd-hero {
        padding: 20px 0 52px;
    }

    .sd-hero__layout {
        gap: 26px;
    }

    .sd-hero__copy {
        padding: 0;
    }

    .sd-hero__media {
        min-height: 320px;
        border-radius: 22px;
    }

    .sd-hero__lede {
        font-size: 16px;
    }

    .sd-overview__main,
    .sd-overview__side,
    .sd-include,
    .sd-step-card,
    .sd-cta__card {
        padding: 24px;
    }

    .sd-includes__grid,
    .sd-process__grid,
    .sd-visuals__grid {
        grid-template-columns: 1fr;
    }

    .sd-photo,
    .sd-photo--hero {
        min-height: 220px;
    }

    .sd-cta__card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── Image Viewer ─────────────────────────── */
.viewable-media {
    cursor: zoom-in;
}

.media-lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(10, 12, 16, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 4000;
}

.media-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.media-lightbox__backdrop {
    position: absolute;
    inset: 0;
}

.media-lightbox__content {
    position: relative;
    max-width: min(1200px, 100%);
    max-height: 100%;
    z-index: 1;
}

.media-lightbox__image {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 80px);
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.media-lightbox__close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #111827;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body.lightbox-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .media-lightbox {
        padding: 18px;
    }

    .media-lightbox__close {
        top: -12px;
        right: -4px;
    }

    .media-lightbox__image {
        max-height: calc(100vh - 40px);
        border-radius: 16px;
    }
}
