/* CSS Variables - Updated 2025-07-24 */
:root {
    --primary-yellow: #ffd000;
    --primary-purple: #8c52ff;
    --primary-color: var(--primary-yellow);
    --secondary-color: var(--primary-purple);
    --text-color: #ffffff;
    --grey: #b0b0b0;
    --white: #ffffff;
    --nav-black: rgba(0, 0, 0, 0.95);
    --section-black: #111111;
    /* Per-section background colors (edit these to change colors) */
    --services-bg: var(--section-black);
    --contact-bg: var(--section-black);
    --footer-bg: var(--section-black);
}

/* Base responsive improvements */
* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--nav-black);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--contact-bg);
}
/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--nav-black);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none; /* prevent underline on logo link */
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text .company-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none; /* ensure no underline on text */
}

.logo-text .company-tagline {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--grey);
    text-decoration: none; /* ensure no underline on text */
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.mobile-call-btn {
    display: none;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-purple);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link--active::after {
    width: 100%;
}

.nav-link--active {
    color: var(--primary-yellow);
}

/* Services intro link styling: only highlight on hover */
.services-intro a {
    color: var(--white);
    text-decoration: none;
    position: relative;
}
.services-intro a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -3px;
    background: var(--primary-purple);
    transition: width 0.3s ease;
}
.services-intro a:hover::after {
    width: 100%;
}

/* Reusable animated underline for links */
.link-animate {
    position: relative;
    color: var(--white);
    text-decoration: none;
    display: inline-block; /* allow ::after to span multi-line text width */
}

.link-animate::after {
    content: '';
    position: absolute;
    width: 0; /* animated to 100% on hover */
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--primary-purple);
    transition: width 0.3s ease;
}

.link-animate:hover::after {
    width: 100%;
}

.call-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 1.9rem;
    border-radius: 100px;
    border: 1.5px solid var(--primary-yellow);
    color: var(--primary-yellow);
    background: transparent;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, gap 0.2s ease;
}

.call-now-btn i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.call-now-btn:hover {
    background: var(--primary-yellow);
    color: #000;
    box-shadow: 0 6px 20px rgba(255, 208, 0, 0.3);
    gap: 0.8rem;
}

.call-now-btn:hover i {
    transform: translateX(3px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 10px;
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
    align-items: center;
    touch-action: manipulation;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Offset page content below fixed navbar (~80px tall) */
body {
    padding-top: 80px;
}

/* Hero doesn't need body padding since it's full-viewport and already has top padding */
.hero {
    margin-top: -80px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-image: url('photos/3.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.15) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.0) 50%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 80px;
    width: 100%;
}

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

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Allow a smaller subtitle line inside H1s */
.hero-text h1 .h1-subtitle {
    display: block;
    font-size: 0.58em;
    font-weight: 600;
    color: var(--grey);
    margin-top: 0.4rem;
}

.hero-text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    max-width: 560px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.area-hero .hero-buttons,
.area-hub-hero .hero-buttons {
    justify-content: center;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-height: 44px; /* Minimum touch target for mobile */
    min-width: 44px;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-purple));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 188, 33, 0.4);
}

.btn-hero-quote {
    background: var(--primary-purple) !important;
    color: #fff !important;
}

.btn-hero-quote:hover {
    background: #000 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    border: 2px solid var(--primary-purple) !important;
    transform: translateY(-3px);
}

/* Button Secondary Styles - OVERRIDE */
.hero-buttons .btn.btn-secondary,
.btn-secondary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: var(--nav-black) !important;
    background-color: var(--nav-black) !important;
    color: var(--white) !important;
    border: 2px solid var(--primary-purple) !important;
    border-color: var(--primary-purple) !important;
    font-weight: 600 !important;
}

.hero-buttons .btn.btn-secondary:hover,
.btn-secondary:hover {
    background: var(--primary-purple) !important;
    background-color: var(--primary-purple) !important;
    color: var(--white) !important;
    transform: translateY(-3px) !important;
}

/* Base image styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--services-bg);
}

/* Unified Large Heading Styles */
.section-header h2,
.about-text h2,
.contact-info h2,
.faq .section-header h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
    position: relative !important;
    display: inline-block !important;
}

.hero-text h1 {
    font-family: 'Inter', sans-serif !important;
    color: var(--white) !important;
    line-height: 1.1 !important;
    position: relative !important;
    display: block !important;
}

/* Hero h1 larger for full-bleed impact */
.hero-text h1 {
    font-size: 4.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: -0.02em !important;
}

/* Section headers slightly smaller for hierarchy */
.section-header h2,
.about-text h2,
.contact-info h2,
.faq .section-header h2 {
    font-size: 2rem !important;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Services: eyebrow ── */
.services-eyebrow {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

/* ── Services: split layout ── */
.services-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.services-split-left {
    position: sticky;
    top: 120px;
}

.services-split-left h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.8rem;
    line-height: 1.2;
    position: relative;
}
.services-split-left h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.services-split-left > p {
    color: var(--grey);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 380px;
}

/* ── Services nav list ── */
.services-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.services-nav-list::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.svc-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 0;
    cursor: pointer;
    transition: all 0.25s ease;
}

.svc-nav-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.svc-nav-item.is-active .svc-nav-dot {
    border-color: var(--primary-yellow);
    background: var(--primary-yellow);
    box-shadow: 0 0 10px rgba(255, 208, 0, 0.5);
}

.svc-nav-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.svc-nav-item.is-active .svc-nav-label {
    color: var(--white);
    font-weight: 600;
}

.svc-nav-item:hover .svc-nav-label {
    color: rgba(255, 255, 255, 0.65);
}

/* ── Services: right scrolling cards ── */
.services-split-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-scroll-card {
    background: var(--section-black);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    opacity: 0.3;
    transform: scale(0.97) translateX(16px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

.service-scroll-card.is-active {
    opacity: 1;
    transform: scale(1) translateX(0);
    border-color: rgba(255, 208, 0, 0.22);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 208, 0, 0.08);
}

/* Left accent bar — slides in when active */
.service-scroll-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: var(--primary-yellow);
    opacity: 0;
    transition: opacity 0.5s ease, top 0.5s ease, bottom 0.5s ease;
}

.service-scroll-card.is-active::before {
    opacity: 1;
    top: 15%;
    bottom: 15%;
}


/* ── Service icon ── */
.service-icon {
    width: 72px;
    height: 72px;
    background: #000;
    border: 2px solid var(--primary-purple);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem;
    color: var(--white);
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(140, 82, 255, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-scroll-card.is-active .service-icon {
    transform: scale(1.06) rotate(-4deg);
    box-shadow: 0 8px 24px rgba(255, 208, 0, 0.3);
}

.service-scroll-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.service-scroll-card p {
    color: var(--grey);
    line-height: 1.65;
    font-size: 0.95rem;
}

/* ── CTA link inside card ── */
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-yellow);
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}
.service-cta:hover { gap: 0.75rem; color: #fff; }
.service-cta i { font-size: 0.75rem; transition: transform 0.2s ease; }
.service-cta:hover i { transform: translateX(3px); }

/* ── Services: View All button ── */
.services-view-all {
    display: flex;
    justify-content: flex-start;
    margin-top: 0.5rem;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    border: 1.5px solid var(--primary-yellow);
    color: var(--primary-yellow);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease, gap 0.2s ease, box-shadow 0.3s ease;
}

.btn-view-all:hover {
    background: var(--primary-yellow);
    color: #000;
    gap: 1.1rem;
    box-shadow: 0 6px 24px rgba(255, 208, 0, 0.3);
}

.btn-view-all i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.btn-view-all:hover i {
    transform: translateX(4px);
}

/* Blog card variant: white text for headings and body */
.blog-card h3,
.blog-card h3 a,
.blog-card p,
.blog-card .post-meta {
    color: var(--white) !important;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--nav-black);
    position: relative;
    overflow: hidden;
}

/* Subtle background accent matching hero palette */
.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(140, 82, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 208, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Slide-in animations */
.about-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.15s;
}

.about-animate-left.in-view,
.about-animate-right.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* Eyebrow label */
.about-eyebrow {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: left;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 2.5rem;
    line-height: 1.75;
    max-width: 480px;
}

/* Stat counters */
.about-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.about-stat {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    flex: 1;
    position: relative;
    row-gap: 0.2rem;
}

.about-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-count {
    display: flex;
    align-items: baseline;
    gap: 1px;
    justify-content: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-yellow);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-left: 2px;
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--grey);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-align: center;
    width: 100%;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    text-align: left;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.feature:hover {
    background: rgba(140, 82, 255, 0.08);
    border-color: rgba(140, 82, 255, 0.3);
    transform: translateX(6px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: #000;
    border: 2px solid var(--primary-purple);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(140, 82, 255, 0.25);
}

.feature-text {
    margin-top: 0;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.feature-text p {
    color: var(--grey);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

/* Yellow/purple gradient border around image */
.about-image-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-purple));
    border-radius: 26px;
    z-index: -1;
}

.about-image-frame img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-frame:hover img {
    transform: scale(1.03);
}

/* Floating badge */
.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 208, 0, 0.4);
    border-radius: 50px;
    padding: 0.6rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.about-image-badge i {
    color: var(--primary-yellow);
    font-size: 1rem;
}

/* Keep old container classes that might be used elsewhere */
.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-logo-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.about-logo-overlay img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: var(--nav-black);
}

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

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-purple));
    color: var(--white);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: var(--nav-black);
}

/* Eyebrow */
.reviews-eyebrow {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 0.25rem;
}

/* Multi-platform review badges */
.review-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.review-platform-badge {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 1.1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.review-platform-badge:hover {
    background: rgba(255,208,0,0.08);
    border-color: rgba(255,208,0,0.3);
}

.rp-logo {
    height: 24px;
    width: auto;
}

.rp-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.rp-icon-hipages {
    background: #ff6b35;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.rp-icon-fb {
    background: #1877f2;
    color: #fff;
}

.rp-icon-fb i {
    font-size: 0.85rem;
}

.rp-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.rp-stars {
    display: flex;
    gap: 0.15rem;
}

.rp-stars i {
    color: var(--primary-yellow);
    font-size: 0.7rem;
}

.rp-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--grey);
    white-space: nowrap;
}

/* ── Carousel ── */
.reviews-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reviews-carousel-track-wrap {
    overflow: hidden;
    flex: 1;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.reviews-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Arrow buttons */
.carousel-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 208, 0, 0.4);
    background: rgba(255, 208, 0, 0.07);
    color: var(--primary-yellow);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.carousel-btn:hover {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: #000;
    transform: scale(1.1);
}

/* Dot indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 3rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, width 0.3s ease;
}

.carousel-dot.is-active {
    background: var(--primary-yellow);
    width: 24px;
}

/* Review cards */
.review-card {
    flex: 0 0 calc(33.333% - 16px);
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    box-sizing: border-box;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.review-card:hover {
    border-color: rgba(255, 208, 0, 0.2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    transform: translateY(-4px);
}

.review-card:hover .reviewer-avatar {
    background: var(--primary-purple);
    color: #000000;
}

/* Large quote mark */
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 4rem;
    line-height: 1;
    color: rgba(255, 208, 0, 0.35);
    font-weight: 900;
}

.review-header {
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.reviewer-details h4 {
    margin: 0;
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.reviewer-details p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--grey);
}

.review-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.85rem;
}

.review-stars i {
    color: var(--primary-yellow);
    font-size: 0.85rem;
}

.review-text {
    color: var(--grey);
    line-height: 1.65;
    font-size: 0.92rem;
    flex-grow: 1;
}

/* CTA */
.reviews-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    text-align: center;
}

.btn-view-all--secondary {
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
}

.btn-view-all--secondary:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    box-shadow: none;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--contact-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 2rem;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-purple));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item > div {
    margin-top: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--grey);
    margin: 0;
}

.contact-form {
    background: var(--section-black);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    align-self: start;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: var(--nav-black);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 50px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

/* Footer */
/* ── Footer ── */
.footer {
    background: #0a0a0f;
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Subtle radial glow accent */
.footer-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(255, 208, 0, 0.06) 0%, rgba(140, 82, 255, 0.04) 50%, transparent 70%);
    pointer-events: none;
}

/* 4-column grid */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 4rem;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 1.2rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 1.8rem;
    max-width: 280px;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    text-decoration: none;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
    border-color: var(--primary-yellow);
    background: rgba(255, 208, 0, 0.1);
    color: var(--primary-yellow);
    transform: translateY(-3px);
}

/* Link columns */
.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0 1.4rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

/* Contact list */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.footer-contact-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(255, 208, 0, 0.08);
    border: 1px solid rgba(255, 208, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-yellow);
    font-size: 0.75rem;
    margin-top: 1px;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-list li a:hover {
    color: var(--white);
}

/* Footer CTA */
.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    border-radius: 100px;
    border: 1.5px solid var(--primary-yellow);
    color: var(--primary-yellow);
    margin-top: 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.25s ease, color 0.25s ease, gap 0.2s ease;
}

.footer-cta:hover {
    background: var(--primary-yellow);
    color: #000;
    gap: 0.8rem;
}

.footer-cta i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.footer-cta:hover i {
    transform: translateX(3px);
}

/* Bottom strip */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 0;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    margin: 0;
}

.footer-abn {
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 0.78rem !important;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    background: var(--nav-black);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--primary-yellow);
    animation: slideIn 0.3s ease-out;
    backdrop-filter: blur(10px);
}

.notification-success {
    border-left-color: #10b981;
}

.notification-error {
    border-left-color: #ef4444;
}

.notification-content {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.notification-content i:first-child {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-success .notification-content i:first-child {
    color: #10b981;
}

.notification-error .notification-content i:first-child {
    color: #ef4444;
}

.notification-content span {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: var(--grey);
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* reCAPTCHA styling */
.g-recaptcha {
    margin: 1rem 0;
}

/* Form loading state */
.contact-form form.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Success Message Animation Styles */
#form-success-message {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.1), rgba(140, 82, 255, 0.1));
    border: 2px solid var(--primary-yellow);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 208, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Animated success state */
#form-success-message.animate-success {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: successPulse 2s ease-in-out;
}

/* Bounce effect */
#form-success-message.bounce-effect {
    animation: gentleBounce 0.6s ease-in-out;
}

/* Background shimmer effect */
#form-success-message::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 208, 0, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s ease-in-out infinite;
}

/* Success pulse animation */
@keyframes successPulse {
    0% {
        box-shadow: 0 10px 30px rgba(255, 208, 0, 0.2);
    }
    50% {
        box-shadow: 0 15px 40px rgba(255, 208, 0, 0.4), 0 0 20px rgba(140, 82, 255, 0.3);
        transform: translateY(0) scale(1.02);
    }
    100% {
        box-shadow: 0 10px 30px rgba(255, 208, 0, 0.2);
        transform: translateY(0) scale(1);
    }
}

/* Gentle bounce effect */
@keyframes gentleBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-5px) scale(1.01);
    }
    50% {
        transform: translateY(0) scale(1);
    }
    75% {
        transform: translateY(-2px) scale(1.005);
    }
}

/* Shimmer effect */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Add an icon animation */
#form-success-message::after {
    content: '✨';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

/* Sparkle animation for the icon */
@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2) rotate(180deg);
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    #form-success-message {
        padding: 1rem;
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    #form-success-message::after {
        top: 0.8rem;
        right: 0.8rem;
        font-size: 1rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 2rem 20px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--nav-black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        padding: 2rem;
        padding-top: max(2rem, env(safe-area-inset-top));
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
        box-sizing: border-box;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu .nav-link {
        padding: 1.5rem 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        font-weight: 600;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        min-height: 60px;
        width: 100%;
        max-width: 300px;
        margin: 0.5rem 0;
        border-radius: 10px;
    }

    .nav-menu .nav-link:hover {
        color: var(--primary-yellow);
        background: rgba(255, 255, 255, 0.05);
        transform: scale(1.05);
    }

    .nav-menu .nav-link:last-child {
        border-bottom: none;
        margin-bottom: 2rem;
    }

    /* Mobile call button */
    /* linear-gradient(135deg, var(--primary-purple), var(--primary-yellow)); */
    .mobile-call-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        background: transparent;
        color: var(--primary-yellow);
        border: 1.5px solid var(--primary-yellow);
        padding: 0.7rem 2rem;
        border-radius: 100px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        margin: 1.5rem auto 0 auto;
        margin-bottom: env(safe-area-inset-bottom, 5rem);
        max-width: 240px;
        width: auto;
        transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, gap 0.2s ease;
    }

    .mobile-call-btn:hover {
        background: var(--primary-yellow);
        color: #000;
        box-shadow: 0 6px 20px rgba(255, 208, 0, 0.3);
        gap: 0.8rem;
    }
    
    .call-now-btn {
        display: none;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .hamburger span {
        transform-origin: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Hero Section Mobile */
    .hero {
        padding-top: 20px;
        padding-bottom: 50px;
        min-height: 100svh;
        background-attachment: scroll; /* fixed breaks on iOS/Android */
        background-position: center center;
    }
    
    .hero-content {
        padding: 100px 24px 60px;
        text-align: center;
    }

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

    /* Mobile responsive heading sizes */
    .hero-text h1 {
        font-size: 2.4rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.1 !important;
    }

    /* Centre the yellow underline bar on mobile */
    .hero-text h1::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    .hero-text h1 .h1-subtitle {
        font-size: 0.7em; /* slightly larger on small screens for legibility */
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .section-header h2,
    .about-text h2,
    .contact-info h2,
    .faq .section-header h2 {
        font-size: 1.8rem !important;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Services Section Mobile */
    .services {
        padding: 60px 0;
    }
    
    .services-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-split-left {
        position: static;
    }

    .services-nav-list {
        display: none;
    }

    .service-scroll-card {
        opacity: 1;
        transform: none;
    }
    
    /* Projects Section Mobile */
    .projects {
        padding: 60px 0;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Reviews Section Mobile */
    .reviews {
        padding: 60px 0;
    }

    .review-card {
        flex: 0 0 85vw;
        max-width: 360px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    
    /* About Section Mobile */
    .about {
        padding: 70px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-animate-left,
    .about-animate-right {
        transform: translateY(30px);
        transition-delay: 0s;
    }

    .about-stats {
        gap: 1rem;
        padding: 1.2rem 1rem;
    }

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

    .about-image-frame img {
        height: 300px;
    }

    .about-image-badge {
        font-size: 0.8rem;
        padding: 0.5rem 0.9rem;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        margin-top: 0;
        padding: 2rem 1.5rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 60px 0 0;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        padding-bottom: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-text .company-name {
        font-size: 1rem;
    }
    
    .logo-text .company-tagline {
        font-size: 0.8rem;
    }

    /* Notification mobile styles */
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .notification-content {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content {
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 3rem !important;
    }
    
    .services-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-card {
        flex: 0 0 calc(50% - 12px);
    }
    
    .contact-content {
        gap: 3rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .nav-container {
        padding: 1rem 10px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
    }

    .footer-col:last-child {
        grid-column: 1 / -1;
    }
    
    .hero-content {
        padding: 90px 10px 50px;
    }

    .hero-text h1 {
        font-size: 2rem !important;
    }
    
    .section-header h2,
    .about-text h2,
    .contact-info h2,
    .faq .section-header h2 {
        font-size: 1.6rem !important;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .logo img {
        width: 75px;
        height: 75px;
    }
    
    .logo-text .company-name {
        font-size: 0.9rem;
    }
    
    .logo-text .company-tagline {
        font-size: 0.9rem;
    }
    
    .service-scroll-card {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .review-card {
        flex: 0 0 calc(100% - 0px);
        padding: 1.5rem;
    }

    .carousel-btn {
        display: none;
    }

    .reviews-carousel-track-wrap {
        -webkit-mask-image: none;
        mask-image: none;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .nav-menu {
        width: 100vw;
        padding: 2rem 1rem;
    }

    .nav-menu .nav-link {
        font-size: 1.2rem;
        padding: 1.2rem 0;
        margin: 0.3rem 0;
    }

    .mobile-call-btn i {
        font-size: 0.75rem;
    }

    .hamburger {
        padding: 8px;
        min-height: 40px;
        min-width: 40px;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
        margin: 2.5px 0;
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--section-black);
}

/* General underline for all section headings */
.section-header h2::after,
.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    transform: none;
    width: 60px;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

/* Hero h1 accent bar — left-aligned */
.hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    transform: none;
    width: 80px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

/* Eyebrow */
.faq-eyebrow {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 0.25rem;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Scroll entrance */
.faq-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.faq-animate.in-view { opacity: 1; transform: translateY(0); }
.faq-animate:nth-child(1) { transition-delay: 0s; }
.faq-animate:nth-child(2) { transition-delay: 0.07s; }
.faq-animate:nth-child(3) { transition-delay: 0.14s; }
.faq-animate:nth-child(4) { transition-delay: 0.21s; }
.faq-animate:nth-child(5) { transition-delay: 0.28s; }
.faq-animate:nth-child(6) { transition-delay: 0.35s; }
.faq-animate:nth-child(7) { transition-delay: 0.42s; }

/* Each row */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Question button */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.6rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    text-align: left;
}

.faq-question span:first-child {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    transition: color 0.25s ease;
}

.faq-item.active .faq-question span:first-child {
    color: var(--primary-yellow);
}

/* +/– icon */
.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.35s ease;
}

.faq-item.active .faq-icon {
    border-color: var(--primary-yellow);
    background: var(--primary-yellow);
    color: #000;
    transform: rotate(45deg);
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 0 1.6rem;
    color: var(--grey);
    line-height: 1.75;
    font-size: 0.97rem;
    margin: 0;
}

@media (max-width: 768px) {
    .faq { padding: 60px 0; }
    .faq-question span:first-child { font-size: 0.97rem; }
    .faq-question { padding: 1.3rem 0; }
}

@media (max-width: 480px) {
    .faq-question span:first-child { font-size: 0.92rem; }
}

/* Scroll Animation Styles */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.fade-up {
    transform: translateY(50px);
}

.scroll-animate.fade-up.animate-in {
    transform: translateY(0);
}

.scroll-animate.fade-left {
    transform: translateX(-50px);
}

.scroll-animate.fade-left.animate-in {
    transform: translateX(0);
}

.scroll-animate.fade-right {
    transform: translateX(50px);
}

.scroll-animate.fade-right.animate-in {
    transform: translateX(0);
}

.scroll-animate.scale-up {
    transform: translateY(30px) scale(0.95);
}

.scroll-animate.scale-up.animate-in {
    transform: translateY(0) scale(1);
}

/* Stagger animation delays for multiple elements */
.scroll-animate:nth-child(1) { transition-delay: 0.1s; }
.scroll-animate:nth-child(2) { transition-delay: 0.2s; }
.scroll-animate:nth-child(3) { transition-delay: 0.3s; }
.scroll-animate:nth-child(4) { transition-delay: 0.4s; }
.scroll-animate:nth-child(5) { transition-delay: 0.5s; }

/* Specific stagger delays for feature cards */
.about-features .feature.scroll-animate:nth-of-type(1) { transition-delay: 0.2s; }
.about-features .feature.scroll-animate:nth-of-type(2) { transition-delay: 0.4s; }
.about-features .feature.scroll-animate:nth-of-type(3) { transition-delay: 0.6s; }

/* Projects Section */
.projects {
    padding: 100px 0;
    background: var(--section-black);
}

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

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.project-card:hover .project-image img {
    transform: scale(1.05);
}

/* Subtle pulse animation for call-to-action buttons */
.btn-call-pulse .btn-inner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    will-change: transform;
    animation: ctaPulse 2.2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(0.96); }
    50% { transform: scale(1.10); }
}

.placeholder-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-yellow));
    color: white;
    text-align: center;
}

.placeholder-image i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.placeholder-image p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    color: var(--primary-yellow);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.project-content p {
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(255, 208, 0, 0.1);
    color: var(--primary-yellow);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 208, 0, 0.3);
}

.projects-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Blog post spacing tweaks */
.blog-content {
    padding-top: 20px !important; /* tighter gap after hero */
}

/* --- Blog Post Layout --- */

/* Breadcrumb */
.post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.5rem;
    justify-content: center;
}
.post-breadcrumb a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s ease;
}
.post-breadcrumb a:hover { color: var(--primary-yellow); }
.post-breadcrumb span { opacity: 0.3; }

/* Post hero override */
section.post-hero {
    min-height: auto !important;
    padding: 120px 0 0 !important;
    background: #0a0a0f !important;
}
section.post-hero .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
section.post-hero .hero-text {
    max-width: 820px;
    margin: 0 auto !important;
    width: 100%;
}
section.post-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
    font-weight: 800 !important;
    color: var(--white) !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
}
section.post-hero .hero-text h1::after {
    left: 50%;
    transform: translateX(-50%);
}
section.post-hero .h1-subtitle {
    display: block !important;
    font-size: 0.58em !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,0.5) !important;
    margin-top: 0.4rem;
}
.post-meta {
    font-size: 0.82rem !important;
    color: rgba(255,255,255,0.38) !important;
    margin: 0 auto 1.25rem auto !important;
    text-align: center !important;
    width: 100%;
    display: block;
}
section.post-hero .hero-text > p:not(.post-meta):not(.featured-answer) {
    font-size: 1.05rem !important;
    color: rgba(255,255,255,0.6) !important;
    line-height: 1.8 !important;
    max-width: 700px;
    margin: 0 auto !important;
}
.featured-answer {
    background: rgba(255,208,0,0.06);
    border: 1px solid rgba(255,208,0,0.15);
    border-radius: 12px;
    padding: 1rem 1.4rem;
    font-size: 0.95rem !important;
    color: rgba(255,255,255,0.7) !important;
    line-height: 1.7 !important;
    text-align: left;
    max-width: 700px;
    margin: 0 auto !important;
}
section.post-hero .hero-image {
    width: 100%;
    max-width: 860px;
    margin: 3rem auto 0 !important;
}

/* Post hero image */
.post-hero .hero-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
}

.post {
    padding: 60px 0 100px;
    background: #0a0a0f;
}

.post-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}

.post-content {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 3rem;
}

.post-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 0.85rem;
    color: var(--white);
    line-height: 1.3;
}

.post-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.8rem;
    margin-bottom: 0.6rem;
    color: var(--white);
}

.post-content p {
    color: rgba(255,255,255,0.65);
    line-height: 1.85;
    font-size: 1rem;
    margin-bottom: 1.1rem;
}

.post-content strong {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

.post-content ul,
.post-content ol {
    padding-left: 0;
    list-style: none;
    margin-bottom: 1.2rem;
}

.post-content li {
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    font-size: 1rem;
    padding: 0.3rem 0 0.3rem 1.6rem;
    position: relative;
}

.post-content ul > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-yellow);
}

.post-content ol {
    counter-reset: post-ol;
}
.post-content ol > li { counter-increment: post-ol; }
.post-content ol > li::before {
    content: counter(post-ol);
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,208,0,0.12);
    color: var(--primary-yellow);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}
.post-content table th {
    background: rgba(255,208,0,0.07);
    color: var(--primary-yellow);
    font-weight: 600;
    padding: 0.7rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,208,0,0.15);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.post-content table td {
    padding: 0.65rem 1rem;
    color: rgba(255,255,255,0.62);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.post-content table tr:last-child td { border-bottom: none; }

.post-content hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin: 2.5rem 0;
}

/* In-post CTA box */
.post-cta {
    background: rgba(255,208,0,0.05) !important;
    border: 1px solid rgba(255,208,0,0.15) !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    margin: 2.5rem 0 !important;
    display: flex !important;
    flex-wrap: wrap;
    gap: 1rem !important;
    justify-content: center !important;
    text-align: center !important;
}

.post-content .center-cta {
    text-align: center;
    margin: 2rem 0;
}

/* Disclaimer */
.post-content .disclaimer,
.disclaimer {
    background: rgba(255,255,255,0.03);
    border-left: 3px solid rgba(255,255,255,0.12);
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.25rem;
    margin-top: 2.5rem;
    font-size: 0.84rem !important;
    color: rgba(255,255,255,0.38) !important;
    line-height: 1.6;
}

.projects-cta h3 {
    color: var(--primary-yellow);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.projects-cta p {
    color: var(--grey);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Projects responsive */
@media (max-width: 768px) {
    .projects {
        padding: 60px 0;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-image {
        height: 180px;
    }
    
    .placeholder-image i {
        font-size: 2.5rem;
    }
    
    .placeholder-image p {
        font-size: 1rem;
    }
    
    .projects-cta {
        margin-top: 3rem;
        padding: 2rem 1rem;
    }
    
    .projects-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Fade out animation */
#form-success-message.fade-out {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.5s ease-in-out;
}

/* Edited on 18 August 2025 */

/* ══════════════════════════════════════
   Services Page
══════════════════════════════════════ */

/* Page Hero */
.page-hero {
    background: #0a0a0f;
    padding: 130px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(140,82,255,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.page-eyebrow {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}
.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.2rem;
    line-height: 1.1;
    position: relative;
}
.page-hero .page-hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    position: relative;
}

.page-hero .hero-buttons {
    justify-content: center;
}

/* Category sections */
.svc-category-section {
    padding: 70px 0 20px;
    background: var(--services-bg);
}
.svc-category-section:last-of-type {
    padding-bottom: 80px;
}

.svc-category-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 1.2rem;
    margin-bottom: 2rem;
}
.svc-cat-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-yellow);
    white-space: nowrap;
}
.svc-category-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.08);
}
.svc-category-header h2 {
    flex-basis: 100%;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 0.4rem;
    white-space: nowrap;
}

/* Card grid */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.svc-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 1.75rem;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-yellow);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px 16px 0 0;
}
.svc-card:hover {
    border-color: rgba(140,82,255,0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.svc-card:hover::before {
    opacity: 1;
}
.svc-card-icon {
    width: 52px;
    height: 52px;
    background: #000;
    border: 2px solid var(--primary-purple);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px rgba(140,82,255,0.2);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.svc-card:hover .svc-card-icon {
    border-color: var(--primary-yellow);
    box-shadow: 0 4px 18px rgba(255,208,0,0.2);
}
.svc-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.55rem;
}
.svc-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.52);
    line-height: 1.65;
    margin: 0;
}

/* CTA Banner */
.services-cta-banner {
    background: linear-gradient(135deg, rgba(140,82,255,0.08) 0%, rgba(255,208,0,0.04) 100%);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 90px 0;
    text-align: center;
}
.services-cta-banner h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}
.services-cta-banner p {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.services-cta-banner .hero-buttons {
    justify-content: center;
}

/* Responsive */
@media (max-width: 900px) {
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .svc-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 110px 0 60px; }
}

/* ══════════════════════════════════════
   About Page
══════════════════════════════════════ */

/* Story split */
.about-story {
    padding: 100px 0;
    background: #0a0a0f;
}
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-story-img {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}
.about-story-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
.about-story-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    pointer-events: none;
}
.section-header .about-eyebrow {
    text-align: center;
    color: var(--primary-yellow);
    background: none;
    -webkit-text-fill-color: var(--primary-yellow);
}

.about-story-text .about-eyebrow {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 0.8rem;
}
.about-story-text h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.4rem;
    line-height: 1.15;
}
.about-story-text p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.about-story-text p:last-of-type {
    margin-bottom: 0;
}

/* Stats bar */
.about-stats {
    background: #111111;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0;
}
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.about-stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.08);
    align-self: stretch;
    display: none;
}
.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 1rem;
}
.about-stat + .about-stat::before {
    display: none;
}
.about-stat-num {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-yellow);
    line-height: 1;
    margin-bottom: 0.4rem;
    display: block;
}
.about-stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    line-height: 1.4;
}

/* Values section */
.about-values {
    padding: 100px 0;
    background: #0a0a0f;
}
.about-values .section-header {
    margin-bottom: 3rem;
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.about-value-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.about-value-card:hover {
    border-color: rgba(140,82,255,0.35);
    transform: translateY(-3px);
}
.about-value-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: #000;
    border: 2px solid var(--primary-purple);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(140,82,255,0.2);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.about-value-card:hover .about-value-icon {
    border-color: var(--primary-yellow);
    box-shadow: 0 4px 15px rgba(255,208,0,0.2);
}
.about-value-text h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.4rem;
}
.about-value-text p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.52);
    line-height: 1.65;
    margin: 0;
}

/* Areas section */
.about-areas {
    padding: 80px 0;
    background: #111111;
    text-align: center;
}
.about-areas .section-header {
    margin-bottom: 2.5rem;
}

/* Ticker */
@keyframes about-ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.about-areas-ticker-wrap {
    overflow: hidden;
    padding: 0.5rem 0 1.5rem;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.about-areas-ticker {
    display: flex;
    gap: 0.6rem;
    width: max-content;
    animation: about-ticker 40s linear infinite;
    will-change: transform;
}

.about-areas-ticker:hover {
    animation-play-state: paused;
}

.about-area-tag {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 0.45rem 1.2rem;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.65);
    white-space: nowrap;
    flex-shrink: 0;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    cursor: default;
}

.about-area-tag:hover {
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
    background: rgba(255,208,0,0.05);
}

.about-area-tag--more {
    border-color: rgba(255,208,0,0.3);
    color: var(--primary-yellow);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .about-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-story-img img { height: 320px; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-values-grid { grid-template-columns: 1fr; }
    .about-stat + .about-stat::before { display: none; }
}
@media (max-width: 480px) {
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

/* ══════════════════════════════════════
   Contact Page
══════════════════════════════════════ */

.contact-page {
    padding: 90px 0 110px;
    background: #0a0a0f;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 5rem;
    align-items: start;
}

/* Left column */
.contact-page-info .page-eyebrow {
    margin-bottom: 0.8rem;
}

.contact-page-info h2 {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.contact-page-info > p {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2.2rem;
}

/* Contact detail cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.8rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(140,82,255,0.35);
    transform: translateX(4px);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: #000;
    border: 2px solid var(--primary-purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(140,82,255,0.2);
}

.contact-card-text h4 {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.2rem;
}

.contact-card-text a,
.contact-card-text p {
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    margin: 0;
    line-height: 1.45;
}

.contact-card-text a:hover {
    color: var(--primary-yellow);
}

/* Emergency strip */
.contact-emergency {
    background: rgba(255,208,0,0.05);
    border: 1px solid rgba(255,208,0,0.2);
    border-radius: 14px;
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-emergency i {
    color: var(--primary-yellow);
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-emergency-text strong {
    display: block;
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.contact-emergency-text span {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Social row */
.contact-social {
    display: flex;
    gap: 0.6rem;
}

.contact-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.contact-social a:hover {
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
    background: rgba(255,208,0,0.06);
}

/* Right column — form card */
.contact-form-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-form-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.contact-form-card > p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form-card .form-group {
    margin-bottom: 1.1rem;
}

.contact-form-card .form-group input,
.contact-form-card .form-group select,
.contact-form-card .form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    padding: 13px 16px;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-form-card .form-group input:focus,
.contact-form-card .form-group select:focus,
.contact-form-card .form-group textarea:focus {
    border-color: var(--primary-purple);
    background: rgba(140,82,255,0.06);
    outline: none;
    box-shadow: none;
}

.contact-form-card .form-group input::placeholder,
.contact-form-card .form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.contact-form-card .form-group select option {
    background: #1a1a2e;
    color: #fff;
}

.contact-form-card .btn-secondary {
    width: 100%;
    padding: 14px;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ══════════════════════════════════════
   Blog Page
══════════════════════════════════════ */

.blog-section {
    padding: 80px 0 110px;
    background: #0a0a0f;
}

.blog-section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.blog-section-label span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-yellow);
    white-space: nowrap;
}

.blog-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.07);
}

/* Featured row */
.blog-featured-row {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

/* Card base */
.blog-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--primary-yellow);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px 16px 0 0;
}

.blog-card:hover {
    border-color: rgba(140,82,255,0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.blog-card:hover::before {
    opacity: 1;
}

/* Featured card */
.blog-card--featured {
    padding: 2.25rem;
}

/* Category tag */
.blog-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 0.25rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
    width: fit-content;
}

.blog-tag i {
    font-size: 0.65rem;
    color: var(--primary-yellow);
}

/* Title */
.blog-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.45;
    margin-bottom: 0.65rem;
}

.blog-card--featured .blog-card-title {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title a {
    color: var(--primary-yellow);
}

/* Excerpt */
.blog-card-excerpt {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    flex: 1;
}

.blog-card--featured .blog-card-excerpt {
    font-size: 0.92rem;
}

/* Card footer */
.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: auto;
}

.blog-card-date {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.3);
}

.blog-read-more {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-yellow);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.2s ease;
}

.blog-read-more i {
    font-size: 0.7rem;
}

.blog-read-more:hover {
    gap: 0.6rem;
}

/* Regular grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* Responsive */
@media (max-width: 960px) {
    .blog-featured-row { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* ── Trusted By ── */
.trusted-by {
    padding: 3.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    text-align: center;
}
.trusted-by-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 2rem;
}
.trusted-by-logos {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.trusted-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,208,0,0.25);
    border-radius: 14px;
    padding: 22px 36px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    min-width: 180px;
}
.trusted-logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255,208,0,0.12);
    border-color: rgba(255,208,0,0.5);

}
.trusted-logo {
    height: 51px;
    width: auto;
    max-width: 184px;
    object-fit: contain;
    display: block;
    border-radius: 6px;
}
@media (max-width: 600px) {
    .trusted-by-logos { gap: 1rem; }
    .trusted-logo-item { padding: 16px 24px; min-width: 140px; }
    .trusted-logo { height: 41px; }
}
