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

html,
body {
    height: 100%;
}

/* Floating elements fade-in after CSS loads */
.floating-elements,
.float-element {
    opacity: 1;
    animation: fadeInFloat 0.8s ease-out;
}

@keyframes fadeInFloat {
    from { opacity: 0; }
    to { opacity: 1; }
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.cta-button,
.nav-links a,
.footer-column h3 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    letter-spacing: 0.03em;
}

header {
    background: #fff;
    padding: 0.2rem 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
     height: auto!important;
    display: block;
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: none;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #f70303;
}

.nav-signup {
    padding: 0.75rem 2.2rem;
    min-width: 150px;
    text-align: center;
    border: 2px solid #f70303;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #333 !important;
    background: transparent;
    transition: color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.nav-signup:hover {
    color: #f70303 !important;
    box-shadow: 0 6px 16px rgba(255, 31, 61, 0.18);
    transform: translateY(-2px);
}

.nav-login {
    padding: 0.6rem 1.5rem;
    min-width: auto;
    text-align: center;
    border: 2px solid #f70303;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #333 !important;
    background: transparent;
    transition: color 0.3s, transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
    font-size: 0.85rem;
}

.nav-login:hover {
    color: #f70303 !important;
    box-shadow: 0 6px 16px rgba(255, 31, 61, 0.18);
    transform: translateY(-2px);
}

/* Dropdown Menu Styles */
.nav-links li.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 2rem;
    min-width: 800px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    transform: translateX(-50%) translateY(-10px);
    z-index: 1000;
    margin-top: 1rem;
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.mega-menu-single-column {
    min-width: 300px;
}

.mega-menu-content-single {
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.mega-menu-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    transition: background 0.3s, transform 0.3s;
    text-align: left;
}

.mega-menu-item:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.mega-menu-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f70303;
    flex-shrink: 0;
}

.mega-menu-icon svg {
    width: 32px;
    height: 32px;
}

.mega-menu-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
    flex: 1;
}

.mega-menu-item:hover span {
    color: #f70303;
}

main {
    flex: 1;
}

/* ===============================
   Agency Hero Section - New Design
   =============================== */
.agency-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 50%, #f0f2f8 100%);
    padding: 6rem 2rem 4rem;
}

/* Background Layers */
.hero-bg-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    transition: transform 0.3s ease-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(247, 3, 3, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: orbFloat1 15s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247, 3, 3, 0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: orbFloat2 18s ease-in-out infinite reverse;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation: orbFloat3 20s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 40px) scale(1.1); }
    66% { transform: translate(20px, -30px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -40px) scale(1.15); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 30px); }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.float-element {
    position: absolute;
    transition: transform 0.1s ease-out;
}

.fe-1 {
    width: 80px;
    top: 15%;
    left: 10%;
    animation: float1 8s ease-in-out infinite;
}

.fe-2 {
    width: 60px;
    top: 25%;
    right: 15%;
    animation: float2 10s ease-in-out infinite;
}

.fe-3 {
    width: 100px;
    bottom: 20%;
    left: 5%;
    animation: float3 12s ease-in-out infinite;
}

.fe-4 {
    width: 40px;
    top: 60%;
    right: 10%;
    animation: float4 9s ease-in-out infinite;
}

.fe-5 {
    width: 80px;
    bottom: 30%;
    right: 25%;
    animation: float5 11s ease-in-out infinite;
}

.fe-6 {
    top: 20%;
    right: 30%;
}

.fe-7 {
    bottom: 40%;
    left: 15%;
}

.fe-8 {
    top: 60%;
    right: 8%;
    animation: float3 13s ease-in-out infinite;
}

.fe-9 {
    top: 35%;
    left: 8%;
    animation: float4 10s ease-in-out infinite;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #f70303;
    border-radius: 50%;
    position: relative;
    animation: pulseDot 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(247, 3, 3, 0.3);
}

.pulse-dot::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(247, 3, 3, 0.3);
    border-radius: 50%;
    animation: pulseRing 2s ease-in-out infinite;
}

.pulse-dot.small {
    width: 8px;
    height: 8px;
}

.pulse-dot.small::before {
    inset: -6px;
}

@keyframes float1 { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(10deg); } }
@keyframes float2 { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(25px) rotate(-8deg); } }
@keyframes float3 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-30px); } }
@keyframes float4 { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(20px) scale(1.1); } }
@keyframes float5 { 0%, 100% { transform: translateY(0) rotate(45deg); } 50% { transform: translateY(-15px) rotate(55deg); } }

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* Main Content */
.agency-hero-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.4rem;
    background: rgba(247, 3, 3, 0.1);
    border: 1px solid rgba(247, 3, 3, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #f70303;
    text-transform: uppercase;
    animation: badgeFade 0.8s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #f70303;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

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

/* Title */
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #101323;
    margin: 0;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    overflow: hidden;
}

.line-1 {
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.line-2 {
    animation: slideUp 0.8s ease-out 0.4s backwards;
}

.line-3 {
    animation: slideUp 0.8s ease-out 0.6s backwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
    
}

.highlight {
    background: linear-gradient(135deg, #f70303 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    right: 0;
    height: 0.08em;
    background: linear-gradient(90deg, #f70303, #ff6b6b);
    border-radius: 2px;
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #5a5d72;
    max-width: 700px;
    line-height: 1.7;
    margin: 0;
    animation: fadeIn 1s ease-out 0.8s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeIn 1s ease-out 1s backwards;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    background: linear-gradient(135deg, #f70303 0%, #d10000 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(247, 3, 3, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff4444 0%, #f70303 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(247, 3, 3, 0.5);
}

.cta-primary:hover::before {
    opacity: 1;
}

.cta-primary span,
.cta-primary svg {
    position: relative;
    z-index: 1;
}

.cta-primary svg {
    transition: transform 0.3s ease;
}

.cta-primary:hover svg {
    transform: translateX(4px);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1.1rem 2.5rem;
    background: transparent;
    color: #101323;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 2px solid rgba(16, 19, 35, 0.2);
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    border-color: #f70303;
    color: #f70303;
    background: rgba(247, 3, 3, 0.05);
    transform: translateY(-3px);
}

/* Stats Row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 2rem 3rem;
    background: #fff;
    border: 1px solid #ececf3;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(16, 19, 35, 0.08);
    margin-top: 1rem;
    animation: fadeIn 1s ease-out 1.2s backwards;
}

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

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #101323;
    line-height: 1;
}

.stat-plus {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f70303;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #5a5d72;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #ececf3;
}

/* Trusted Logos */
.hero-trusted {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    animation: fadeIn 1s ease-out 1.4s backwards;
}

.trusted-label {
    font-size: 0.8rem;
    color: #8a8d9e;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.trusted-logos {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trusted-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #b5b8c5;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.trusted-logo:hover {
    color: #101323;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    animation: fadeIn 1s ease-out 1.6s backwards;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(16, 19, 35, 0.2);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #f70303;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: #8a8d9e;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Mouse Glow */
.mouse-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247, 3, 3, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

/* Responsive */
@media (max-width: 1024px) {
    .agency-hero {
        padding: 5rem 1.5rem 3rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        padding: 1.5rem 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .float-element {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .agency-hero {
        min-height: auto;
        padding: 5rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem 2rem;
        justify-content: center;
        padding: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .trusted-logos {
        gap: 1.25rem;
    }
    
    .trusted-logo {
        font-size: 0.75rem;
    }
    
    .floating-elements {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .mouse-glow {
        display: none;
    }
}

@media (max-width: 480px) {
    .agency-hero {
        padding: 4rem 1rem 2.5rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* Old Hero (keeping for compatibility) */
.hero {
    padding: 4rem 2rem 6rem;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fe 65%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
}

/* Mobile Hero Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 1rem 3rem;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content h1 strong {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .hero-dashboard {
        padding: 1rem;
        border-radius: 16px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .dashboard-card {
        padding: 1rem;
    }
    
    .dashboard-top {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .dashboard-top h3 {
        font-size: 1rem;
    }
    
    .cta-link {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 0.75rem 2rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 strong {
        font-size: 1.25rem;
    }
    
    .hero-content p {
        font-size: 0.85rem;
    }
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    text-align: center;
}

.hero-layout {
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
}

.hero-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-logo-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-logo-mark {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff4f6d, #f70303);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
}

.hero-logo-text {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    color: #2c3e50;
}

.hero-logo-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: #f70303;
}

.hero-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-nav a {
    text-decoration: none;
    font-weight: 500;
    color: #4d4d4d;
    transition: color 0.3s;
}

.hero-nav a.active,
.hero-nav a:hover {
    color: #f70303;
}

.outline-button {
    padding: 0.9rem 2.5rem;
    border: 2px solid #f70303;
    border-radius: 50px;
    background: transparent;
    color: #f70303;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.outline-button:hover {
    background: #f70303;
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 33, 96, 0.25);
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-eyebrow {
    letter-spacing: 0.5em;
    font-size: 0.75rem;
    color: #f70303;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 300;
    color: #000;
    line-height: 1.25;
}

.hero h1 span {
    display: block;
    font-weight: 600;
    letter-spacing: 0.15em;
}

.hero h1 strong {
    display: block;
    font-size: clamp(2.4rem, 6vw, 3rem);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.hero p {
    font-size: 1.1rem;
    color: #5a5d72;
    max-width: 760px;
    margin: 0 auto;
}

.cta-link {
    text-transform: uppercase;
    letter-spacing: 0.55em;
    color: #f70303;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.cta-link::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #f70303;
}

.hero-dashboard {
    background: #fdfdff;
    border-radius: 32px;
    padding: 2rem;
    box-shadow: 0 40px 70px rgba(35, 47, 85, 0.1);
    width: 100%;
    margin-top: 1rem;
}

/* Hero 24-Hour Process Illustration */
.hero-process-illustration {
    width: 100%;
    max-width: 1100px;
    margin: 3rem auto 0;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
    border: 1px solid #ececf3;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(35, 47, 85, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-process-illustration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f70303, #ff4f6d, #10b981, #f70303);
    background-size: 300% 100%;
    animation: gradientFlow 4s ease infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* 24 Hours Badge */
.process-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f70303, #ff4f6d);
    color: #fff;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(247, 3, 3, 0.35);
    z-index: 10;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.badge-icon {
    font-size: 1.1rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    font-family: 'Montserrat', sans-serif;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 2rem 0 1rem;
    position: relative;
    flex-wrap: nowrap;
}

/* Process Step */
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 0.75rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    min-width: 120px;
    flex-shrink: 0;
}

.process-step:hover {
    transform: translateY(-8px);
}

.process-step:hover .step-icon {
    transform: scale(1.15);
    box-shadow: 0 12px 30px rgba(247, 3, 3, 0.25);
}

/* Step Icon */
.step-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(145deg, #fff, #f8f9ff);
    border: 2px solid #ececf3;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f70303;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(35, 47, 85, 0.08);
}

.step-icon svg {
    width: 38px;
    height: 38px;
}

.step-icon.approved-icon {
    background: linear-gradient(145deg, #ecfdf5, #d1fae5);
    border-color: #10b981;
    color: #10b981;
}

.step-icon.published-icon {
    background: linear-gradient(135deg, #f70303, #ff4f6d);
    border-color: #f70303;
    color: #fff;
}

/* Step Content */
.step-content {
    text-align: center;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #101323;
    margin: 0 0 0.25rem;
    font-family: 'Montserrat', sans-serif;
}

.step-content p {
    font-size: 0.8rem;
    color: #5a5d72;
    margin: 0;
    font-weight: 500;
}

/* Step Number */
.step-number {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.7rem;
    font-weight: 800;
    color: #d0d0d8;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

/* Highlight Step */
.highlight-step {
    background: linear-gradient(145deg, rgba(247, 3, 3, 0.08), rgba(255, 79, 109, 0.05));
    border: 1px solid rgba(247, 3, 3, 0.15);
}

.highlight-step .step-content h4 {
    color: #f70303;
}

.highlight-step .step-number {
    color: #f70303;
}

/* Process Connector */
.process-connector {
    width: 40px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d0d5dd;
    flex-shrink: 0;
}

@media (min-width: 769px) {
    .process-connector {
        display: flex !important;
    }
}

.process-connector svg {
    width: 100%;
    height: 100%;
}

.connector-line {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: drawLine 1.5s ease forwards;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.process-step[data-step="1"] { animation: fadeSlideIn 0.5s ease 0.2s backwards; }
.process-step[data-step="2"] { animation: fadeSlideIn 0.5s ease 0.4s backwards; }
.process-step[data-step="3"] { animation: fadeSlideIn 0.5s ease 0.6s backwards; }
.process-step[data-step="4"] { animation: fadeSlideIn 0.5s ease 0.8s backwards; }

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Decorations */
.process-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-dot {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #f70303, #ff4f6d);
    opacity: 0.15;
}

.dot-1 {
    width: 120px;
    height: 120px;
    top: -40px;
    right: -30px;
    animation: floatDot 6s ease-in-out infinite;
}

.dot-2 {
    width: 80px;
    height: 80px;
    bottom: -20px;
    left: 10%;
    animation: floatDot 8s ease-in-out infinite reverse;
}

.dot-3 {
    width: 50px;
    height: 50px;
    top: 50%;
    left: -15px;
    animation: floatDot 5s ease-in-out infinite 1s;
}

@keyframes floatDot {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

/* Hero Process Responsive */
@media (max-width: 1024px) {
    .hero-process-illustration {
        padding: 2rem 1rem;
        margin: 2.5rem auto 0;
    }
    
    .process-step {
        min-width: 100px;
        padding: 0.75rem 0.5rem;
    }
    
    .step-icon {
        width: 54px;
        height: 54px;
    }
    
    .step-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .process-connector {
        width: 25px;
    }
    
    .step-content h4 {
        font-size: 0.85rem;
    }
    
    .step-content p {
        font-size: 0.7rem;
    }
}

@media (min-width: 601px) and (max-width: 850px) {
    .hero-process-illustration {
        padding: 2rem 0.75rem;
    }
    
    .process-step {
        min-width: 85px;
        padding: 0.6rem 0.4rem;
    }
    
    .step-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }
    
    .step-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .process-connector {
        width: 18px;
    }
    
    .step-content h4 {
        font-size: 0.75rem;
    }
    
    .step-content p {
        font-size: 0.6rem;
    }
    
    .step-number {
        display: none;
    }
    
    .process-badge {
        padding: 0.4rem 1rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 600px) {
    .hero-process-illustration {
        padding: 2.5rem 1rem 1.5rem;
        margin: 2rem auto 0;
        border-radius: 20px;
    }
    
    .process-badge {
        padding: 0.5rem 1.2rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .process-timeline {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 1.5rem 0 0.5rem;
    }
    
    .process-step {
        min-width: calc(50% - 1rem);
        flex: 1 1 calc(50% - 1rem);
        padding: 1rem;
    }
    
    .process-connector {
        display: none;
    }
    
    .step-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }
    
    .step-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .step-content h4 {
        font-size: 0.85rem;
    }
    
    .step-content p {
        font-size: 0.7rem;
    }
    
    .floating-dot {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-process-illustration {
        padding: 2rem 0.75rem 1rem;
        margin: 1.5rem 0.5rem 0;
        border-radius: 16px;
    }
    
    .process-badge {
        padding: 0.4rem 1rem;
        top: -10px;
    }
    
    .badge-icon {
        font-size: 0.9rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }
    
    .process-step {
        min-width: calc(50% - 0.5rem);
        padding: 0.75rem 0.5rem;
    }
    
    .step-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }
    
    .step-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .step-content h4 {
        font-size: 0.8rem;
    }
    
    .step-content p {
        font-size: 0.65rem;
    }
    
    .step-number {
        font-size: 0.6rem;
    }
}

.alt-section {
    padding: 4rem 2rem 5rem;
}

.alt-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.alt-block {
    border-radius: 28px;
    padding: 2.5rem;
    color: #1d1d1d;
}

.alt-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.alt-block p {
    color: #4b4f63;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.alt-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    color: #2a2f45;
    font-weight: 500;
}

.alt-block ul li::before {
    content: '•';
    color: #f70303;
    margin-right: 0.65rem;
}

.alt-block.dark {
    background: linear-gradient(135deg, #F70303, #000000);
    color: #f6f5ff;
}

.alt-block.dark p,
.alt-block.dark ul {
    color: #d8d4ff;
}

.alt-block.dark ul li::before {
    color: #ff6fa5;
}

.alt-block.light {
    background: linear-gradient(135deg, #fef5ff, #f5f9ff);
}

.benefits-alt {
    padding: 5rem 2rem;
    background: #fff;
}

.benefits-alt-header {
    max-width: 1400px;
    margin: 0 auto 2.5rem;
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
}

.benefits-alt-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: #101323;
}

.benefits-alt-header .subtitle {
    color: #5a5d72;
    font-size: 1.1rem;
}

.benefits-alt-header > p {
    max-width: 1000px;
    color: #5a5d72;
    line-height: 1.6;
}

.benefits-alt-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.25rem;
}

.benefits-alt-grid-four {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.benefits-alt-card {
    background: #fff;
    border: 1px solid #ececf3;
    border-radius: 22px;
    padding: 1.75rem;
    box-shadow: 0 12px 30px rgba(17, 23, 41, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    min-height: 230px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.benefits-alt-card:hover {
    background: linear-gradient(135deg, rgba(247, 3, 3, 0.08), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(247, 3, 3, 0.18);
    box-shadow: 0 18px 40px rgba(17, 11, 48, 0.12);
    transform: translateY(-6px);
}

.benefits-alt-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1.5px solid #e4e4ef;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #2a2f45;
    font-size: 1.1rem;
}

.benefits-alt-icon svg {
    width: 28px;
    height: 28px;
}

.benefits-alt-icon path,
.benefits-alt-icon circle {
    stroke: #f70303;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefits-alt-card h3 {
    font-size: 1.25rem;
    color: #101323;
}

.benefits-alt-card p {
    color: #5a5d72;
    line-height: 1.5;
    font-size: 0.98rem;
}

/* ========================================
   About Page - What We Offer Section
   ======================================== */
.about-offers-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 50%, #f8f9fb 100%);
    position: relative;
    overflow: hidden;
}

.about-offers-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247, 3, 3, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.about-offers-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

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

.offers-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    font-weight: 600;
    color: #f70303;
    background: linear-gradient(135deg, rgba(247, 3, 3, 0.1), rgba(247, 3, 3, 0.05));
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.about-offers-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #101323;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
}

.about-offers-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #5a5d72;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.about-offer-card {
    position: relative;
    background: #fff;
    border: 1px solid #ececf3;
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.about-offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f70303, #ff6b6b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.about-offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(17, 11, 48, 0.12);
    border-color: rgba(247, 3, 3, 0.15);
}

.about-offer-card:hover::before {
    transform: scaleX(1);
}

.offer-card-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(247, 3, 3, 0.08);
    line-height: 1;
    letter-spacing: -0.02em;
}

.offer-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(247, 3, 3, 0.1), rgba(247, 3, 3, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.about-offer-card:hover .offer-card-icon {
    background: linear-gradient(135deg, #f70303, #ff6b6b);
    transform: scale(1.05);
}

.offer-card-icon svg {
    width: 32px;
    height: 32px;
    color: #f70303;
    transition: color 0.3s ease;
}

.about-offer-card:hover .offer-card-icon svg {
    color: #fff;
}

.about-offer-card h3 {
    font-size: 1.35rem;
    color: #101323;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.about-offer-card p {
    color: #5a5d72;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.offer-card-line {
    position: absolute;
    bottom: 0;
    left: 2.5rem;
    right: 2.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(247, 3, 3, 0.2), transparent);
}

/* ========================================
   About Page - Our Commitment Section
   ======================================== */
.about-commitment-section {
    padding: 6rem 2rem;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-commitment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(247, 3, 3, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(247, 3, 3, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.about-commitment-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.commitment-content {
    text-align: center;
    margin-bottom: 4rem;
}

.commitment-header {
    margin-bottom: 2rem;
}

.commitment-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    font-weight: 600;
    color: #f70303;
    background: linear-gradient(135deg, rgba(247, 3, 3, 0.1), rgba(247, 3, 3, 0.05));
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.commitment-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #101323;
    font-weight: 700;
    margin: 0;
}

.commitment-text {
    max-width: 800px;
    margin: 0 auto;
    color: #5a5d72;
    font-size: 1.15rem;
    line-height: 1.8;
}

.commitment-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.commitment-feature-card {
    background: #fff;
    border: 1px solid #ececf3;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(17, 23, 41, 0.06);
}

.commitment-feature-card:hover {
    background: linear-gradient(135deg, rgba(247, 3, 3, 0.04), rgba(255, 255, 255, 0.95));
    border-color: rgba(247, 3, 3, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(17, 11, 48, 0.1);
}

.commitment-feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(247, 3, 3, 0.2), rgba(247, 3, 3, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.commitment-feature-card:hover .commitment-feature-icon {
    background: linear-gradient(135deg, #f70303, #ff6b6b);
}

.commitment-feature-icon svg {
    width: 28px;
    height: 28px;
    color: #f70303;
    transition: color 0.3s ease;
}

.commitment-feature-card:hover .commitment-feature-icon svg {
    color: #fff;
}

.commitment-feature-content h3 {
    font-size: 1.2rem;
    color: #101323;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.commitment-feature-content p {
    color: #5a5d72;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* About Sections Responsive */
@media (max-width: 1024px) {
    .about-offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .commitment-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-offers-section,
    .about-commitment-section {
        padding: 4rem 1.5rem;
    }
    
    .about-offers-header,
    .commitment-content {
        margin-bottom: 3rem;
    }
    
    .about-offer-card {
        padding: 2rem;
    }
    
    .offer-card-number {
        font-size: 2.5rem;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .commitment-feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 1.75rem;
    }
}

@media (max-width: 480px) {
    .about-offers-section,
    .about-commitment-section {
        padding: 3rem 1rem;
    }
    
    .about-offer-card {
        padding: 1.5rem;
    }
    
    .offer-card-icon {
        width: 52px;
        height: 52px;
    }
    
    .offer-card-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .commitment-feature-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
}

/* Core Services Section */
.core-services-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #f6f8fe 0%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
}

.core-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(247, 3, 3, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(247, 3, 3, 0.03) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0.5;
}

/* Subtle geometric shapes in background */
.core-services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f70303' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.4;
}

.core-services-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.core-services-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #101323;
    text-align: center;
    margin: 0 0 4rem 0;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.02em;
}

.core-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.core-service-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 0;
    background: transparent;
    border: none;
    transition: none;
}

.core-service-card:hover {
    transform: none;
    box-shadow: none;
    border: none;
}

.core-service-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f70303;
}

.core-service-icon svg {
    width: 100%;
    height: 100%;
}

.core-service-content {
    flex: 1;
}

.core-service-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #101323;
    margin: 0 0 0.75rem 0;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.4;
}

.core-service-content p {
    font-size: 0.95rem;
    color: #5a5d72;
    line-height: 1.6;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.network-alt {
    padding: 5rem 2rem 0rem;
    background: #fff;
}

.network-alt-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.network-alt-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.network-alt-content h2 {
    font-size: 2.5rem;
    color: #101323;
    font-weight: 700;
    margin: 0;
}

.network-alt-content p {
    color: #5a5d72;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.network-cta-link {
    text-transform: uppercase;
    letter-spacing: 0.55em;
    color: #f70303;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.network-cta-link::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #f70303;
}

.network-alt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.network-partner-logo {
    width: 100%;
}

.partner-logo-box {
    background: #fff;
    border: 1px solid #ececf3;
    border-radius: 22px;
    padding: 2rem 1.5rem;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    color: #2a2f45;
    font-size: 0.95rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(17, 23, 41, 0.03);
}

.partner-logo-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(17, 23, 41, 0.12);
    background: linear-gradient(135deg, rgba(247, 3, 3, 0.08), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(247, 3, 3, 0.18);
}

.industry-expertise {
    padding: 5rem 2rem;
    background: #fff;
}

.industry-expertise-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.industry-expertise-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industry-expertise-content h2 {
    font-size: 2.5rem;
    color: #101323;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.industry-expertise-content p {
    color: #5a5d72;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.industry-cta-link {
    text-transform: uppercase;
    letter-spacing: 0.55em;
    color: #f70303;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.industry-cta-link::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #f70303;
}

.industry-expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.industry-card {
    width: 100%;
}

.industry-card-link {
    display: block;
    background: #fff;
    border: 1px solid #ececf3;
    border-radius: 22px;
    padding: 2rem 1.5rem;
    min-height: 160px;
    position: relative;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(17, 23, 41, 0.03);
}

.industry-card-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(17, 11, 48, 0.14);
    background: linear-gradient(135deg, rgba(247, 3, 3, 0.08), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(247, 3, 3, 0.18);
}

.industry-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon svg {
    width: 56px;
    height: 56px;
}

.industry-icon path,
.industry-icon circle,
.industry-icon rect,
.industry-icon ellipse {
    stroke: #f70303;
    stroke-width: .8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.industry-arrow {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 24px;
    height: 24px;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-arrow::before {
    content: '';
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid transparent;
    transform: scale(0.35);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
}

.industry-card-link:hover .industry-arrow {
    opacity: 1;
    transform: translate(2px, -2px);
}

.industry-card-link:hover .industry-arrow::before {
    opacity: 1;
    transform: scale(1);
    border-color: #f70303;
}

.industry-arrow svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
}

.industry-arrow path {
    stroke: #101323;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.industry-card-link:hover .industry-arrow path {
    stroke: #f70303;
}

.industry-card-link h3 {
    font-size: 1.1rem;
    color: #101323;
    font-weight: 600;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.custom-coverage-cta {
    padding: 4rem 2rem;
    background: #000;
    margin: 0;
}

.custom-coverage-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.custom-coverage-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.custom-coverage-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.custom-coverage-content p {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.custom-coverage-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.custom-coverage-btn {
    background: #f70303;
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(247, 3, 3, 0.3);
    cursor: pointer;
    font-family: inherit;
}

.custom-coverage-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 3, 3, 0.4);
    background: #e00303;
}

.clients-showcase {
    padding: 5rem 2rem;
    background: #fff;
}

.clients-showcase-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.clients-showcase-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.clients-showcase-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #101323;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.clients-showcase-header p {
    max-width: 800px;
    font-size: 1.05rem;
    color: #5a5d72;
    line-height: 1.6;
    margin: 0;
}

.clients-cta-link {
    text-transform: uppercase;
    letter-spacing: 0.55em;
    color: #f70303;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.clients-cta-link::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #f70303;
}

.clients-logos-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    overflow: hidden;
}

.clients-row {
    display: flex;
    gap: 1.5rem;
    width: fit-content;
    will-change: transform;
}

.clients-row-first {
    animation: scrollRight 30s linear infinite;
}

.clients-row-first:hover {
    animation-play-state: paused;
}

.clients-row-second {
    animation: scrollLeft 30s linear infinite;
}

.clients-row-second:hover {
    animation-play-state: paused;
}

@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 0.75rem));
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(calc(-50% - 0.75rem));
    }
    100% {
        transform: translateX(0);
    }
}

.client-logo-item {
    flex: 0 0 auto;
    min-width: 140px;
    max-width: 160px;
    width: 140px;
}

.client-logo-box {
    background: #fff;
    border: 1px solid #ececf3;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    color: #2a2f45;
    font-size: 0.95rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(17, 23, 41, 0.03);
}

.client-logo-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 23, 41, 0.08);
}

/* Brand Colors */
.client-logo-box[data-brand="accenture"] {
    color: #A100FF;
}

.client-logo-box[data-brand="adobe"] {
    color: #FF0000;
}

.client-logo-box[data-brand="amazon"] {
    color: #FF9900;
}

.client-logo-box[data-brand="apple"] {
    color: #000000;
}

.client-logo-box[data-brand="aws"] {
    color: #FF9900;
}

.client-logo-box[data-brand="bmw"] {
    color: #1C69D4;
}

.client-logo-box[data-brand="reliance"] {
    color: #0066CC;
}

.client-logo-box[data-brand="hsbc"] {
    color: #DB0011;
}

.client-logo-box[data-brand="rapido"] {
    color: #FF6B00;
}

.client-logo-box[data-brand="microsoft"] {
    color: #00A4EF;
}

.client-logo-box[data-brand="google"] {
    color: #4285F4;
}

.client-logo-box[data-brand="ibm"] {
    color: #006699;
}

.client-logo-box[data-brand="infosys"] {
    color: #007CC3;
}

.client-logo-box[data-brand="wellness"] {
    color: #00A859;
}

.client-logo-box[data-brand="apollo"] {
    color: #E31837;
}

.client-logo-box[data-brand="ozonetel"] {
    color: #FF6600;
}

.client-logo-box[data-brand="puravankara"] {
    color: #1E3A8A;
}

.client-logo-box[data-brand="zeiss"] {
    color: #000000;
}

.client-logo-box[data-brand="tcs"] {
    color: #0066CC;
}

.client-logo-box[data-brand="wipro"] {
    color: #0066CC;
}

.testimonials-section {
    padding: 5rem 2rem;
    background: #fff;
}

.testimonials-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-header {
    display: grid;
    grid-template-columns: .5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.testimonials-title h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #101323;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.testimonials-intro p {
    font-size: 1.05rem;
    color: #5a5d72;
    line-height: 1.6;
    margin: 0;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-card {
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(17, 23, 41, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-stars {
    color: #f70303;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #2a2f45;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f70303;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    color: #101323;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.author-info p {
    font-size: 0.95rem;
    color: #5a5d72;
    margin: 0;
}

.testimonials-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.carousel-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ececf3;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
    color: #5a5d72;
}

.carousel-nav:hover {
    background: #d7d9e5;
    transform: scale(1.1);
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d7d9e5;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    width: 40px;
    height: 3px;
    border-radius: 3px;
    background: #f70303;
}

.faqs-section {
    padding: 5rem 2rem;
    background: #fff;
}

.faqs-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.faqs-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 3rem;
}

.faqs-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #101323;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.faqs-tabs {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.faq-tab {
    background: none;
    border: none;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: #5a5d72;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    font-family: 'Poppins', sans-serif;
}

.faq-tab:hover {
    color: #101323;
}

.faq-tab.active {
    color: #101323;
    font-weight: 600;
}

.faq-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #f70303;
}

.faqs-content {
    width: 100%;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border: 1px solid #ececf3;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(17, 23, 41, 0.08);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question span {
    font-size: 1.05rem;
    color: #101323;
    font-weight: 500;
    flex: 1;
    line-height: 1.5;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #5a5d72;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.3s, color 0.3s;
}

.faq-item.active .faq-icon {
    color: #f70303;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.3s ease;
    padding: 0 2rem;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 3000px;
    padding: 1.5rem 2rem 1.5rem 2rem;
    overflow: visible;
    opacity: 1;
}

.faq-answer p {
    font-size: 1rem;
    color: #5a5d72;
    line-height: 1.6;
    margin: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.faq-answer ul li {
    font-size: 1rem;
    color: #5a5d72;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    display: block;
}

.faq-answer ul li strong {
    color: #101323;
    font-weight: 600;
}

.faq-answer ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #f70303;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.7;
}

.faq-answer ul li:last-child {
    margin-bottom: 0;
}

.dashboard-shell {
    display: flex;
    gap: 1.5rem;
}

.dashboard-sidebar {
    width: 70px;
    background: linear-gradient(180deg, #fcfcff 0%, #eef2ff 100%);
    border-radius: 24px;
    padding: 1.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.sidebar-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f70303;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.dashboard-sidebar ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.dashboard-sidebar li {
    width: 6px;
    height: 28px;
    border-radius: 6px;
    background: #d7d9e5;
}

.dashboard-sidebar li.active {
    background: #f70303;
}

.dashboard-main {
    flex: 1;
    background: #fff;
    border-radius: 28px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-profile {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f2f7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-left: -6px;
}

.avatar.primary {
    background: #f70303;
    color: #fff;
}

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

.dashboard-card {
    border: 1px solid #eff0f6;
    border-radius: 20px;
    padding: 1.2rem;
    background: #fff;
    box-shadow: 0 14px 30px rgba(35, 47, 85, 0.05);
}

.dashboard-card.status .stat-value {
    font-size: 2.4rem;
    font-weight: 700;
    color: #151c3b;
}

.dashboard-card.status .stat-value span {
    font-size: 0.9rem;
    color: #30b37d;
}

.wallet-values {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.text-button {
    background: none;
    border: none;
    color: #f70303;
    font-weight: 600;
    cursor: pointer;
}

.chart-line {
    height: 80px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="80"><polyline fill="none" stroke="%23f70303" stroke-width="4" points="0,70 40,55 80,60 120,30 160,40 200,20 240,30 280,5"/></svg>') no-repeat center/contain;
    margin-top: 1rem;
}

.dashboard-card.pie-chart ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.dashboard-card.promo {
    background: #fff5f8;
    border: none;
}

.dashboard-card .tag {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    background: #f70303;
    color: #fff;
    border-radius: 999px;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.dashboard-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #151c3b;
}

.dashboard-card.updates ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.text-button.danger {
    color: #f70303;
}

@media (max-width: 768px) {
    .hero-nav {
        width: 100%;
        justify-content: center;
    }

    .dashboard-shell {
        flex-direction: column;
    }

    .dashboard-sidebar {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }

    .dashboard-sidebar ul {
        flex-direction: row;
    }
}

.cta-button {
    background: #f70303;
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    margin-bottom: 3rem;
}

.cta-button:hover {
    background: #d81934;
    transform: translateY(-2px);
}

.dashboard-preview {
    max-width: 1200px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dashboard-content {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.dashboard-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.dashboard-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.dashboard-card .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f70303;
}

.chart-placeholder {
    height: 100px;
    background: linear-gradient(135deg, #f70303 0%, #d81934 100%);
    border-radius: 5px;
    margin-top: 1rem;
}


.site-footer {
    background: #fff;
    padding: 4rem 2rem 1rem 2rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
    margin-left: 0;
    margin-right: 0;
}

.footer-brand {
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    padding-left: 0;
}

.footer-logo {
    /* height: 50px; */
    margin-bottom: 1.5rem;
    display: block;
}

.footer-brand p {
    color: #5b5b5b;
    font-size: 0.95rem;
}

.footer-follow {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-left: auto;
}

.follow-label {
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #f70303;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s, color 0.3s, border-color 0.3s;
    border: 1px solid #f70303;
}

.footer-social-links a svg {
    width: 20px;
    height: 20px;
    display: block;
    color: #f70303;
    transition: color 0.3s;
}

/* Facebook hover - Blue */
.footer-social-links a.social-facebook:hover {
    border-color: #1877F2;
}

.footer-social-links a.social-facebook:hover svg {
    color: #1877F2;
}

/* Instagram hover - Pink/Red gradient (using solid color) */
.footer-social-links a.social-instagram:hover {
    border-color: #E4405F;
}

.footer-social-links a.social-instagram:hover svg {
    color: #E4405F;
}

/* LinkedIn hover - Blue */
.footer-social-links a.social-linkedin:hover {
    border-color: #0077B5;
}

.footer-social-links a.social-linkedin:hover svg {
    color: #0077B5;
}

.footer-social-links a:hover {
    transform: translateY(-3px);
}

.footer-separator {
    border: none;
    height: 1px;
    background: #e2e2ea;
    margin: 2.5rem 0;
}

.footer-sections {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.footer-industries {
    width: 100%;
    max-width: 1200px;
}

.footer-industries h3 {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.footer-industries ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    justify-content: center;
    gap: 1rem 2rem;
   
}

.footer-industries ul li {
    margin-bottom: 0.6rem;
}

.footer-industries ul a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-industries ul a:hover {
    color: #f70303;
}

.footer-sub-separator {
    height: 1px;
    background: #e2e2ea;
}

.footer-secondary {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 2.5rem;
    justify-content: center;
    justify-items: center;
    width: 100%;
}

.footer-secondary .footer-column {
    text-align: center;
}

.footer-column h3 {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    text-align: left;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #f70303;
}

.footer-column p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-contact-btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border: 1.5px solid #f70303;
    color: #f70303;
    font-weight: 600;
    background: transparent;
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.footer-contact-btn:hover {
    background: #f70303;
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f70303;
}

.footer-copyright {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: #777;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #f70303;
}

.footer-bottom::after {
    content: "";
    display: none;
    margin-top: 2.5rem;
    height: 60px;
    background: #ede9ff;
    border-radius: 12px;
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 1.2rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .nav-login {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 0.8rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }

    .mega-menu {
        min-width: 600px;
        padding: 1.5rem;
    }

    .mega-menu-single-column {
        min-width: 280px;
    }

    .mega-menu-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .mega-menu-content-single {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .mega-menu-item {
        padding: 0.75rem 0.75rem;
        gap: 0.625rem;
    }

    .mega-menu-icon {
        width: 28px;
        height: 28px;
    }

    .mega-menu-icon svg {
        width: 28px;
        height: 28px;
    }

    .mega-menu-item span {
        font-size: 0.85rem;
    }

    .network-alt-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .network-alt-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-expertise-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .industry-expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .custom-coverage-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .custom-coverage-action {
        justify-content: center;
    }

    .clients-row {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    
    .client-logo-item {
        flex: 0 0 calc(20% - 1.2rem);
        min-width: 140px;
        max-width: 180px;
        scroll-snap-align: start;
    }

    .footer-secondary {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 80px 20px 20px;
        z-index: 1000;
        overflow-y: auto;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    .nav-links li a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .nav-links li.dropdown > a {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-links .nav-login {
        margin-top: 1rem;
        width: auto;
        min-width: 200px;
    }

    .mega-menu {
        position: static;
        min-width: 100%;
        padding: 1rem;
        box-shadow: none;
        border: none;
        background: #f9f9f9;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        margin-top: 0;
    }

    .dropdown.mobile-open .mega-menu {
        display: block;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .mega-menu-content-single {
        grid-template-columns: 1fr;
    }

    .mega-menu-item {
        padding: 0.75rem 1rem;
    }

    .dropdown:hover .mega-menu {
        transform: none;
    }

    header {
        padding: 0.75rem 1rem;
    }

    nav {
        flex-wrap: wrap;
    }

    .logo img {
        max-width: 150px;
    }

    .mega-menu-single-column {
        min-width: 100%;
    }

    .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .mega-menu-content-single {
        grid-template-rows: 1fr;
        gap: 0.5rem;
    }

    .mega-menu-item {
        padding: 0.625rem 0.5rem;
        gap: 0.5rem;
    }

    .mega-menu-icon {
        width: 24px;
        height: 24px;
    }

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

    .mega-menu-item span {
        font-size: 0.75rem;
    }

    .network-alt {
        padding: 3rem 1.5rem;
    }

    .network-alt-wrapper {
        gap: 2rem;
    }

    .network-alt-content h2 {
        font-size: 2rem;
    }

    .network-alt-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .partner-logo-box {
        min-height: 100px;
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }

    .industry-expertise {
        padding: 3rem 1.5rem;
    }

    .industry-expertise-wrapper {
        gap: 2rem;
    }

    .industry-expertise-content h2 {
        font-size: 2rem;
    }

    .industry-expertise-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .industry-card-link {
        min-height: 140px;
        padding: 1.5rem 1rem;
    }

    .industry-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .industry-icon svg {
        width: 48px;
        height: 48px;
    }

    .custom-coverage-cta {
        padding: 3rem 1.5rem;
    }

    .custom-coverage-content {
        align-items: center;
    }

    .clients-showcase {
        padding: 3rem 1.5rem;
    }

    .clients-row {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
    }
    
    .client-logo-item {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: 140px;
        max-width: 200px;
        scroll-snap-align: start;
    }

    .client-logo-box {
        min-height: 100px;
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }

    .testimonials-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .faqs-section {
        padding: 3rem 1.5rem;
    }

    .faqs-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .faqs-tabs {
        width: 100%;
        justify-content: flex-start;
        gap: 1.5rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question span {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        max-height: 5000px;
        padding: 1.25rem 1.5rem 1.25rem 1.5rem;
        overflow: visible;
        opacity: 1;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
    
    .faq-answer ul li {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .dashboard-content {
        grid-template-columns: 1fr;
    }

    .footer-brand-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-links {
        gap: 1.5rem;
    }

    .footer-industries ul {
        grid-template-columns: 1fr;
    }

    .footer-secondary {
    grid-template-columns: 1fr;
}
    
    .site-footer {
        padding: 2rem 1rem;
    }
    
    .footer-content {
        padding: 0;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        max-width: 150px;
        margin: 0 auto;
    }
    
    .footer-follow {
        text-align: center;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .footer-sections {
        padding: 1.5rem 0;
    }
    
    .footer-industries h3 {
        font-size: 1rem;
        text-align: center;
    }
    
    .footer-industries ul {
        justify-content: center;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3 {
        font-size: 0.9rem;
    }
    
    .footer-column ul li a {
        font-size: 0.85rem;
    }
}

/* Expertise Hero Section */
.expertise-hero {
    padding: 6rem 2rem 4rem;
    background: #fff;
}

/* Process Illustration inside Expertise Hero */
.expertise-hero .hero-process-illustration {
    margin-top: 3rem;
    max-width: 1000px;
}

.expertise-hero .step-icon {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px;
    max-width: 72px;
}

.expertise-hero .step-icon svg {
    width: 38px !important;
    height: 38px !important;
    max-width: 38px;
    max-height: 38px;
}

.expertise-hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expertise-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.expertise-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #101323;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

.expertise-hero-content p {
    font-size: 1.1rem;
    color: #5a5d72;
    line-height: 1.7;
    margin: 0;
}

.expertise-cta-link {
    text-transform: uppercase;
    letter-spacing: 0.55em;
    color: #fff;
    background: #f70303;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    margin-top: 0.5rem;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.expertise-cta-link:hover {
    background: #d81934;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(247, 3, 3, 0.3);
}

.expertise-cta-link::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #fff;
}

.expertise-hero-image {
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.expertise-hero-bg-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Odd/Even Section Backgrounds */
.expertise-hero {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

.expertise-intro-text {
    padding: 3rem 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.why-pr-section {
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

.what-we-offer-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

.clients-showcase {
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

.industry-expertise {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

.case-studies-section {
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

.testimonials-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

.faqs-section {
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

.write-to-us-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

/* Introductory Text Block */
.expertise-intro-text {
    padding: 3rem 1.5rem;
}

.expertise-intro-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.expertise-intro-wrapper p {
    font-size: 1.15rem;
    color: #2a2f45;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

/* Why PR Section */
.why-pr-section {
    padding: 5rem 2rem;
}

.why-pr-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.why-pr-content {
    display: grid;
    grid-template-columns: .8fr 2fr;
    align-items: start;
}

.why-pr-content h2 {
    font-size: 2.5rem;
    color: #101323;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.why-pr-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-pr-text p {
    font-size: 1.05rem;
    color: #5a5d72;
    line-height: 1.7;
    margin: 0;
}

/* What We Offer Section */
.what-we-offer-section {
    padding: 1rem 2rem;
}

.what-we-offer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.what-we-offer-header {
    margin-bottom: 3rem;
}

.what-we-offer-header h2 {
    font-size: 2.5rem;
    color: #101323;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.what-we-offer-header p {
    font-size: 1.05rem;
    color: #5a5d72;
    line-height: 1.7;
    margin: 0;
    max-width: 700px;
}

.what-we-offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.offer-card {
    width: 100%;
}

.offer-card-link {
    display: block;
    background: #fff;
    border: 1px solid #ececf3;
    border-radius: 22px;
    padding: 2.5rem 2rem;
    min-height: 220px;
    position: relative;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.offer-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(17, 23, 41, 0.1);
}

.offer-card-link h3 {
    font-size: 1.5rem;
    color: #101323;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.offer-card-link p {
    color: #5a5d72;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.offer-arrow {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
}

.offer-card-link:hover .offer-arrow {
    opacity: 1;
    transform: translate(4px, -4px);
}

.what-we-offer-section.offer-cards-compact .what-we-offer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.what-we-offer-section.offer-cards-compact .what-we-offer-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.what-we-offer-section.offer-cards-compact .offer-card-link {
    min-height: 120px;
    padding: 1.5rem 1.5rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 20px;
    border: 1px solid #ececf3;
    box-shadow: 0 2px 8px rgba(17, 23, 41, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    background: #fff;
}

.what-we-offer-section.offer-cards-compact .offer-card-link h4 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.what-we-offer-section.offer-cards-compact .offer-arrow {
    top: 1.25rem;
    right: 1.25rem;
    width: 24px;
    height: 24px;
    opacity: 0.55;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.what-we-offer-section.offer-cards-compact .offer-arrow::before {
    content: '';
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid transparent;
    transform: scale(0.35);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
}

.what-we-offer-section.offer-cards-compact .offer-arrow svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
}

.what-we-offer-section.offer-cards-compact .offer-arrow svg path {
    stroke: #101323;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.what-we-offer-section.offer-cards-compact .offer-card-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(17, 11, 48, 0.14);
    background: linear-gradient(135deg, rgba(247, 3, 3, 0.08), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(247, 3, 3, 0.18);
}

.what-we-offer-section.offer-cards-compact .offer-card-link:hover .offer-arrow {
    opacity: 1;
    transform: translate(2px, -2px);
}

.what-we-offer-section.offer-cards-compact .offer-card-link:hover .offer-arrow::before {
    opacity: 1;
    transform: scale(1);
    border-color: #f70303;
}

.what-we-offer-section.offer-cards-compact .offer-card-link:hover .offer-arrow svg path {
    stroke: #f70303;
}

.offer-arrow svg {
    width: 24px;
    height: 24px;
}

.offer-arrow path {
    stroke: #f70303;
    stroke-width: 2;
}

/* Case Studies Section */
.case-studies-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
}

.case-studies-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.case-studies-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.case-studies-header h2 {
    font-size: 2.5rem;
    color: #101323;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.case-studies-header p {
    font-size: 1.05rem;
    color: #5a5d72;
    line-height: 1.7;
    margin: 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.case-study-card {
    background: #fff;
    border: 1px solid #ececf3;
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.case-study-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(17, 23, 41, 0.1);
}

.case-study-visual {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-mockup {
    width: 120px;
    height: 200px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.mockup-phone {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
}

.case-study-logos {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.brand-logo-small {
    padding: 0.75rem 1.5rem;
    background: #fff;
    border-radius: 12px;
    font-weight: 600;
    color: #2a2f45;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.case-study-building {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    position: relative;
}

.case-study-building::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 80%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    clip-path: polygon(30% 100%, 70% 100%, 100% 50%, 0 50%);
}

.case-study-content {
    padding: 2rem;
}

.case-study-content h3 {
    font-size: 1.5rem;
    color: #101323;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.case-study-content p {
    font-size: 1rem;
    color: #5a5d72;
    line-height: 1.6;
    margin: 0;
}

.case-studies-cta {
    text-align: center;
}

.case-studies-cta-link {
    text-transform: uppercase;
    letter-spacing: 0.55em;
    color: #f70303;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.case-studies-cta-link::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #f70303;
}

/* Write to Us Section */
.write-to-us-section {
    padding: 5rem 2rem;
}

.write-to-us-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.write-to-us-header {
    text-align: left;
    margin-bottom: 3rem;
    max-width: 600px;
}

.write-to-us-header h2 {
    font-size: 2.5rem;
    color: #101323;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.write-to-us-header p {
    font-size: 1.05rem;
    color: #5a5d72;
    line-height: 1.7;
    margin: 0;
}

.write-to-us-content {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.write-to-us-visual {
    min-height: 500px;
    height: 100%;
}

.write-to-us-visual {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

.mailbox-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 22px;
}

.write-to-us-form {
    width: 100%;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    color: #2a2f45;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 1px solid #ececf3;
    border-radius: 12px;
    font-size: 1rem;
    color: #2a2f45;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f70303;
    box-shadow: 0 0 0 3px rgba(247, 3, 3, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: #f70303;
    color: #fff;
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    margin-top: 0.5rem;
}

.submit-button:hover {
    background: #d81934;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(247, 3, 3, 0.3);
}

@media (max-width: 1024px) {
    .core-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .why-pr-content,
    .write-to-us-content,
    .case-studies-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .what-we-offer-grid,
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .expertise-hero-image {
        height: 400px;
        margin-top: 2.5rem;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .core-services-section {
        padding: 3rem 1.5rem;
    }

    .core-services-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .core-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .core-service-card {
        padding: 0;
        gap: 1.25rem;
    }

    .core-service-icon {
        width: 40px;
        height: 40px;
    }

    .core-service-content h3 {
        font-size: 1rem;
    }

    .core-service-content p {
        font-size: 0.9rem;
    }

    .expertise-hero {
        padding: 4rem 1.5rem 3rem;
    }

    .expertise-hero-wrapper {
        gap: 2rem;
    }

    .expertise-hero-content {
        align-items: center;
        text-align: center;
        padding: 0 1rem;
    }

    .expertise-hero-content h1 {
        font-size: 2rem;
    }

    .expertise-hero-image {
        height: 280px;
        margin-top: 2rem;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .expertise-hero-bg-img {
        object-fit: cover;
        object-position: center;
    }

    .why-pr-section,
    .what-we-offer-section,
    .case-studies-section,
    .write-to-us-section {
        padding: 3rem 1.5rem;
    }

    .why-pr-content h2,
    .what-we-offer-header h2,
    .case-studies-header h2,
    .write-to-us-header h2 {
        font-size: 2rem;
    }

    .what-we-offer-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .write-to-us-header {
        text-align: center;
        max-width: 100%;
    }

    .write-to-us-visual {
        min-height: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .expertise-hero {
        padding: 3rem 1rem 2rem;
    }

    .expertise-hero-content h1 {
        font-size: 1.75rem;
        letter-spacing: 0.05em;
    }

    .expertise-hero-image {
        height: 240px;
        margin-top: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    }

    .expertise-hero-bg-img {
        object-fit: cover;
        object-position: center;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .expertise-hero-image {
        height: 450px;
    }
}

@media (min-width: 1400px) {
    .footer-content {
        max-width: 1600px;
    }

    .expertise-hero-image {
        height: 550px;
    }
}

@media (min-width: 1920px) {
    .footer-content {
        max-width: 1400px;
    }
}

/* Floating action buttons */
.floating-action-wrapper {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    z-index: 1200;
}

.floating-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    border: none;
    background: rgba(12, 12, 12, 0.92);
    color: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.floating-action .floating-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    position: relative;
    z-index: 1;
}

.floating-action svg {
    color: inherit;
}

.floating-action.whatsapp-action {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-action.chat-action {
    background: linear-gradient(135deg, #f70303, #c70202);
    animation: pulse-glow 2s infinite;
}

.floating-action.chat-action:hover {
    background: linear-gradient(135deg, #ff4444, #f70303);
    animation: none;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 12px 24px rgba(233, 30, 99, 0.35);
    }
    50% {
        box-shadow: 0 12px 30px rgba(233, 30, 99, 0.55), 0 0 20px rgba(233, 30, 99, 0.3);
    }
}

.floating-action.scroll-top-btn {
    background: #ffffff;
    position: relative;
    overflow: visible;
    color: #f70303;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.scroll-progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    pointer-events: none;
}

.scroll-progress-circle {
    transition: stroke-dashoffset 0.1s ease-out;
}

.floating-action.scroll-top-btn:hover {
    background: #f8f8f8;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

.floating-action:hover,
.floating-action:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.floating-action:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 3px;
}

@media (max-width: 767px) {
    .floating-action-wrapper {
        display: none !important;
    }
}

/* Mobile Sticky Footer Bar */
.mobile-sticky-footer {
        display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, #f70303 0%, #c70202 100%);
    z-index: 1200;
    box-shadow: 0 -4px 20px rgba(247, 3, 3, 0.3);
}

.mobile-sticky-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.mobile-footer-content {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.mobile-footer-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-footer-btn:first-child {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-footer-btn:last-child {
    background: rgba(0, 0, 0, 0.1);
}

.mobile-footer-btn:first-child::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.mobile-footer-btn:active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0.98);
}

.mobile-footer-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* WhatsApp icon color effect */
.mobile-footer-btn.whatsapp-btn svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Phone icon pulse animation */
.mobile-footer-btn.phone-btn svg {
    animation: phone-ring 2s ease-in-out infinite;
}

@keyframes phone-ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

/* Add padding to footer to prevent content being hidden behind sticky bar */
@media (max-width: 767px) {
    .mobile-sticky-footer {
        display: block;
    }
    
    .site-footer {
        padding-bottom: 80px !important;
    }
}

/* Login Page Styles */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
    background: #f6f8fe;
}

.login-container {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 2;
    position: relative;
}

.login-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.login-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.login-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-align: center;
}

.login-input-wrapper {
    width: 100%;
    display: flex;
    border: 1px solid #d0d0d0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.country-code-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
    border-right: 1px solid #d0d0d0;
    background: #fff;
    position: relative;
}

.country-code {
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    outline: none;
    appearance: none;
    padding-right: 1.5rem;
    font-family: inherit;
}

.dropdown-icon {
    position: absolute;
    right: 0.5rem;
    color: #666;
    pointer-events: none;
}

.login-input {
    flex: 1;
    border: none;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #333;
    font-family: inherit;
    outline: none;
    background: transparent;
}

.login-input::placeholder {
    color: #999;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.login-proceed-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #f70303;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    font-family: inherit;
}

.login-proceed-btn:hover {
    background: #d81934;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 3, 3, 0.3);
}

.login-proceed-btn:active {
    transform: translateY(0);
}

.login-proceed-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.login-separator {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
}

.separator-line {
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.separator-text {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
    padding: 0 0.5rem;
}

.login-google-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #ffffff;
    color: #333;
    border: 1px solid #d0d0d0;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: background 0.3s, border-color 0.3s, transform 0.2s, box-shadow 0.3s;
    font-family: inherit;
}

.login-google-btn:hover {
    background: #f9f9f9;
    border-color: #b0b0b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-google-btn:active {
    transform: translateY(0);
}

.google-icon {
    flex-shrink: 0;
}

.login-other-btn {
    padding: 1rem 2.5rem;
    background: transparent;
    color: #333;
    border: 2px solid #333;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    font-family: inherit;
}

.login-other-btn:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
}

.login-other-btn:active {
    transform: translateY(0);
}

/* Responsive Design for Login */
@media (max-width: 768px) {
    .login-card {
        padding: 2.5rem 2rem;
        gap: 1.5rem;
    }

    .login-heading {
        font-size: 1.5rem;
    }

    .logo-main,
    .logo-sub {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .login-heading {
        font-size: 1.25rem;
    }

    .login-input-wrapper {
        flex-direction: column;
        border: none;
    }

    .country-code-selector {
        border-right: none;
        border-bottom: 1px solid #d0d0d0;
        padding: 0.75rem 1rem;
        width: 100%;
    }

    .login-input {
        padding: 0.75rem 1rem;
        border: 1px solid #d0d0d0;
        border-radius: 12px;
        margin-top: 0.5rem;
    }
}

/* Press Release Distribution Hero Section */
.pr-hero-section {
    padding: 5rem 2rem 3rem;
    background: #fff;
}

.pr-hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.pr-hero-content {
    text-align: center;
    margin-bottom: 3rem;
}

.pr-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #101323;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0 0 1.5rem 0;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.pr-hero-content p {
    font-size: 1.1rem;
    color: #5a5d72;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.pr-hero-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pr-hero-bg-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* What Is Press Release Section */
.what-is-pr-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

.what-is-pr-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.what-is-pr-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.what-is-pr-content h2 {
    font-size: 2.5rem;
    color: #101323;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.what-is-pr-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.what-is-pr-text p {
    font-size: 1.05rem;
    color: #5a5d72;
    line-height: 1.7;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Benefits of Press Release Section */
.pr-benefits-section {
    padding: 5rem 2rem;
    background: #fff;
}

.pr-benefits-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.pr-benefits-wrapper h2 {
    font-size: 2.5rem;
    color: #101323;
    font-weight: 700;
    text-align: center;
    margin: 0 0 3rem 0;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.pr-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pr-benefit-card {
    background: #fff;
    border: 1px solid #ececf3;
    border-radius: 22px;
    padding: 2.5rem 2rem;
    box-shadow: 0 12px 30px rgba(17, 23, 41, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pr-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(17, 23, 41, 0.1);
}

.pr-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    border: 1.5px solid #e4e4ef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f70303;
    background: #fff;
    flex-shrink: 0;
}

.pr-benefit-icon svg {
    width: 28px;
    height: 28px;
}

.pr-benefit-icon path,
.pr-benefit-icon circle {
    stroke: #f70303;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pr-benefit-card h3 {
    font-size: 1.5rem;
    color: #101323;
    font-weight: 700;
    margin: 0;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.pr-benefit-card p {
    color: #5a5d72;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Need Help Section */
.pr-need-help-section {
    padding: 4rem 2rem;
    background: #1a1f3a;
    color: #fff;
}

.pr-need-help-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.pr-need-help-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.pr-need-help-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fff;
    font-weight: 700;
    margin: 0;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.pr-need-help-btn {
    padding: 1rem 2.5rem;
    background: #fff;
    color: #101323;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    transition: transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.pr-need-help-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Press Release Sections */
@media (max-width: 1024px) {
    .what-is-pr-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .what-is-pr-content h2 {
        text-align: left;
    }

    .pr-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pr-benefits-grid {
        grid-template-columns: 1fr;
    }

    .pr-hero-section {
        padding: 3rem 1.5rem 2rem;
    }

    .pr-hero-content h1 {
        font-size: 2rem;
    }

    .pr-hero-content p {
        font-size: 1rem;
    }

    .pr-hero-bg-img {
        height: 300px;
    }

    .what-is-pr-section,
    .pr-benefits-section {
        padding: 3rem 1.5rem;
    }

    .what-is-pr-content h2,
    .pr-benefits-wrapper h2 {
        font-size: 2rem;
    }

    .pr-need-help-section {
        padding: 3rem 1.5rem;
    }

    .pr-need-help-content {
        flex-direction: column;
        text-align: center;
    }

    .pr-need-help-content h2 {
        font-size: 1.5rem;
    }

    .pr-need-help-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===============================
   View All Media Partners Page
   =============================== */
.media-partners-page {
    position: relative;
    padding: 120px 0 160px;
    background: #ffffff;
    overflow: hidden;
}

.media-partners-page::before,
.media-partners-page::after {
    display: none;
}

.media-partners-page::before {
    top: -160px;
    left: -120px;
}

.media-partners-page::after {
    bottom: -220px;
    right: -160px;
}

.media-partners-container {
    width: min(1200px, 90vw);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.media-page-header .eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    color: #f70303;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.media-page-header h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    color: #120c2d;
    margin-bottom: 1.1rem;
    font-family: 'Montserrat', 'Poppins', sans-serif;
    letter-spacing: -0.01em;
}

.media-page-header .lede {
    max-width: 720px;
    margin: 0 auto 2.75rem;
    color: #443f5f;
    line-height: 1.8;
    font-size: 1.05rem;
}

.media-filter-group {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    padding: 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 25px 70px rgba(13, 24, 56, 0.08);
    border: 1px solid rgba(247, 3, 3, 0.25);
    backdrop-filter: blur(4px);
}

.media-filter {
    border: 1px solid transparent;
    background: transparent;
    padding: 0.85rem 2.6rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    color: #4f4a6b;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.media-filter.active {
    background: linear-gradient(135deg, #f70303, #c90202);
    color: #fff;
    box-shadow: 0 12px 30px rgba(247, 3, 3, 0.35);
}

.media-filter:not(.active):hover {
    border-color: rgba(247, 3, 3, 0.4);
    color: #f70303;
}

/* Honeycomb Grid Layout */
.media-grid {
    --hex-size: 160px;
    --hex-gap: 10px;
    --hex-margin: calc(var(--hex-size) * 0.28);
    margin-top: 3.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 2rem;
    transition: all 0.3s ease;
}

.honeycomb-row {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: calc(var(--hex-margin) * -0.5);
}

.honeycomb-row:nth-child(even) {
    margin-left: calc(var(--hex-size) * 0.58);
}

.media-card {
    --hex-width: calc(var(--hex-size) * 1.15);
    --hex-height: var(--hex-size);
    width: var(--hex-width);
    height: var(--hex-height);
    background: #ffffff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--hex-gap);
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), 
                background 0.3s ease,
                filter 0.3s ease, 
                opacity 0.25s ease;
}

.media-card::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: #ffffff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
    transition: background 0.3s ease;
}

.media-card:hover {
    background: linear-gradient(145deg, #f70303 0%, #c90202 100%);
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 15px 35px rgba(247, 3, 3, 0.35));
    z-index: 10;
}

.media-card:hover::before {
    background: linear-gradient(145deg, #f70303 0%, #c90202 100%);
}

.media-card img {
    max-width: 90px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: saturate(1.1) drop-shadow(0 2px 4px rgba(0,0,0,0.08));
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.media-card:hover img {
    transform: scale(1.08);
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(255,255,255,0.3));
}

.media-card--text {
    background: #ffffff;
}

.media-card--text::before {
    background: #ffffff;
}

.media-card--text span {
    font-weight: 700;
    font-size: 0.85rem;
    color: #1f1b3d;
    font-family: 'Montserrat', 'Poppins', sans-serif;
    letter-spacing: 0.02em;
    text-align: center;
    padding: 0.6rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.media-card--text:hover span {
    color: #ffffff;
}

.media-card.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
    width: 0;
    height: 0;
    margin: 0;
    overflow: hidden;
}

/* Honeycomb entrance animation */
@keyframes hexFadeIn {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-30deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.media-card {
    animation: hexFadeIn 0.5s ease-out backwards;
}

.media-card:nth-child(1) { animation-delay: 0.05s; }
.media-card:nth-child(2) { animation-delay: 0.1s; }
.media-card:nth-child(3) { animation-delay: 0.15s; }
.media-card:nth-child(4) { animation-delay: 0.2s; }
.media-card:nth-child(5) { animation-delay: 0.25s; }
.media-card:nth-child(6) { animation-delay: 0.3s; }
.media-card:nth-child(7) { animation-delay: 0.35s; }

/* Responsive Honeycomb */
@media (max-width: 992px) {
    .media-grid {
        --hex-size: 140px;
    }
    
    .media-card img {
        max-width: 75px;
    }
    
    .media-card--text span {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .media-partners-page {
        padding: 80px 0 120px;
    }

    .media-filter {
        padding-inline: 1.6rem;
    }
    
    .media-grid {
        --hex-size: 115px;
        --hex-gap: 6px;
        padding: 0 1rem;
    }
    
    .honeycomb-row:nth-child(even) {
        margin-left: calc(var(--hex-size) * 0.55);
    }
    
    .media-card img {
        max-width: 60px;
    }
    
    .media-card--text span {
        font-size: 0.72rem;
        padding: 0.4rem;
    }
}

@media (max-width: 480px) {
    .media-grid {
        --hex-size: 95px;
        --hex-gap: 5px;
    }
    
    .honeycomb-row:nth-child(even) {
        margin-left: calc(var(--hex-size) * 0.52);
    }
    
    .media-card img {
        max-width: 50px;
    }
    
    .media-card--text span {
        font-size: 0.65rem;
    }
}

/* ===============================
   Contact Page Styles
   =============================== */
.contact-hero-section {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fe 65%, #eef2ff 100%);
}

.contact-hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #101323;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    font-family: 'Montserrat', 'Poppins', sans-serif;
    letter-spacing: 0.05em;
}

.contact-hero-content p {
    font-size: 1.1rem;
    color: #5a5d72;
    line-height: 1.7;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.contact-details-section {
    padding: 5rem 2rem;
    background: #fff;
}

.contact-details-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.contact-detail-card {
    background: #fff;
    border: 1px solid #ececf3;
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(17, 23, 41, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Phone Card - Blue */
.contact-card-phone {
    border-color: rgba(33, 150, 243, 0.3);
}

.contact-card-phone:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(33, 150, 243, 0.2);
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.08), rgba(255, 255, 255, 0.95));
    border-color: rgba(33, 150, 243, 0.5);
}

.contact-card-phone .contact-icon {
    color: #2196F3;
    border-color: rgba(33, 150, 243, 0.3);
}

.contact-card-phone .contact-icon path {
    stroke: #2196F3;
}

.contact-card-phone:hover .contact-icon {
    background: rgba(33, 150, 243, 0.1);
    border-color: rgba(33, 150, 243, 0.5);
    transform: scale(1.1);
}

/* WhatsApp Card - Green */
.contact-card-whatsapp {
    border-color: rgba(37, 211, 102, 0.3);
}

.contact-card-whatsapp:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.2);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(255, 255, 255, 0.95));
    border-color: rgba(37, 211, 102, 0.5);
}

.contact-card-whatsapp .contact-icon {
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.3);
}

.contact-card-whatsapp .contact-icon path:first-child {
    stroke: #25D366;
    fill: none;
}

.contact-card-whatsapp .contact-icon path:last-child {
    fill: #25D366;
    stroke: none;
}

.contact-card-whatsapp:hover .contact-icon {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.5);
    transform: scale(1.1);
}

/* Email Card - Blue */
.contact-card-email {
    border-color: rgba(66, 133, 244, 0.3);
}

.contact-card-email:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(66, 133, 244, 0.2);
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.08), rgba(255, 255, 255, 0.95));
    border-color: rgba(66, 133, 244, 0.5);
}

.contact-card-email .contact-icon {
    color: #4285F4;
    border-color: rgba(66, 133, 244, 0.3);
}

.contact-card-email .contact-icon path,
.contact-card-email .contact-icon polyline {
    stroke: #4285F4;
}

.contact-card-email:hover .contact-icon {
    background: rgba(66, 133, 244, 0.1);
    border-color: rgba(66, 133, 244, 0.5);
    transform: scale(1.1);
}

/* Address Card - Red */
.contact-card-address {
    border-color: rgba(234, 67, 53, 0.3);
}

.contact-card-address:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(234, 67, 53, 0.2);
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.08), rgba(255, 255, 255, 0.95));
    border-color: rgba(234, 67, 53, 0.5);
}

.contact-card-address .contact-icon {
    color: #EA4335;
    border-color: rgba(234, 67, 53, 0.3);
}

.contact-card-address .contact-icon path,
.contact-card-address .contact-icon circle {
    stroke: #EA4335;
}

.contact-card-address:hover .contact-icon {
    background: rgba(234, 67, 53, 0.1);
    border-color: rgba(234, 67, 53, 0.5);
    transform: scale(1.1);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1.5px solid #e4e4ef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f70303;
    background: #fff;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}


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

.contact-icon path,
.contact-icon circle,
.contact-icon polyline,
.contact-icon polygon {
    stroke: #f70303;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-icon path[fill="currentColor"],
.contact-icon path[fill] {
    fill: #f70303;
    stroke: none;
}

.contact-detail-card h3 {
    font-size: 1.15rem;
    color: #101323;
    font-weight: 700;
    margin: 0;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.contact-link {
    font-size: 0.95rem;
    color: #5a5d72;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    word-break: break-all;
}

.contact-link:hover {
    color: #f70303;
}

.contact-address {
    font-size: 0.95rem;
    color: #5a5d72;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

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

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 3rem 1.5rem 2rem;
    }

    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .contact-hero-content p {
        font-size: 1rem;
    }

    .contact-details-section {
        padding: 3rem 1.5rem;
    }

    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .contact-detail-card {
        padding: 1.5rem 1.25rem;
    }

    .contact-detail-card h3 {
        font-size: 1.1rem;
    }
}

/* ============================================
   CHAT WIDGET STYLES
   ============================================ */
:root { --chat-primary: #e74266; --chat-primary-dark: #cf3c5c; }
#chat-popup { position: fixed; bottom: 100px; right: 25px; width: 340px; max-width: calc(100vw - 50px); background: #fff; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); overflow: hidden; display: none; flex-direction: column; z-index: 1000; }
#chat-popup .close-btn { position: absolute; top: 10px; right: 12px; background: transparent; border: none; font-size: 22px; cursor: pointer; color: var(--chat-primary); width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.3s ease; }
#chat-popup .close-btn:hover { background: rgba(231,66,102,0.1); transform: rotate(90deg); }
#chat-popup #form-container { padding: 24px 20px 20px; display: flex; flex-direction: column; gap: 14px; }
#chat-popup #form-container.hidden { display: none !important; }
#chat-popup #chat-window.visible { display: flex !important; }
#chat-popup #form-container h2 { text-align: center; color: var(--chat-primary); margin: 0 0 4px 0; font-size: 20px; font-weight: 700; }
#chat-popup .form-group { display: flex; flex-direction: column; gap: 6px; }
#chat-popup .form-group label { font-weight: 600; font-size: 13px; color: #333; }
#chat-popup .form-group input { width: 100%; padding: 10px 12px; border: 2px solid #e0e0e0; border-radius: 10px; font-size: 14px; background: #fafafa; transition: all 0.3s ease; box-sizing: border-box; }
#chat-popup .form-group input::placeholder { color: #999; }
#chat-popup .form-group input:focus { outline: none; border-color: var(--chat-primary); background: #fff; box-shadow: 0 0 0 4px rgba(231,66,102,0.1); }
#chat-popup #startBtn { background: linear-gradient(135deg, var(--chat-primary), var(--chat-primary-dark)); color: white; border: none; padding: 12px; border-radius: 10px; cursor: pointer; font-size: 15px; font-weight: 600; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(231,66,102,0.3); }
#chat-popup #startBtn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(231,66,102,0.4); }
#chat-popup #chat-window { display: none; flex-direction: column; height: 400px; max-height: calc(100vh - 180px); }
#chat-popup #messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 8px; background: #fafafa; }
#chat-popup .msg { margin: 0; padding: 10px 14px; border-radius: 12px; max-width: 80%; line-height: 1.5; font-size: 14px; }
#chat-popup .msg.user { background: var(--chat-primary); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
#chat-popup .msg.bot { background: #fff; border: 1px solid #e0e0e0; align-self: flex-start; border-bottom-left-radius: 4px; }
#chat-popup .msg a { color: var(--chat-primary); text-decoration: underline; }
#chat-popup .msg.user a { color: #fff; }
#chat-popup .typing { display: flex; align-items: center; gap: 4px; }
#chat-popup .typing-dot { width: 8px; height: 8px; background: #999; border-radius: 50%; animation: chatBlink 1.2s infinite; }
#chat-popup .typing-dot:nth-child(2) { animation-delay: 0.2s; }
#chat-popup .typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatBlink { 0%, 80%, 100% { opacity: 0.2; } 40% { opacity: 1; } }
#chat-popup #chat-input { display: flex; border-top: 1px solid #e0e0e0; padding: 12px; background: #fff; gap: 8px; }
#chat-popup #chat-input input { flex: 1; border: 2px solid #e0e0e0; padding: 10px 14px; border-radius: 24px; font-size: 14px; outline: none; }
#chat-popup #chat-input input:focus { border-color: var(--chat-primary); box-shadow: 0 0 0 3px rgba(231,66,102,0.1); }
#chat-popup #sendBtn { background: var(--chat-primary); color: white; border: none; padding: 10px 18px; border-radius: 24px; font-weight: 600; cursor: pointer; transition: 0.3s; }
#chat-popup #sendBtn:hover { background: var(--chat-primary-dark); transform: translateY(-1px); }
@media (max-width: 400px) { #chat-popup { right: 10px; left: 10px; width: auto; bottom: 80px; } }

/* ============================================
   QUOTE MODAL STYLES
   ============================================ */
.quote-modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(5px); display: none; align-items: center; justify-content: center; z-index: 9999; opacity: 0; visibility: hidden; transition: all 0.3s ease; padding: 20px; }
.quote-modal-overlay.active { display: flex; opacity: 1; visibility: visible; }
.quote-modal { background: #fff; border-radius: 16px; max-width: 600px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; transform: scale(0.9) translateY(20px); transition: transform 0.3s ease; box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3); }
.quote-modal-overlay.active .quote-modal { transform: scale(1) translateY(0); }
.quote-modal-close { position: absolute; top: 15px; right: 15px; width: 36px; height: 36px; border: none; background: #f5f5f5; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; z-index: 10; }
.quote-modal-close:hover { background: #f70303; }
.quote-modal-close svg { width: 20px; height: 20px; color: #333; transition: color 0.3s ease; }
.quote-modal-close:hover svg { color: #fff; }
.quote-modal-header { text-align: center; padding: 30px 30px 20px; border-bottom: 1px solid #eee; }
.quote-modal-logo { width: auto; height: 50px; max-width: 180px; object-fit: contain; margin-bottom: 15px; }
.quote-modal-header h3 { font-size: 1.5rem; color: #101323; margin-bottom: 8px; font-weight: 700; }
.quote-modal-header p { color: #5a5d72; font-size: 0.9rem; }
.quote-form { padding: 25px 30px 30px; }
.quote-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.quote-form-group { margin-bottom: 18px; }
.quote-form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #101323; margin-bottom: 6px; }
.quote-form-group input, .quote-form-group select, .quote-form-group textarea { width: 100%; padding: 12px 15px; border: 1.5px solid #e4e4ef; border-radius: 8px; font-size: 0.95rem; color: #333; background: #fff; transition: all 0.3s ease; font-family: inherit; box-sizing: border-box; }
.quote-form-group input:focus, .quote-form-group select:focus, .quote-form-group textarea:focus { outline: none; border-color: #f70303; box-shadow: 0 0 0 3px rgba(247, 3, 3, 0.1); }
.quote-form-group textarea { resize: vertical; min-height: 100px; }
.quote-submit-btn { width: 100%; padding: 14px 24px; background: linear-gradient(135deg, #f70303 0%, #c70202 100%); color: #fff; border: none; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(247, 3, 3, 0.3); }
.quote-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(247, 3, 3, 0.4); }
.quote-submit-btn svg { width: 20px; height: 20px; }
.quote-submit-btn svg.spin { animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@media (max-width: 600px) { .quote-modal { border-radius: 12px; max-height: 95vh; } .quote-modal-header { padding: 25px 20px 15px; } .quote-modal-header h3 { font-size: 1.3rem; } .quote-form { padding: 20px; } .quote-form-row { grid-template-columns: 1fr; gap: 0; } }
