/* airline-advertisement.html Custom Styles */
:root {
    --primary: #00266B;
    /* Singapore Airlines Navy */
    --accent: #FDB913;
    /* Singapore Airlines Gold */
    --secondary: #2275D3;
    /* Modern Action Blue */
    --text: #1a1a1a;
    --light-bg: #f8fafc;
    --container-width: 1200px;
    --header-height: 80px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #001a4d;
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 40px;
    font-size: 12px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
}

.top-bar .get-quote {
    background: var(--accent);
    color: #000;
    padding: 6px 20px;
    border-radius: 2px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.top-bar .get-quote:hover {
    background: #fff;
    color: var(--primary);
}

/* ===== HEADER / NAV ===== */
header {
    background: #fff;
    height: var(--header-height);
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--accent);
}

header .logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--accent);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li.dropdown {
    position: relative;
}

nav ul li.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    min-width: 220px;
    padding: 10px 0;
    z-index: 1000;
}

.dropdown-menu li a {
    display: block;
    padding: 9px 20px;
    font-size: 13px;
}

.dropdown-menu li a:hover {
    background: var(--light-bg);
    color: var(--accent);
}

.nav-phone {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    background: #fff;
    padding: 120px 40px 70px;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-content {
    max-width: 560px;
}

.hero-content .badge {
    background: var(--accent);
    color: #000;
    padding: 6px 16px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: var(--accent);
    color: #000;
    padding: 15px 35px;
    border-radius: 3px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 13px 35px;
    border-radius: 3px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-fade {
    animation: fadeIn 0.8s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

.hero-image img {
    max-width: 460px;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

/* ===== SECTION COMMONS ===== */
section {
    padding: 70px 40px;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 640px;
    line-height: 1.7;
}

/* ===== ADVANTAGE SECTION ===== */
.advantage-section {
    background: var(--light-bg);
}

.advantage-inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.advantage-text {
    flex: 1;
    min-width: 280px;
}

.advantage-text ul {
    margin-top: 20px;
    list-style: none;
}

.advantage-text ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: #444;
    border-bottom: 1px solid #e0e8f0;
}

.advantage-text ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Media Options Styles Removed */


/* ===== TARGETING SECTION ===== */
.targeting-section {
    background: #fff;
}

.targeting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 36px;
}

.target-card {
    background: #fff;
    border-radius: 4px;
    padding: 35px 30px;
    border: 1px solid #eee;
    border-top: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.target-card:hover {
    transform: translateY(-5px);
}

.target-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.target-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ===== INVENTORY SECTION ===== */
.inventory-section {
    background: var(--light-bg);
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 36px;
}

.inventory-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.inventory-card:hover {
    transform: translateY(-8px);
}

.inventory-card .tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 2px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.inventory-card .img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #f0f4f8;
}

.inventory-card .card-body {
    padding: 30px;
}

.inventory-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.inventory-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.inventory-card a {
    color: var(--secondary);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.inventory-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.9) contrast(1.1) saturate(1.2) hue-rotate(10deg);
    /* Initial subtle enhancement */
}

.inventory-card:hover .img-wrap img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.1) saturate(1.3);
}


/* ===== EXTEND REACH SECTION ===== */
.extend-section {
    background: linear-gradient(135deg, var(--primary), #8e1616);
    color: #fff;
    padding: 60px 40px;
}

.extend-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.extend-content {
    flex: 1;
    min-width: 260px;
}

.extend-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.extend-content ul {
    list-style: none;
    margin-top: 16px;
}

.extend-content ul li {
    padding: 7px 0 7px 24px;
    position: relative;
    font-size: 15px;
    opacity: 0.9;
}

.extend-content ul li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.extend-img img {
    max-width: 420px;
    width: 100%;
    border-radius: 10px;
}

/* ===== HOW IT WORKS ===== */
.how-section {
    background: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 36px;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: 12px;
}

.step-number {
    font-size: 56px;
    font-weight: 900;
    color: rgba(0, 38, 107, 0.05);
    line-height: 1;
    margin-bottom: -15px;
    position: relative;
    z-index: 1;
}

.step-card h4 {
    position: relative;
    z-index: 2;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 50px 40px;
}

.cta-section h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-section p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 30px;
}

/* ===== BOTTOM CTA BANNER ===== */
.bottom-cta {
    background: var(--accent);
    color: #fff;
    padding: 40px 40px;
}

.bottom-cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.bottom-cta h3 {
    font-size: 22px;
    font-weight: 700;
}

.bottom-cta p {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 6px;
    max-width: 500px;
}

.bottom-cta-img img {
    max-height: 220px;
    display: block;
}

.btn-white {
    background: #fff;
    color: var(--accent);
    padding: 13px 28px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}

/* ===== FOOTER ===== */
footer {
    background: #001233;
    /* Even darker navy for depth */
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 40px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-text span {
    color: var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col .footer-logo img {
    height: 44px;
    margin-bottom: 14px;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 9px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-col .contact-item {
    font-size: 13px;
    margin-bottom: 7px;
}

.footer-col .contact-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.news-item {
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 14px;
}

.news-item .date {
    font-size: 11px;
    color: var(--accent);
    margin-bottom: 4px;
}

.news-item a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
}

/* ===================================================
   HAMBURGER & MOBILE NAV DRAWER
=================================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.mobile-nav-overlay.is-open {
    display: block;
}

/* Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100%;
    background: #fff;
    z-index: 2001;
    padding: 80px 24px 40px;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-left: 1px solid #eee;
}

.mobile-nav-drawer.is-open {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #333;
    line-height: 1;
    padding: 4px 8px;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.mobile-nav-list li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-list li a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.2px;
}

.mobile-nav-list li a.mobile-sub {
    font-size: 13px;
    font-weight: 500;
    color: #777;
    padding: 10px 12px;
}

.mobile-nav-list li a:hover {
    color: var(--accent);
}

/* Mobile Dropdown Styles */
.has-mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.has-mobile-dropdown.is-open .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-sub-menu {
    display: none;
    list-style: none;
    padding: 0 0 0 20px;
    background: #fcfcfc;
}

/* .has-mobile-dropdown.is-open .mobile-sub-menu {
    display: block;
} */

.mobile-sub-menu li a {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #555 !important;
    padding: 10px 0 !important;
    border-bottom: none !important;
}

.mobile-nav-cta {
    display: block;
    margin-top: 28px;
    background: var(--accent);
    color: #000;
    text-align: center;
    padding: 14px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
}

/* ===================================================
   GLOBAL MOBILE (@max 768px)
=================================================== */
@media (max-width: 768px) {

    /* Hide top bar on smallest screens */
    .top-bar {
        display: none;
    }

    /* Header */
    header {
        height: 60px;
        padding: 0 16px;
    }

    header .container {
        padding: 0;
    }

    .logo-text {
        font-size: 16px;
    }

    #main-nav {
        display: none;
    }

    /* hide desktop nav */
    .nav-phone {
        display: none;
    }

    /* hide phone in header */
    .hamburger {
        display: flex;
    }

    /* show burger */

    /* Sections general */
    section {
        padding: 52px 0;
    }

    .container {
        padding: 0 18px;
    }

    /* Hero (airline/homepage style) */
    .hero {
        padding: 50px 0;
        min-height: auto;
    }

    .hero .container {
        flex-direction: column;
        gap: 24px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-image img {
        height: 240px;
        max-width: 100%;
    }

    .stats-row {
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 24px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    footer {
        padding: 52px 20px 28px;
    }

    .bottom-cta .container {
        flex-direction: column;
        gap: 16px;
    }

    .bottom-cta-img {
        display: none;
    }
}

/* ===================================================
   ABOUT PAGE - MOBILE (cr- classes)  @max 900px
=================================================== */
@media (max-width: 900px) {

    /* 1. Hero */
    .cr-hero {
        padding: 60px 0 48px;
    }

    .cr-hero-title {
        font-size: 44px;
        letter-spacing: -1.5px;
    }

    /* 2. Stats – 2 cols */
    .cr-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cr-stat-col:nth-child(2) {
        border-right: none;
    }

    .cr-stat-col:nth-child(3) {
        border-top: 1px solid #ddddd6;
        padding-left: 0;
    }

    .cr-stat-col:nth-child(4) {
        border-top: 1px solid #ddddd6;
    }

    .cr-stat-col {
        min-height: 140px;
        padding: 32px 20px 28px;
    }

    .cr-stat-num {
        font-size: 44px;
    }

    /* 3. Intro – stack */
    .cr-intro-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cr-intro-images {
        height: 280px;
        margin-bottom: 40px;
    }

    .cr-img-main {
        width: 100%;
        height: 280px;
        position: relative;
        right: auto;
        top: auto;
    }

    .cr-img-secondary {
        display: none;
    }

    .cr-intro-heading {
        font-size: 30px;
    }

    /* 4. Logos – 3 cols */
    .cr-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cr-logo-item:nth-child(3) {
        border-right: none;
    }

    .cr-logo-text {
        font-size: 13px;
    }

    /* 5. Why choose us – stack */
    .cr-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cr-why-heading {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .cr-skill-list {
        padding-top: 0;
    }

    /* 6. Services – 2 cols */
    .cr-services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cr-svc-item {
        padding: 32px 24px 32px 0;
    }

    .cr-svc-item:nth-child(3) {
        border-right: 1px solid #eee;
    }

    .cr-svc-item:nth-child(2),
    .cr-svc-item:nth-child(4) {
        border-right: none;
    }

    .cr-svc-item:nth-child(5),
    .cr-svc-item:nth-child(6) {
        border-bottom: none;
    }

    .cr-services-heading {
        font-size: 30px;
    }

    .cr-services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* 7. Process – 2 cols */
    .cr-process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .cr-step:nth-child(2) {
        border-right: none;
    }

    .cr-step:nth-child(3) {
        border-top: 1px solid #ddddd6;
        padding-top: 40px;
    }

    .cr-process-heading {
        font-size: 30px;
    }

    /* 8. CTA */
    .cr-cta-heading {
        font-size: 38px;
        letter-spacing: -1px;
    }
}

/* ===================================================
   ABOUT PAGE — SMALL MOBILE (@max 480px)
=================================================== */
@media (max-width: 480px) {

    /* Hero */
    .cr-hero {
        padding: 48px 0 36px;
    }

    .cr-hero-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .cr-hero-desc {
        font-size: 14px;
    }

    /* Stats – full width each */
    .cr-stats-grid {
        grid-template-columns: 1fr;
    }

    .cr-stat-col {
        border-right: none !important;
        border-top: 1px solid #ddddd6;
        padding: 24px 0;
        min-height: auto;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cr-stat-col:first-child {
        border-top: none;
    }

    .cr-stat-num {
        font-size: 38px;
        margin: 0;
    }

    .cr-stat-label {
        font-size: 12px;
        max-width: 55%;
    }

    /* Intro */
    .cr-intro-images {
        height: 220px;
    }

    .cr-img-main {
        height: 220px;
    }

    .cr-intro-heading {
        font-size: 26px;
    }

    .cr-intro-btns {
        flex-direction: column;
    }

    .cr-btn-dark,
    .cr-btn-outline {
        justify-content: center;
        width: 100%;
    }

    /* Logos – 2 cols */
    .cr-logos-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cr-logo-item:nth-child(2) {
        border-right: none;
    }

    .cr-logo-text {
        font-size: 12px;
    }

    /* Why */
    .cr-why-heading {
        font-size: 28px;
    }

    /* Services – 1 col */
    .cr-services-grid {
        grid-template-columns: 1fr;
    }

    .cr-svc-item {
        border-right: none !important;
        padding: 28px 0;
        border-bottom: 1px solid #eee;
    }

    .cr-svc-item:last-child {
        border-bottom: none;
    }

    .cr-services-heading {
        font-size: 26px;
    }

    /* Process – 1 col */
    .cr-process-steps {
        grid-template-columns: 1fr;
    }

    .cr-step {
        border-right: none !important;
        border-bottom: 1px solid #ddddd6;
        padding: 28px 0;
    }

    .cr-step:last-child {
        border-bottom: none;
    }

    .cr-process-heading {
        font-size: 26px;
    }

    /* CTA */
    .cr-cta-heading {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .cr-cta-link {
        font-size: 14px;
    }

    /* Section padding */
    .cr-hero,
    .cr-intro-section,
    .cr-why-section,
    .cr-services-section,
    .cr-process-section,
    .cr-cta-section {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .cr-stats-section {
        padding-bottom: 52px;
    }

    .cr-logos-section {
        padding: 32px 0;
    }
}


/* ===== SERVICE PAGES (SHARED) ===== */
.hero-inner {
    padding: 120px 0 80px;
    background-color: #f8f9fa;
    text-align: center;
}

.hero-inner h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #111;
}

.hero-inner p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.service-details {
    padding: 100px 0;
    background-color: #ffffff;
}

.service-details h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111;
    text-align: center;
}

.service-details p.lead {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-features .feature-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-features .feature-card:hover {
    transform: translateY(-5px);
}

.service-features .feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}

.service-features .feature-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.service-details .cta-inline {
    background: #111;
    color: #fff;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    margin-top: 80px;
}

.service-details .cta-inline h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.service-details .cta-inline p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 16px;
}

/* ===== ABOUT PAGE (PREMIUM) ===== */
.about-section {
    padding: 120px 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 1) 0%, rgba(240, 244, 248, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }
}

.premium-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.premium-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.premium-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
}

.premium-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.premium-card h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.premium-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary);
}

.premium-card p {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
    font-size: 24px;
    transition: all 0.3s ease;
}

.premium-card:hover .card-icon {
    background: var(--accent);
    color: #000;
    transform: rotate(10deg);
}

.full-width-block {
    grid-column: 1 / -1;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.list-style-custom {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-style-custom li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    color: #444;
    font-size: 16px;
    line-height: 1.6;
    transition: transform 0.2s ease;
}

.list-style-custom li:hover {
    transform: translateX(5px);
}

.list-style-custom li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--accent);
    font-size: 18px;
}

.numbered-list-custom {
    list-style: none;
    padding: 0;
    margin: 0;
}

.numbered-list-custom li {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.numbered-list-custom li:hover {
    background: #fff;
    border-color: var(--accent);
}

.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.step-content strong {
    display: block;
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 5px;
}

.highlight-box {
    background: var(--primary);
    color: #fff;
    padding: 30px;
    border-radius: 16px;
    font-size: 18px;
    margin-top: 40px;
    position: relative;
}


.highlight-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 80px;
    font-family: serif;
    opacity: 0.2;
}

.bg-premium-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* CTA Adjustment */
.about-section .cta-inline {
    background: #00266b !important;
    /* Premium navy blue */
    color: #ffffff !important;
    padding: 80px 40px;
    border-radius: 24px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 10;
}

.about-section .cta-inline h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff !important;
}

.about-section .cta-inline p {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 40px;
    font-size: 18px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.full-width-block {
    grid-column: 1 / -1;
}

/* ===== SERVICES OVERVIEW ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.service-card>p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.what-we-do {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-top: auto;
}

.what-we-do h4 {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.what-we-do ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.what-we-do ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #444;
    font-size: 14px;
    line-height: 1.5;
}

.what-we-do ul li:last-child {
    margin-bottom: 0;
}

.what-we-do ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #ff5e14;
    font-weight: bold;
    font-size: 18px;
    top: -2px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.contact-info p.lead {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block {
    display: flex;
    gap: 20px;
}

.info-block .icon {
    width: 50px;
    height: 50px;
    background: #f0f4f8;
    color: #2b5fe1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-block:hover .icon {
    background: #2b5fe1;
    color: #ffffff;
}

.info-block .text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111;
}

.info-block .text p,
.info-block .text a {
    color: #666;
    font-size: 15px;
    margin: 0 0 4px 0;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block .text a:hover {
    color: #2b5fe1;
}

.contact-form-wrap {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #eaeaea;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    background: #fafafa;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2b5fe1;
    background: #ffffff;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #2b5fe1;
    transform: translateY(-2px);
}

/* ===== HOMEPAGE SPECIFIC (RESTORED) ===== */
.hero-section {
    position: relative;
    padding: 100px 0 80px;
    background-color: #F9FAFB;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.05) 0%, rgba(217, 119, 6, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.badge-premium {
    background: rgba(217, 119, 6, 0.1);
    color: #D97706;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title span {
    color: #D97706;
}

.hero-subheadline {
    font-size: 24px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 40px;
    max-width: 650px;
}

.content-section {
    padding: 70px 0;
    background-color: #fff;
}

.content-section.bg-light-alt {
    background-color: #F9FAFB;
}

.section-header {
    text-align: left;
    margin-bottom: 50px;
    max-width: 800px;
}

.section-header.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-intro {
    font-size: 18px;
    color: #4B5563;
    line-height: 1.7;
}

.homepage-features .feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}


.homepage-features .feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 119, 6, 0.2);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(217, 119, 6, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #D97706;
    font-size: 24px;
    font-weight: bold;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.feature-card p {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 0;
}

.premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #4B5563;
    line-height: 1.6;
}

.premium-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #D97706;
    font-size: 16px;
}

.step-item {
    display: flex;
    margin-bottom: 40px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #111827;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-right: 24px;
}

/* ===== STATIC GALLERY (WHY SECTION) ===== */
.static-gallery {
    position: relative;
    height: 520px;
    width: 100%;
    margin-top: 30px;
}

.sg-item {
    position: absolute;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.sg-main {
    top: 50px;
    right: 0;
    width: 80%;
    z-index: 2;
}

.sg-float-1 {
    top: 0;
    left: 0;
    width: 55%;
    z-index: 3;
}

.sg-float-2 {
    bottom: 20px;
    left: 10%;
    width: 45%;
    z-index: 1;
}

.sg-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .static-gallery {
        height: 400px;
        margin-bottom: 50px;
    }
}

@media (max-width: 575px) {
    .static-gallery {
        height: 300px;
    }
}

.step-content p {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== UTILITIES & MISC ===== */
.benefit-card {
    background: var(--light-bg);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3rem !important;
}

.benefit-card h2 {
    font-size: 32px !important;
}

.benefit-card p {
    font-size: 16px !important;
}

.accent-divider {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin-bottom: 24px;
}

.z-2 {
    z-index: 2;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.mt-18 {
    margin-top: 18px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.fst-italic {
    font-style: italic !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.highlight-box {
    background: rgba(255, 94, 20, 0.1);
    padding: 15px;
    border-radius: 8px;
}

/* ===== NEW BUTTONS ===== */
.btn-accent {
    background: var(--accent);
    color: #000;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-light-custom {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 28px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline-light-custom:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}

.cta-section a {
    text-decoration: none;
}

/* ============================================================
   ABOUT PAGE - CRAFTO-INSPIRED (cr- prefix)
   Clean, flat, no hover, no dark edges, warm off-white bg
   ============================================================ */

/* ===== SHARED ELEMENTS ===== */
.cr-tag-line {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cr-tag-dash {
    color: var(--accent);
}

.cr-btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #111;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background 0.25s;
}

.cr-btn-dark:hover {
    background: var(--primary);
    color: #fff;
}

.cr-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #111;
    padding: 13px 28px;
    border: 1.5px solid #ccc;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: border-color 0.25s, color 0.25s;
}

.cr-btn-outline:hover {
    border-color: #111;
    color: #111;
}

/* ===== 1. PAGE HERO ===== */
.cr-hero {
    background: #f5f5f0;
    padding: 100px 0 80px;
    border-bottom: 1px solid #e8e8e2;
}

.cr-hero-inner {
    max-width: 760px;
}

.cr-hero-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.cr-label-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.cr-label-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #666;
    text-transform: uppercase;
}

.cr-hero-title {
    font-size: 72px;
    font-weight: 800;
    color: #111;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 28px;
}

.cr-hero-title .cr-italic {
    font-style: italic;
    font-weight: 700;
    color: var(--primary);
}

.cr-hero-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
    max-width: 620px;
}

/* ===== 2. STATS SECTION ===== */
.cr-stats-section {
    background: #f5f5f0;
    padding: 0 0 90px;
}

.cr-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #ddddd6;
}

.cr-stat-col {
    padding: 48px 32px 40px;
    border-right: 1px solid #ddddd6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.cr-stat-col:first-child {
    padding-left: 0;
}

.cr-stat-col:last-child {
    border-right: none;
}

.cr-stat-label {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.cr-stat-num {
    font-size: 56px;
    font-weight: 900;
    color: #111;
    line-height: 1;
    letter-spacing: -2px;
    margin: 20px 0 0;
}

.cr-arrow {
    font-size: 28px;
    color: var(--accent);
    margin-right: 2px;
    vertical-align: middle;
}

/* ===== 3. AGENCY INTRO ===== */
.cr-intro-section {
    background: #fff;
    padding: 100px 0;
}

.cr-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cr-intro-images {
    position: relative;
    height: 520px;
}

.cr-img-main {
    position: absolute;
    right: 0;
    top: 0;
    width: 72%;
    height: 420px;
}

.cr-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cr-img-secondary {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 260px;
    border: 6px solid #fff;
}

.cr-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cr-intro-heading {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.cr-intro-para {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
}

.cr-intro-btns {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    flex-wrap: wrap;
}

/* ===== 4. CLIENT LOGOS ===== */
.cr-logos-section {
    background: #fff;
    padding: 50px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.cr-logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
}

.cr-logo-item {
    text-align: center;
    padding: 20px 24px;
    border-right: 1px solid #eee;
}

.cr-logo-item:last-child {
    border-right: none;
}

.cr-logo-text {
    font-size: 16px;
    font-weight: 700;
    color: #aaa;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    font-style: italic;
}

/* ===== 5. WHY CHOOSE US ===== */
.cr-why-section {
    background: #f5f5f0;
    padding: 100px 0;
}

.cr-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.cr-why-heading {
    font-size: 48px;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.cr-why-para {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.cr-skill-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 50px;
}

.cr-skill-item {
    display: block;
}

.cr-skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cr-skill-name {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    letter-spacing: 0.2px;
}

.cr-skill-pct {
    font-size: 12px;
    font-weight: 700;
    color: #222;
}

.cr-skill-bar {
    width: 100%;
    height: 3px;
    background: #ddddd6;
}

.cr-skill-fill {
    height: 100%;
    background: #111;
}

/* ===== 6. SERVICES GRID ===== */
.cr-services-section {
    background: #fff;
    padding: 100px 0;
}

.cr-services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.cr-services-heading {
    font-size: 44px;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 0;
}

.cr-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #eee;
}

.cr-svc-item {
    padding: 48px 36px 48px 0;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.cr-svc-item:nth-child(3),
.cr-svc-item:nth-child(6) {
    border-right: none;
}

.cr-svc-item:nth-child(4),
.cr-svc-item:nth-child(5),
.cr-svc-item:nth-child(6) {
    border-bottom: none;
}

.cr-svc-num {
    font-size: 11px;
    font-weight: 700;
    color: #aaa;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cr-svc-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.3;
}

.cr-svc-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

/* ===== 7. PROCESS STEPS ===== */
.cr-process-section {
    background: #f5f5f0;
    padding: 100px 0;
}

.cr-process-header {
    margin-bottom: 60px;
}

.cr-process-heading {
    font-size: 44px;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 0;
    max-width: 480px;
}

.cr-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #ddddd6;
}

.cr-step {
    padding: 48px 32px 48px 0;
    border-right: 1px solid #ddddd6;
}

.cr-step:last-child {
    border-right: none;
}

.cr-step-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.cr-step-count {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #aaa;
    flex-shrink: 0;
}

.cr-step-line {
    display: block;
    flex: 1;
    height: 1px;
    background: #ddddd6;
}

.cr-step-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
    line-height: 1.3;
}

.cr-step-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

/* ===== 8. FINAL CTA ===== */
.cr-cta-section {
    background: #fff;
    padding: 100px 0;
    border-top: 1px solid #eee;
}

.cr-cta-inner {
    text-align: center;
}

.cr-cta-heading {
    font-size: 56px;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 32px;
}

.cr-cta-link {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1.5px;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.cr-cta-link:hover {
    color: var(--accent);
}

.cr-cta-arrow {
    font-size: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .cr-hero-title {
        font-size: 52px;
    }

    .cr-why-heading {
        font-size: 36px;
    }

    .cr-why-grid {
        gap: 60px;
    }

    .cr-services-heading {
        font-size: 34px;
    }
}

@media (max-width: 900px) {
    .cr-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cr-stat-col:nth-child(2) {
        border-right: none;
    }

    .cr-stat-col:nth-child(3) {
        border-top: 1px solid #ddddd6;
    }

    .cr-intro-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .cr-intro-images {
        height: 340px;
    }

    .cr-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cr-services-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cr-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cr-svc-item:nth-child(2),
    .cr-svc-item:nth-child(4) {
        border-right: none;
    }

    .cr-svc-item:nth-child(3) {
        border-right: 1px solid #eee;
    }

    .cr-svc-item:nth-child(5),
    .cr-svc-item:nth-child(6) {
        border-bottom: none;
    }

    .cr-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .cr-step:nth-child(2) {
        border-right: none;
    }

    .cr-step:nth-child(3) {
        border-top: 1px solid #ddddd6;
    }

    .cr-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cr-logo-item:nth-child(3) {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .cr-hero {
        padding: 60px 0 50px;
    }

    .cr-hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .cr-why-heading {
        font-size: 28px;
    }

    .cr-stat-num {
        font-size: 40px;
    }

    .cr-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cr-services-grid {
        grid-template-columns: 1fr;
    }

    .cr-svc-item {
        border-right: none;
    }

    .cr-process-steps {
        grid-template-columns: 1fr;
    }

    .cr-step {
        border-right: none;
        border-bottom: 1px solid #ddddd6;
    }

    .cr-step:last-child {
        border-bottom: none;
    }

    .cr-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cr-logo-item:nth-child(2) {
        border-right: none;
    }

    .cr-cta-heading {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .cr-intro-btns {
        flex-direction: column;
    }

    .cr-skill-list {
        padding-top: 20px;
    }
}

/* ===== REDESIGNED SECTIONS (MODERN) ===== */
.option-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 4px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.option-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.option-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111;
}

.option-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.stats-info-row {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #eee;
}

.stat-unit {
    text-align: center;
}

.stat-unit .num {
    font-size: 3.5rem;
    font-weight: 900;
    color: #111;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-unit .stars {
    color: #111;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-unit .label {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

.divider-col {
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}

@media (max-width: 767px) {
    .divider-col {
        border: none;
    }
}

/* Vertical Steps Redesign */
.campaign-steps-v {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.step-v-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-v-number {
    width: 60px;
    height: 60px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-v-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.5rem;
}

.step-v-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Video Thumb Wrap */
.video-thumb-wrap {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.video-thumb-wrap img {
    width: 100%;
    transition: transform 0.5s ease;
}

.video-thumb-wrap:hover img {
    transform: scale(1.05);
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 1.2rem 2rem;
    border-radius: 4rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.play-btn-overlay:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.play-btn-overlay i {
    font-size: 0.9rem;
}

.play-btn-overlay span {
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}