/* ==========================================================================
   AMERICAN AUTHOR HUB - MATCHING BLUEPRINT DESIGN SYSTEM
   Red & Dark Navy Theme | Smooth Animations | Clean Cards
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* Brand Colors matching Reference Layout */
    --brand-red: #9F0B07;
    --brand-red-dark: #820805;
    --brand-red-light: #c4120e;
    --brand-navy: #001529;
    --brand-navy-light: #002768;

    /* Theme Neutrals */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --text-dark: #001529; /* Refined to brand dark navy */
    --text-body: #334155;
    --text-muted: #64748b;
    --border-color: rgba(226, 232, 240, 0.9);

    /* Shadows & Radii */
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 45px rgba(159, 11, 7, 0.12);
    --radius-pill: 8px; /* Changed to 8px for rounded rectangle design */
    --radius-card: 16px;

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', 'Outfit', 'Poppins', sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Poppins', sans-serif;
}

/* Preloader Styling */
#preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.spinner-wrapper {
    text-align: center;
    position: relative;
}

.loader-logo {
    height: 60px;
    margin-bottom: 20px;
    animation: pulseGlow 1.5s ease-in-out infinite;
}

.loader-spinner {
    width: 44px;
    height: 44px;
    margin: 0 auto;
    border: 3px solid rgba(0, 39, 104, 0.1);
    border-top-color: #9F0B07;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.85; }
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body) !important;
    background-color: var(--bg-white) !important;
    color: var(--text-dark) !important;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading) !important;
    color: var(--text-dark);
    font-weight: 700;
}

/* Top Accent Line */
.top-accent-line {
    height: 4px;
    background: var(--brand-red);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
}

/* Navbar */
header.sticky-header {
    position: sticky !important;
    top: 4px !important;
    z-index: 1050 !important;
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.nav-link-item {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #001529 !important; /* Premium Dark Navy */
    text-decoration: none !important;
    padding: 8px 14px !important;
    transition: color 0.3s ease !important;
    position: relative !important;
}

.nav-link-item:hover {
    color: var(--brand-red) !important;
}

.nav-link-item.active {
    color: #001529 !important; /* Keep navy for active, highlight with line */
}

.nav-link-item.active::after {
    content: '';
    position: absolute;
    bottom: -15px; /* Sits nicely below in the header */
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 3.5px;
    background: var(--brand-red);
    border-radius: 99px;
}

/* Red Button (Rounded Rectangle) */
.btn-red-pill {
    background: var(--brand-red) !important;
    color: #ffffff !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    padding: 12px 26px !important;
    border-radius: 8px !important;
    border: none;
    box-shadow: 0 4px 14px rgba(159, 11, 7, 0.2);
    transition: all 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
}

.btn-red-pill:hover {
    background: var(--brand-red-dark) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(159, 11, 7, 0.3);
}

/* White Button / Brand Outline (Rounded Rectangle) */
.btn-white-pill, .btn-brand-outline {
    background: #ffffff !important;
    color: #001529 !important; /* Dark Navy text */
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    padding: 12px 26px !important;
    border-radius: 8px !important;
    border: 1px solid #001529 !important; /* Dark Navy outline */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
}

.btn-white-pill:hover, .btn-brand-outline:hover {
    background: #f8fafc !important;
    color: var(--brand-red) !important;
    border-color: var(--brand-red) !important;
    transform: translateY(-2px);
}

/* Red Section Banner - Redesigned to Premium Floating Layout */
.bg-red-banner {
    background: #ffffff !important;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.premium-cta-card {
    background: linear-gradient(135deg, #060c1d 0%, #14122d 45%, #7a0907 100%);
    border-radius: 30px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(122, 9, 7, 0.2);
    z-index: 1;
}

/* Ambient glow blobs inside CTA */
.premium-cta-card::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(159, 11, 7, 0.25);
    border-radius: 50%;
    bottom: -100px;
    left: -50px;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.premium-cta-card::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(0, 39, 104, 0.4);
    border-radius: 50%;
    top: -120px;
    right: -60px;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.premium-cta-card .cta-content-wrapper {
    position: relative;
    z-index: 2;
}

/* Glass badge */
.premium-cta-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.premium-cta-card h3 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* CTA buttons override */
.btn-cta-primary {
    background: var(--brand-red) !important;
    color: #ffffff !important;
    border: 1px solid var(--brand-red) !important;
    border-radius: 50px !important;
    padding: 14px 32px !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(159, 11, 7, 0.4) !important;
    text-decoration: none !important;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(159, 11, 7, 0.55) !important;
    filter: brightness(1.1);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 50px !important;
    padding: 14px 32px !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.35s ease;
    backdrop-filter: blur(5px);
    text-decoration: none !important;
}

.btn-cta-secondary:hover {
    background: #ffffff !important;
    color: var(--brand-navy) !important;
    border-color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15) !important;
}

/* Feature Box */
.feature-box-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-card);
    padding: 24px;
    box-shadow: var(--shadow-card);
    transition: all 0.35s ease;
    height: 100%;
}

.feature-box-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(159, 11, 7, 0.2);
}

.feature-icon-red {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(159, 11, 7, 0.08);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

/* Dark Navy Footer - Redesigned to Premium Layout */
footer.dark-footer {
    background: #000f24 !important; /* Premium dark navy */
    color: #94a3b8 !important;
    position: relative;
    overflow: hidden;
}

footer.dark-footer h5 {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    position: relative;
    padding-bottom: 12px;
}

footer.dark-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2.5px;
    background: var(--brand-red);
}

footer.dark-footer a {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

footer.dark-footer a:hover {
    color: var(--brand-red) !important;
    padding-left: 3px;
}

.social-circle-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-circle-icon:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(159, 11, 7, 0.3);
}

/* Footer contact list items */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-icon-box {
    width: 38px;
    height: 38px;
    background: var(--brand-red);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(159, 11, 7, 0.2);
}

.footer-contact-value {
    color: #cbd5e1 !important;
    font-size: 14px;
    line-height: 1.4;
}

a.footer-contact-value:hover {
    color: var(--brand-red) !important;
}

/* Footer Bottom Strip privacy matters style */
.footer-privacy-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-privacy-text {
    font-size: 12.5px;
    color: #94a3b8;
    margin-bottom: 0;
    line-height: 1.4;
}
}

/* Dropdown Menu Position Fix */
.dd-link-wrapper {
    position: relative;
}

.custom-dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 700px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 24px 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s ease;
    z-index: 1200;
}

.dd-link-wrapper:hover .custom-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(5px);
}

/* Professional dropdown items styling */
.dropdown-item-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    color: #001529 !important; /* Brand dark navy */
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.dropdown-item-link:hover {
    background-color: rgba(159, 11, 7, 0.05) !important;
    color: var(--brand-red) !important;
    transform: translateX(4px);
}

.dropdown-item-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.dropdown-item-link:hover img {
    transform: scale(1.15);
}

/* ==========================================================================
   FontAwesome Icon Fix overrides
   ========================================================================== */
.fa, .fas, .fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}
.far, .fa-regular {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
}
.fab, .fa-brands {
    font-family: "Font Awesome 6 Brands" !important;
}
.fal, .fa-light {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 300 !important;
}
.fad, .fa-duotone {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

/* ==========================================================================
   Premium Refined Colors & Typography Overrides
   ========================================================================== */
.text-dark {
    color: var(--text-dark) !important;
}

/* Premium gradient mesh background for the Hero Section */
.hero-bg-ref {
    background: 
        radial-gradient(circle at 85% 20%, rgba(159, 11, 7, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 15% 80%, rgba(0, 39, 104, 0.03) 0%, transparent 55%),
        #ffffff !important;
    position: relative;
}

/* Hero section typography match */
.hero-subtitle {
    color: var(--brand-red) !important;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    letter-spacing: 0.06em !important;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 2.8rem !important; /* Adjusted to fit layout on standard desktops */
    font-weight: 800 !important;
    color: #001529 !important; /* Dark Navy matching mockup */
    line-height: 1.22 !important;
    letter-spacing: -0.015em !important;
}

.hero-title .text-brand-red {
    color: var(--brand-red) !important;
}

.hero-paragraph {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: #64748b !important; /* text-muted */
    font-size: 15.5px !important;
    font-weight: 400 !important;
    line-height: 1.62 !important;
}

/* Hero statistics row styling */
.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 20px; /* Reduced to fit in single row */
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid rgba(226, 232, 240, 0.7);
    flex-wrap: nowrap; /* Prevent stacking on desktop */
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.stat-icon-wrapper {
    font-size: 20px;
    color: #002768;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.stat-icon-wrapper.text-warning {
    color: #f59e0b !important; /* Beautiful gold star */
}

.stat-value {
    font-weight: 700;
    font-size: 14.5px;
    color: #001529;
    line-height: 1.25;
}

.stat-value.text-brand-red {
    color: var(--brand-red) !important;
}

.stat-label {
    color: #64748b;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 28px;
    background-color: rgba(226, 232, 240, 0.9);
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 3.2rem !important; /* Slightly larger on very wide screens */
    }
    .hero-stats-row {
        gap: 24px;
    }
}

@media (max-width: 991px) {
    .hero-stats-row {
        flex-wrap: wrap !important;
        gap: 16px;
    }
    .stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.3rem !important;
    }
}

/* Floating animation for the hero image */
.hero-floating-image {
    animation: floatUpDown 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* About Section Core Strength Cards */
.about-strength-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    height: 100%;
}

.about-strength-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(159, 11, 7, 0.08);
    border-color: rgba(159, 11, 7, 0.25);
    background-color: #fffafb;
}

.about-strength-card .card-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(159, 11, 7, 0.06);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-strength-card:hover .card-icon-circle {
    background: var(--brand-red);
    color: #ffffff;
}

.about-strength-card .strength-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--brand-navy);
    font-size: 14px;
    line-height: 1.3;
}

@media (max-width: 576px) {
    .about-strength-card {
        padding: 10px 12px;
    }
    .about-strength-card .card-icon-circle {
        width: 26px;
        height: 26px;
        font-size: 11px;
        margin-right: 8px;
    }
    .about-strength-card .strength-title {
        font-size: 12px;
    }
}

/* What We Do - Services Slider Styling */
.what-we-slider {
    margin: 0 -15px;
}

.what-we-slider .slick-slide {
    padding: 20px 0 35px; /* space for shadows to breathe */
}

.what-we-slider .slick-list {
    overflow: visible;
    clip-path: inset(-20px 0 -35px 0);
}

.what-we-slider .feature-box-card {
    height: 330px !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-box-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 275px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.feature-box-card .feature-icon-red img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box-card:hover .feature-icon-red img {
    transform: scale(1.15) rotate(4deg);
}

.feature-box-card .feature-icon-red {
    transition: background-color 0.35s ease, transform 0.35s ease;
}

.feature-box-card:hover .feature-icon-red {
    background-color: var(--brand-red);
    transform: scale(1.05);
}

/* Invert colors of icon images on hover if they are black/transparent in the assets */
.feature-box-card:hover .feature-icon-red img {
    filter: brightness(0) invert(1);
}

.feature-box-card .learn-more-link {
    color: var(--brand-red);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease, gap 0.3s ease;
    gap: 6px;
}

.feature-box-card .learn-more-link:hover {
    color: var(--brand-navy);
    gap: 10px;
}

/* Redesigned Split Why Choose Us (Light Theme) */
.why-choose-us-sec {
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.why-choose-us-sec::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(159, 11, 7, 0.035) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    pointer-events: none;
}

.why-choose-us-sec::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 39, 104, 0.03) 0%, transparent 70%);
    bottom: -200px;
    right: -100px;
    pointer-events: none;
}

/* Grid Cards */
.why-card-modern {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 24px;
    box-shadow: 0 4px 20px rgba(0, 39, 104, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    z-index: 1;
}

.why-card-modern:hover {
    transform: translateY(-6px);
    border-color: rgba(159, 11, 7, 0.25);
    box-shadow: 0 15px 35px rgba(159, 11, 7, 0.08);
}

.why-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(159, 11, 7, 0.05);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(159, 11, 7, 0.1);
}

.why-card-modern:hover .why-card-icon {
    background: var(--brand-red);
    color: #ffffff;
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 6px 15px rgba(159, 11, 7, 0.35);
}

.why-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--brand-navy);
    margin-bottom: 10px;
}

.why-card-text {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Image Visual Wrapper */
.why-visual-wrapper {
    position: relative;
    padding: 10px;
    display: inline-block;
}

.why-mockup-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 530px;
    height: auto;
    mix-blend-mode: multiply;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-visual-wrapper:hover .why-mockup-img {
    transform: translateY(-6px) scale(1.025);
}

@media (max-width: 991px) {
    .why-visual-wrapper {
        margin-top: 40px;
    }
}

/* ==========================================================
   PREMIUM CONTACT SECTION STYLING
   ========================================================== */
.contact-section-premium {
    background: #ffffff;
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

/* Background grid dot matrix and radial glows */
.contact-section-premium::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(159, 11, 7, 0.035) 0%, transparent 70%);
    top: 5%;
    left: -10%;
    pointer-events: none;
    z-index: 0;
}

.contact-dot-pattern {
    position: absolute;
    bottom: 40px;
    left: 20px;
    width: 100px;
    height: 120px;
    background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.contact-section-premium .banner-head {
    text-align: center;
    margin-bottom: 55px;
    position: relative;
    z-index: 2;
}

.contact-section-premium .banner-head span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-red);
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-section-premium .banner-head h2 {
    color: var(--brand-navy);
    font-size: 42px;
    font-weight: 800;
    margin-top: 8px;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.contact-section-premium .testi-sub {
    color: #64748b;
    max-width: 700px;
    margin: 12px auto 0;
    font-size: 15.5px;
    line-height: 1.6;
}

.contact-header-divider {
    margin-top: 15px;
    color: var(--brand-red);
    font-size: 14px;
    letter-spacing: 4px;
}

/* Left Column: Get in touch content */
.contact-left-wrapper {
    position: relative;
    z-index: 1;
}

.contact-left-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.contact-left-title::after {
    content: '';
    display: block;
    width: 45px;
    height: 3px;
    background: var(--brand-red);
    margin-top: 8px;
}

.contact-left-text {
    font-family: var(--font-body);
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Contact List Items */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(159, 11, 7, 0.06);
    color: var(--brand-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon-box {
    background: var(--brand-red);
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-info-details {
    display: flex;
    flex-direction: column;
}

.contact-info-label {
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 3px;
}

.contact-info-value {
    font-family: var(--font-body);
    font-size: 14px;
    color: #334155;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.contact-info-value:hover {
    color: var(--brand-red);
}

/* Privacy card at bottom of left column */
.contact-privacy-card {
    background: #0b1c33;
    border-radius: 14px;
    padding: 22px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 10px 25px rgba(11, 28, 51, 0.15);
}

.contact-privacy-icon-box {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #38bdf8;
    flex-shrink: 0;
}

.contact-privacy-content {
    display: flex;
    flex-direction: column;
}

.contact-privacy-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 3px;
    color: #ffffff !important;
}

.contact-privacy-text {
    font-family: var(--font-body);
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Right Column: Premium Form Card */
.contact-premium-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 15px 40px rgba(0, 39, 104, 0.045);
    position: relative;
    z-index: 1;
}

.contact-form-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 28px;
}

.contact-form-header-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(159, 11, 7, 0.05);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-form-header-text {
    display: flex;
    flex-direction: column;
}

.contact-form-header-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: var(--brand-navy);
    margin-bottom: 2px;
}

.contact-form-header-subtitle {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #64748b;
    margin-bottom: 0;
}

/* Custom form fields with icon inside input */
.form-group-custom {
    margin-bottom: 20px;
}

.form-group-custom label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13.5px;
    color: var(--brand-navy);
    margin-bottom: 8px;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14.5px;
    transition: color 0.3s ease;
}

.input-icon-wrapper i.textarea-icon {
    position: absolute;
    left: 16px;
    top: 18px !important;
    transform: none !important;
    color: #94a3b8;
    font-size: 14.5px;
    transition: color 0.3s ease;
}

.input-icon-wrapper .form-control {
    padding-left: 45px;
    height: 52px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    font-size: 14px;
    color: var(--brand-navy);
    font-weight: 500;
    transition: all 0.3s ease;
}

.input-icon-wrapper textarea.form-control {
    padding-top: 14px;
    height: auto;
}

.input-icon-wrapper .form-control::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.input-icon-wrapper .form-control:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 4px rgba(159, 11, 7, 0.08);
    background: #ffffff;
    outline: none;
}

.input-icon-wrapper .form-control:focus + i,
.input-icon-wrapper .form-control:focus + textarea-icon {
    color: var(--brand-red);
}

.btn-contact-submit {
    background: var(--brand-red) !important;
    color: #ffffff !important;
    border: 1px solid var(--brand-red) !important;
    border-radius: 10px !important;
    width: 100%;
    height: 54px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 18px rgba(159, 11, 7, 0.2) !important;
    margin-top: 10px;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(159, 11, 7, 0.35) !important;
    filter: brightness(1.05);
}

@media (max-width: 991px) {
    .contact-left-wrapper {
        margin-bottom: 50px;
    }
    .contact-premium-form-card {
        padding: 30px 20px;
    }
}

/* ==========================================
   OUR WORK PORTFOLIO GRID STYLING
   ========================================== */
.our-work-sec {
    background: #f8fafc;
    position: relative;
    padding: 80px 0;
}

.our-work-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.our-work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border-color: rgba(159, 11, 7, 0.2);
}

.our-work-img-wrapper {
    position: relative;
    background: radial-gradient(circle at center, #ffffff 0%, #f1f5f9 100%);
    padding: 50px 20px 25px 20px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.our-work-img-wrapper img {
    max-height: 270px;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

.our-work-card:hover .our-work-img-wrapper img {
    transform: scale(1.06) translateY(-4px);
}

.our-work-badge {
    position: absolute;
    top: 15px;
    left: 18px;
    background: var(--brand-navy);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 21, 41, 0.2);
    z-index: 5;
    white-space: nowrap;
    line-height: 1.2;
}

.our-work-body {
    padding: 24px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.our-work-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 8px;
}

.our-work-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 18px;
}

.our-work-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
    margin-top: auto;
}

.our-work-rating {
    color: #f59e0b;
    font-size: 13px;
    font-weight: 700;
}

.our-work-btn {
    color: var(--brand-red);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.our-work-btn:hover {
    color: var(--brand-navy);
    transform: translateX(4px);
}

/* ==========================================
   SINGLE SERVICE PAGE STYLING
   ========================================== */
.service-spotlight-img-frame {
    position: relative;
    border-radius: 24px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    display: inline-block;
    width: 100%;
}

.service-spotlight-img-frame img {
    border-radius: 16px;
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.service-highlight-bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.service-highlight-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(159, 11, 7, 0.1);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-highlight-text {
    font-size: 15px;
    color: #334155;
    font-weight: 500;
    line-height: 1.5;
}



