/* ===================================================================
   UNIFIED STYLESHEET FOR SHOWCASE CREATIVE GROUP
   =================================================================== */

/* ================================
   1. CSS VARIABLES & BASE STYLES
   ================================ */
:root {
    --dark: #2B2B2B;
    --orange: #C1440E;
    --blue: #4A718C;
    --light: #F4F1EB;
    --gray: #e9e9e9;
    --white: #ffffff;
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Unified Typographic Scale */
    --font-scale--1: 0.8rem;
    --font-scale-0: 1rem;
    --font-scale-1: 1.25rem;
    --font-scale-2: 1.563rem;
    --font-scale-3: 2.5rem;
    --font-scale-4: 4rem;
}

body {
    position: relative;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
}

p {
    font-size: var(--font-scale-0);
    line-height: 1.6;
}

/* Page Top Padding for Fixed Header */
.page-content {
    padding-top: 90px;
}

/* ================================
   2. PAGE LOADER
   ================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--dark);
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

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

.loader-text {
    color: white;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

/* ================================
   3. UNIFIED HEADER & NAVIGATION
   ================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background-color: rgba(43, 43, 43, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Homepage specific transparent header state */
header.at-top {
    background-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.logo img {
    height: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav ul {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 8px 16px;
    color: white;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--orange) !important;
}

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

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

/* ================================
   4. UNIFIED MOBILE NAVIGATION
   ================================ */
.nav-toggle {
    display: none;
    position: relative;
    z-index: 1002;
    width: 30px;
    height: 30px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    opacity: 1;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 8px; }
.nav-toggle span:nth-child(2) { top: 14px; }
.nav-toggle span:nth-child(3) { top: 20px; }

.nav-toggle.active span:nth-child(1) { top: 14px; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-20px); }
.nav-toggle.active span:nth-child(3) { top: 14px; transform: rotate(-45deg); }

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: #2B2B2B;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-footer {
    display: none;
}

/* ================================
   5. UNIFIED BUTTONS & CTAs
   ================================ */
.contact-btn {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background-color: var(--orange);
    color: white !important;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-btn:hover {
    background-color: #d34c10;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 68, 14, 0.3);
}

.contact-btn::after {
    display: none;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    padding: 12px 30px;
    background-color: var(--orange);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-base);
}

.cta-button:hover {
    background-color: #d34c10;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(193, 68, 14, 0.3);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.dark-btn {
    background-color: var(--dark);
    color: white;
    transition: var(--transition-base);
    padding: 12px 25px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border-radius: 4px;
}

/* ================================
   6. UNIFIED FOOTER
   ================================ */
footer {
    padding: 60px 0 0;
    background-color: var(--dark);
}

.footer-main {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-tagline {
    margin-bottom: 15px;
    color: var(--orange);
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-heading {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--orange);
}

.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    display: inline-block;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact i {
    width: 20px;
    color: var(--orange);
    text-align: center;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--orange);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 18px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(193, 68, 14, 0.3);
}

.footer-bottom {
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.55rem;
}


/* ================================
   7. PAGE-SPECIFIC STYLES
   ================================ */

/* Standard Heading Sizes */
h1 {
    font-size: var(--font-scale-4);
    font-weight: 700;
}

h2 {
    font-size: var(--font-scale-3);
    font-weight: 700;
}

/* --------------------------------
   A. INDEX PAGE (index.html)
   -------------------------------- */
.hero {
    height: 100vh;
    min-height: 700px;
    max-height: 1080px;
    overflow: hidden;
    position: relative;
}
#hero-video {
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}
#hero-video.loaded {
    opacity: 1;
}
.hero-text {
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    position: absolute;
    width: 100%;
    text-align: center;
}
.hero-text h1, .hero-text .hero-subtitle {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.hero-text h1 {
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: white;
}
.hero-subtitle {
    font-size: var(--font-scale-1);
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.9;
    color: white;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: float 2s ease-in-out infinite;
    cursor: pointer;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}
.intro {
    padding: 80px 0;
    background-color: var(--light);
}
.intro-heading {
    margin-bottom: 0;
}
.intro-divider {
    display: block;
    width: 100px;
    height: 4px;
    background-color: var(--blue);
    margin: 2rem auto;
    border: none;
    opacity: 1;
}
.intro-subheading {
    font-size: var(--font-scale-2);
    font-weight: 400;
    color: var(--dark);
    margin: 0 auto 1.5rem;
}
.intro-paragraph {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
    position: relative;
    padding: 1rem 45px;
}

.intro-paragraph::before,
.intro-paragraph::after {
    font-family: 'Times New Roman', Times, serif;
    font-size: 4rem;
    font-weight: bold;
    color: var(--blue);
    opacity: 0.2;
    position: absolute;
    line-height: 1;
}

.intro-paragraph::before {
    content: '“';
    top: 0.5rem;
    left: 0;
}

.intro-paragraph::after {
    content: '”';
    bottom: 0;
    right: 0;
}
.services {
    padding: 0;
}
.service-item {
    display: flex;
    align-items: center;
    padding: 80px 40px;
    color: white;
    overflow: hidden;
    position: relative;
}
.service-number-home {
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    z-index: 0;
    line-height: 1;
    user-select: none;
}
.service-item > div {
    position: relative;
    z-index: 1;
}
.service-left { background-color: rgba(43, 43, 43, 0.95); }
.service-right { background-color: rgba(74, 113, 140, 0.95); }
.service-features {
    list-style: none;
    padding: 0;
}
.service-features li::before {
    content: '✓';
    color: var(--white);
    font-weight: bold;
    margin-right: 10px;
}
.service-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
}
.arrow-icon { margin-left: 10px; }
.stats-section {
    padding: 40px 0;
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}
.stats-section .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue);
}
.stats-section .stat-label {
    display: block;
    font-size: var(--font-scale--1);
    text-transform: uppercase;
}
.work-matters {
    padding: 80px 0;
    background-color: var(--gray);
}
.talk-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background-color: var(--light);
    text-align: center;
}
.talk-section h2 {
    font-weight: 700;
}
.talk-section .container {
    position: relative;
    z-index: 1;
}
.talk-section p {
    margin-bottom: 30px;
}
.hero-text .cta-button:hover {
    box-shadow: none;
}

/* --------------------------------
   B. WHAT WE DO PAGE (what-we-do.html)
   -------------------------------- */
.progress-indicator {
    position: fixed;
    top: 50%;
    right: 30px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.progress-indicator.visible {
    opacity: 1;
}
.progress-dot {
    position: relative;
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.progress-dot.active {
    background-color: var(--orange);
    transform: scale(1.3);
}
.progress-dot:hover {
    transform: scale(1.2);
}
.progress-dot::after {
    content: attr(data-section);
    position: absolute;
    top: 50%;
    right: 20px;
    padding: 5px 10px;
    background: var(--dark);
    color: white;
    font-size: 12px;
    white-space: nowrap;
    border-radius: 4px;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.progress-dot:hover::after {
    opacity: 1;
}
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--orange);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(193, 68, 14, 0.3);
    transform: translateY(100px);
    transition: all 0.3s ease;
}
.floating-cta.visible {
    transform: translateY(0);
}
.floating-cta:hover {
    background-color: #d34c10;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(193, 68, 14, 0.4);
}
.sales-pitch {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    text-align: center;
}
.service-section {
    padding: 20px 0;
}
.service-wrapper {
    position: relative;
    margin-bottom: 80px;
}
.service-header {
    position: relative;
    margin-bottom: 50px;
    padding: 50px;
    background-color: var(--blue);
    color: white;
}
.service-header h2 {
    margin-bottom: 10px;
}
.service-header .subtitle {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-style: italic;
}
.service-header p {
    font-size: 1rem;
}
.service-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    font-weight: 700;
    opacity: 0.3;
}
.service-media {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 600px;
    background-color: #f0f0f0;
    color: #ccc;
    font-size: 3rem;
}
.service-media video,
.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.digital-media-section .service-media {
    width: 90%;
    max-width: 1200px;
    height: 700px;
    margin: 0 auto 60px;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.digital-media-section .service-header {
    position: absolute;
    right: 0;
    bottom: -40px;
    z-index: 2;
    width: 45%;
    max-width: 600px;
    margin-bottom: 0;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 120px;
    margin-bottom: 50px;
}
.service-box {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 350px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(43, 43, 43, 0.95) 0%, rgba(74, 113, 140, 0.95) 100%);
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-box:hover {
    z-index: 10;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.service-box h4 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 700;
}
.service-box p {
    font-size: 1rem;
    line-height: 1.4;
    opacity: 0.9;
}
.service-box-media {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    transition: all 0.6s ease;
}
.service-box:hover .service-box-media {
    transform: scale(1.1);
    opacity: 0.75;
}
.service-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-box-content {
    position: relative;
    z-index: 1;
}
.service-box-icon {
    margin-bottom: 20px;
    font-size: 2.5rem;
    opacity: 0.8;
}
.website-section .service-media {
    width: 90%;
    max-width: 1200px;
    height: 700px;
    margin: 0 auto 60px;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.website-section .service-header {
    position: absolute;
    left: 0;
    bottom: -40px;
    z-index: 2;
    width: 45%;
    max-width: 600px;
    margin-bottom: 0;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.benefits-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin: 120px 0 50px;
}
.benefit-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    transition: transform 0.3s ease;
}
.benefit-item:hover {
    transform: translateY(-5px);
}
.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
    color: white;
    font-size: 32px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.benefit-item:hover .benefit-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.benefit-item h5 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}
.benefit-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}
.stats-bar {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    margin: 60px 0;
    background: linear-gradient(90deg, var(--dark) 0%, var(--blue) 100%);
    color: white;
}
.stats-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}
.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
}
.stats-bar .stat-number {
    display: block;
    margin-bottom: 5px;
    font-size: 3rem;
    font-weight: 700;
}
.stats-bar .stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}
.pricing-section {
    padding: 80px 0;
    background-color: var(--white);
}
.pricing-section-header {
    text-align: center;
    margin-bottom: 50px;
}
.pricing-section-header h2 {
    font-weight: 700;
    margin-bottom: 15px;
}
.pricing-section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}
.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
}
.pricing-card {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    padding: 30px;
    border: 2px solid transparent;
    transition: var(--transition-base);
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}
.pricing-card-header {
    border-bottom: 1px solid var(--gray);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.pricing-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}
.pricing-card-price {
    margin-bottom: 25px;
}
.pricing-card-price .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--orange);
}
.pricing-card-price .price-note {
    font-size: 0.9rem;
    color: #666;
}
.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    flex-grow: 1;
}
.pricing-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #555;
}
.pricing-card-features i {
    color: var(--blue);
    font-size: 1.1rem;
}
.pricing-card-features .feature-disabled {
    color: #aaa;
    text-decoration: line-through;
}
.pricing-card-features .feature-disabled i {
    color: #ccc;
}
.pricing-card .cta-button {
    background-color: var(--dark);
}
.pricing-card .cta-button:hover {
    background-color: #000;
}
.pricing-card.highlight {
    border-color: var(--orange);
    transform: scale(1.05);
}
.pricing-card.highlight:hover {
    transform: scale(1.05) translateY(-10px);
}
.pricing-card.highlight .cta-button {
    background-color: var(--orange);
    color: var(--white);
}
.pricing-card.highlight .cta-button:hover {
    background-color: #d34c10;
}
.pricing-note {
    margin-top: 30px;
    color: #666;
    font-style: italic;
    text-align: center;
}
.pricing-cta {
    margin-top: 40px;
    text-align: center;
}

/* --------------------------------
   C. WHO WE SERVE PAGE (who-we-serve.html)
   -------------------------------- */
.hero-section {
    background-color: var(--light);
    padding: 40px 0 40px;
    position: relative;
    min-height: 500px;
}
.hero-wrapper {
    position: relative;
    margin-bottom: 0;
}
.hero-title {
    color: var(--dark);
    margin-bottom: 100px;
    text-align: center;
}
.rotating-industry {
    color: var(--dark);
    display: inline-block;
    min-width: 300px;
    text-align: left;
    transition: opacity 0.3s ease;
}
.hero-content-box {
    width: 60%;
    max-width: 750px;
    background-color: var(--blue);
    color: white;
    padding: 50px;
    margin: 0;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 30px;
}
.hero-text-content {
    grid-column: 1;
}
.hero-content-box h2 {
    color: white;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.hero-content-box p {
    margin-bottom: 20px;
    color: white;
    opacity: 0.9;
}
.hero-content-box p:last-child {
    margin-bottom: 0;
}
.hero-image {
    position: absolute;
    right: 0;
    top: -50px;
    width: 55%;
    max-width: 750px;
    height: 500px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background-color: white;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.industry-ticker {
    background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 100%);
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    margin-top: 0;
}
.industry-ticker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    z-index: 0;
}
.ticker-wrapper {
    position: relative;
    z-index: 1;
}
.ticker-row {
    margin-bottom: 15px;
}
.ticker-row:last-child {
    margin-bottom: 0;
}
.ticker-track {
    display: flex;
    width: fit-content;
}
.ticker-track.left {
    animation: scrollLeft 40s linear infinite;
}
.ticker-track.right {
    animation: scrollRight 45s linear infinite;
}
.ticker-content {
    display: flex;
    padding-right: 0;
}
.ticker-item {
    white-space: nowrap;
    font-size: 1.1rem;
    color: white;
    padding: 0 30px;
    font-weight: 500;
    opacity: 0.9;
}
@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.service-features-section {
    padding: 80px 0;
    background-color: white;
}
.feature-item {
    text-align: center;
    margin-bottom: 0;
    transition: transform 0.3s ease;
    padding: 0 20px;
}
.feature-item:hover {
    transform: translateY(-5px);
}
.feature-icon {
    font-size: 3.5rem;
    color: var(--blue);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}
.feature-item:hover .feature-icon {
    color: var(--orange);
}
.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}
.feature-item p {
    color: #666;
    max-width: 400px;
    margin: 0 auto;
}
.why-choose-section {
    padding: 80px 0;
    background-color: var(--gray);
    position: relative;
    overflow: hidden;
}
.why-choose-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 113, 140, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    margin-bottom: 20px;
    color: var(--dark);
}
.section-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}
.why-item {
    text-align: center;
    transition: transform 0.3s ease;
}
.why-item:hover {
    transform: translateY(-5px);
}
.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.why-item:hover .why-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.why-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}
.why-item p {
    color: #666;
}
.cta-section {
    padding: 80px 0;
    background-color: var(--dark);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.cta-content {
    position: relative;
    z-index: 1;
}
.cta-section h2 {
    font-weight: 700;
    margin-bottom: 20px;
}
.cta-section p {
    margin-bottom: 30px;
    opacity: 0.9;
}
.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    animation: rippleEffect 0.6s ease-out;
}
@keyframes rippleEffect {
    from { transform: scale(0); opacity: 1; }
    to { transform: scale(4); opacity: 0; }
}


/* ================================
   8. ANIMATIONS
   ================================ */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

.fade-in { opacity: 0; }
.slide-in-left { transform: translateX(-50px); }
.slide-in-right { transform: translateX(50px); }
.slide-up { transform: translateY(30px); }
.zoom-in { transform: scale(0.95); }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
    from { opacity: 0; transform: translateY(30px); }
}
@keyframes expandWidth {
    to { opacity: 1; width: 100px; }
    from { opacity: 0; width: 0; }
}

/* ================================
   9. RESPONSIVE STYLES (SINGLE BREAKPOINT)
   ================================ */
@media (max-width: 992px) {
   h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2rem;
    }
    .page-content {
        padding-top: 80px;
    }
    
    /* Header & Nav */
    .nav-toggle { display: block; margin-left: 20px; }
    header .container { padding-right: 15px; padding-left: 15px; }
    header .d-flex { justify-content: space-between; align-items: center; }
    nav {
        position: fixed; top: 0; right: 0; z-index: 1001;
        display: flex; flex-direction: column; width: 100%;
        height: 100vh; background-color: #2B2B2B;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        padding-top: 100px; padding-bottom: 30px; box-sizing: border-box;
    }
    nav.active { transform: translateX(0); }
    nav ul { flex-direction: column; align-items: flex-start; height: auto; padding: 0 40px; }
    nav li { width: 100%; text-align: left; }
    nav li a {
        display: block; 
        padding: 18px 0; 
        font-size: 22px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .nav-contact-item { display: none; }
    .mobile-menu-footer {
        display: block; 
        margin-top: auto; 
        text-align: left;
        padding: 30px 40px 0;
    }
    .nav-link::after { display: none; }
    .logo img, header.at-top .logo img { height: 40px; }
    nav ul, .mobile-menu-footer {
        padding-left: 30px;
        padding-right: 30px;
    }
    nav { width: 100%; }

    /* General Typography */
    .intro-subheading { font-size: 1.2rem; }
    .stats-section .stat-number { font-size: 2rem; }
    .cta-button, .dark-btn { font-size: 14px; padding: 10px 20px; }
    
    /* What We Do Page */
    .progress-indicator { display: none; }
    .sales-pitch h3 { font-size: 1.5rem; }
    .digital-media-section .service-media,
    .website-section .service-media,
    .service-media {
        width: 100%;
        height: 250px;
        margin-bottom: 40px;
    }
    .digital-media-section .service-header,
    .website-section .service-header {
        position: relative;
        width: 90%;
        max-width: none;
        margin: -60px auto 0;
        bottom: auto; right: auto; left: auto;
    }
    .service-header { padding: 30px 20px; }
    .service-number { font-size: 3rem; }
    .service-grid { grid-template-columns: 1fr; }
    .stats-bar .stat-number { font-size: 2.5rem; }
    .stats-container { flex-direction: column; gap: 20px; }
    .pricing-card.highlight { transform: scale(1); order: -1; }
    .pricing-grid { flex-direction: column; align-items: center; }
    .pricing-card { max-width: 400px; width: 100%; }
    .service-box { padding: 30px 20px; height: 300px; }
    .service-box h4 { font-size: 1.5rem; }
    .service-box-icon { font-size: 2rem; }
    .benefits-list { flex-direction: column; gap: 20px; }
    .benefit-icon { width: 60px; height: 60px; font-size: 24px; }
    .floating-cta { padding: 10px 15px; font-size: 12px; bottom: 15px; right: 15px; }
    .talk-section .cta-button {
        padding: 12px 20px;
        white-space: nowrap;
        font-size: clamp(0.75rem, 3.5vw, 1rem);
    }
    
    /* Who We Serve Page */
    .hero-title { margin-bottom: 50px; }
    .rotating-industry { min-width: 200px; }
    .hero-section { min-height: auto; padding: 40px 0; }
    .hero-wrapper { margin-bottom: 20px; }
    .hero-content-box {
        width: 100%; max-width: none; padding: 40px 30px;
        margin: 0 0 30px 0; display: block; grid-template-columns: none;
    }
    .hero-text-content { width: 100%; }
    .hero-content-box h2 { margin-bottom: 20px; }
    .hero-content-box p { font-size: 15px; }
    .hero-image {
        position: relative; width: 100%; height: 300px;
        margin: -50px 0 0 0; right: auto; top: auto;
        transform: none; max-width: none;
    }
    .industry-ticker { margin-top: 0; padding: 35px 0; }
    .section-header { margin-bottom: 40px; }
    .why-grid { grid-template-columns: 1fr; gap: 30px; }
    .feature-item { margin-bottom: 30px; }
    .service-features-section, .why-choose-section, .cta-section { padding: 60px 0; }
    .ticker-item { font-size: 1rem; padding: 0 20px; }
    .feature-icon { font-size: 3rem; }
    .feature-item h3 { font-size: 1.3rem; }
    .feature-item p, .cta-section p { font-size: 1rem; }
    .footer-content { justify-content: center; text-align: center; }
}
