/* Material Design 3 (M3) Custom Theme for 2Hunna Media Productions */

/* CSS Custom Properties - M3 Color Tokens */
:root {
    /* Primary Colors - Gold/Amber for premium feel */
    --md-sys-color-primary: #FFB800;
    --md-sys-color-on-primary: #1A1A1A;
    --md-sys-color-primary-container: #FFE082;
    --md-sys-color-on-primary-container: #1A1A1A;
    
    /* Secondary Colors - Deep Purple */
    --md-sys-color-secondary: #7C4DFF;
    --md-sys-color-on-secondary: #FFFFFF;
    --md-sys-color-secondary-container: #B388FF;
    --md-sys-color-on-secondary-container: #1A1A1A;
    
    /* Tertiary Colors */
    --md-sys-color-tertiary: #00E5FF;
    --md-sys-color-on-tertiary: #1A1A1A;
    
    /* Surface Colors - Dark Theme */
    --md-sys-color-surface: #0D0D0D;
    --md-sys-color-surface-dim: #0A0A0A;
    --md-sys-color-surface-bright: #1A1A1A;
    --md-sys-color-surface-container-lowest: #050505;
    --md-sys-color-surface-container-low: #0D0D0D;
    --md-sys-color-surface-container: #141414;
    --md-sys-color-surface-container-high: #1F1F1F;
    --md-sys-color-surface-container-highest: #2A2A2A;
    --md-sys-color-on-surface: #E6E6E6;
    --md-sys-color-on-surface-variant: #B3B3B3;
    
    /* Background */
    --md-sys-color-background: #0D0D0D;
    --md-sys-color-on-background: #E6E6E6;
    
    /* Outline */
    --md-sys-color-outline: #404040;
    --md-sys-color-outline-variant: #2A2A2A;
    
    /* Error */
    --md-sys-color-error: #FF5252;
    --md-sys-color-on-error: #FFFFFF;
    
    /* Typography Scale */
    --md-sys-typescale-display-large: 57px;
    --md-sys-typescale-display-medium: 45px;
    --md-sys-typescale-display-small: 36px;
    --md-sys-typescale-headline-large: 32px;
    --md-sys-typescale-headline-medium: 28px;
    --md-sys-typescale-headline-small: 24px;
    --md-sys-typescale-title-large: 22px;
    --md-sys-typescale-title-medium: 16px;
    --md-sys-typescale-title-small: 14px;
    --md-sys-typescale-body-large: 16px;
    --md-sys-typescale-body-medium: 14px;
    --md-sys-typescale-body-small: 12px;
    --md-sys-typescale-label-large: 14px;
    --md-sys-typescale-label-medium: 12px;
    --md-sys-typescale-label-small: 11px;
    
    /* Elevation */
    --md-sys-elevation-level1: 0 1px 3px 1px rgba(0,0,0,0.15), 0 1px 2px rgba(0,0,0,0.3);
    --md-sys-elevation-level2: 0 2px 6px 2px rgba(0,0,0,0.15), 0 1px 2px rgba(0,0,0,0.3);
    --md-sys-elevation-level3: 0 4px 8px 3px rgba(0,0,0,0.15), 0 1px 3px rgba(0,0,0,0.3);
    --md-sys-elevation-level4: 0 6px 10px 4px rgba(0,0,0,0.15), 0 2px 3px rgba(0,0,0,0.3);
    --md-sys-elevation-level5: 0 8px 12px 6px rgba(0,0,0,0.15), 0 4px 4px rgba(0,0,0,0.3);
    
    /* Shape */
    --md-sys-shape-corner-none: 0px;
    --md-sys-shape-corner-extra-small: 4px;
    --md-sys-shape-corner-small: 8px;
    --md-sys-shape-corner-medium: 12px;
    --md-sys-shape-corner-large: 16px;
    --md-sys-shape-corner-extra-large: 28px;
    --md-sys-shape-corner-full: 9999px;
    
    /* State layers */
    --md-sys-state-hover-opacity: 0.08;
    --md-sys-state-focus-opacity: 0.12;
    --md-sys-state-pressed-opacity: 0.12;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--md-sys-color-background);
    color: var(--md-sys-color-on-background);
    line-height: 1.5;
    font-size: var(--md-sys-typescale-body-large);
}

/* Typography */
.display-large {
    font-size: var(--md-sys-typescale-display-large);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.25px;
}

.display-medium {
    font-size: var(--md-sys-typescale-display-medium);
    font-weight: 400;
    line-height: 1.15;
}

.display-small {
    font-size: var(--md-sys-typescale-display-small);
    font-weight: 400;
    line-height: 1.22;
}

.headline-large {
    font-size: var(--md-sys-typescale-headline-large);
    font-weight: 400;
    line-height: 1.25;
}

.headline-medium {
    font-size: var(--md-sys-typescale-headline-medium);
    font-weight: 400;
    line-height: 1.28;
}

.headline-small {
    font-size: var(--md-sys-typescale-headline-small);
    font-weight: 400;
    line-height: 1.33;
}

.title-large {
    font-size: var(--md-sys-typescale-title-large);
    font-weight: 500;
    line-height: 1.27;
}

.title-medium {
    font-size: var(--md-sys-typescale-title-medium);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.15px;
}

.body-large {
    font-size: var(--md-sys-typescale-body-large);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.body-medium {
    font-size: var(--md-sys-typescale-body-medium);
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: 0.25px;
}

.label-large {
    font-size: var(--md-sys-typescale-label-large);
    font-weight: 500;
    line-height: 1.43;
    letter-spacing: 0.1px;
}

/* ============================================
   PREMIUM NAVBAR - Modern Glass Morphism Design
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(13, 13, 13, 0.98) 0%, 
        rgba(13, 13, 13, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 184, 0, 0.25);
    transition: all 0.4s ease;
}

.navbar.scrolled::before {
    background: rgba(13, 13, 13, 0.98);
    border-bottom-color: rgba(255, 184, 0, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

/* Brand Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.brand-logo {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 14px;
    overflow: hidden;
}

.brand-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
}

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

.brand-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0D0D0D;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.brand-logo-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #FFB800, #7C4DFF, #00E5FF, #FFB800);
    background-size: 400% 400%;
    animation: glowRotate 4s linear infinite;
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}

.navbar-brand:hover .brand-logo-glow {
    opacity: 0.6;
}

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

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name-primary {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--md-sys-color-primary);
    letter-spacing: 2px;
}

.brand-name-secondary {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--md-sys-color-on-surface-variant);
    letter-spacing: 4px;
}

/* Navigation Items */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    position: relative;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--md-sys-color-on-surface-variant);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1), rgba(124, 77, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-item:hover::before {
    opacity: 1;
}

.nav-item:hover {
    color: var(--md-sys-color-primary);
}

.nav-item-text {
    position: relative;
    z-index: 1;
}

.nav-item-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--md-sys-color-primary), var(--md-sys-color-secondary));
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover .nav-item-indicator,
.nav-item.active .nav-item-indicator {
    transform: translateX(-50%) scaleX(1);
}

.nav-item.active {
    color: var(--md-sys-color-primary);
}

/* CTA Button */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    margin-left: 16px;
    background: linear-gradient(135deg, var(--md-sys-color-primary) 0%, #FF9500 100%);
    color: var(--md-sys-color-on-primary);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 184, 0, 0.4);
}

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

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

/* Mobile Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 100;
}

.toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--md-sys-color-on-surface);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.navbar-toggle.active .toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggle.active .toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.mobile-nav-overlay.active .mobile-nav {
    transform: translateY(0);
}

.mobile-nav-item {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--md-sys-color-on-surface-variant);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--md-sys-color-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--md-sys-color-primary);
}

.mobile-nav-item:hover::after,
.mobile-nav-item.active::after {
    transform: scaleX(1);
}

.mobile-nav-cta {
    margin-top: 24px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--md-sys-color-primary), #FF9500);
    color: var(--md-sys-color-on-primary);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.mobile-nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 184, 0, 0.4);
}

/* Legacy navbar styles (keeping for compatibility) */
.top-app-bar {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--md-sys-color-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--md-sys-color-primary), var(--md-sys-color-secondary));
    border-radius: var(--md-sys-shape-corner-small);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--md-sys-color-on-primary);
}

.logo-text {
    font-size: var(--md-sys-typescale-title-large);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--md-sys-color-on-surface);
}

.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    color: var(--md-sys-color-on-surface-variant);
    text-decoration: none;
    padding: 10px 24px;
    border-radius: var(--md-sys-shape-corner-full);
    font-size: var(--md-sys-typescale-label-large);
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.nav-links a:hover {
    background-color: rgba(255, 184, 0, var(--md-sys-state-hover-opacity));
    color: var(--md-sys-color-primary);
}

.nav-links a.active {
    background-color: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--md-sys-color-on-surface);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--md-sys-shape-corner-full);
}

.mobile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        var(--md-sys-color-surface-container-lowest) 0%,
        var(--md-sys-color-surface) 50%,
        var(--md-sys-color-surface-container) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--md-sys-color-surface-container-high);
    padding: 8px 16px;
    border-radius: var(--md-sys-shape-corner-full);
    margin-bottom: 24px;
    border: 1px solid var(--md-sys-color-outline-variant);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--md-sys-color-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--md-sys-color-on-surface) 0%, var(--md-sys-color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: var(--md-sys-typescale-title-large);
    color: var(--md-sys-color-on-surface-variant);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: var(--md-sys-typescale-display-small);
    font-weight: 700;
    color: var(--md-sys-color-primary);
}

.stat-label {
    font-size: var(--md-sys-typescale-body-medium);
    color: var(--md-sys-color-on-surface-variant);
}

/* Buttons - M3 Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 24px;
    height: 40px;
    border-radius: var(--md-sys-shape-corner-full);
    font-size: var(--md-sys-typescale-label-large);
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-filled {
    background-color: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
}

.btn-filled:hover {
    box-shadow: var(--md-sys-elevation-level1);
    filter: brightness(1.1);
}

.btn-outlined {
    background-color: transparent;
    color: var(--md-sys-color-primary);
    border: 1px solid var(--md-sys-color-outline);
}

.btn-outlined:hover {
    background-color: rgba(255, 184, 0, var(--md-sys-state-hover-opacity));
}

.btn-tonal {
    background-color: var(--md-sys-color-surface-container-high);
    color: var(--md-sys-color-on-surface);
}

.btn-tonal:hover {
    background-color: var(--md-sys-color-surface-container-highest);
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Cards - M3 Style */
.card {
    background-color: var(--md-sys-color-surface-container);
    border-radius: var(--md-sys-shape-corner-large);
    padding: 24px;
    transition: all 0.3s ease;
    border: 1px solid var(--md-sys-color-outline-variant);
}

.card:hover {
    background-color: var(--md-sys-color-surface-container-high);
    box-shadow: var(--md-sys-elevation-level2);
}

.card-elevated {
    box-shadow: var(--md-sys-elevation-level1);
}

.card-filled {
    background-color: var(--md-sys-color-surface-container-highest);
    border: none;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--md-sys-color-primary), var(--md-sys-color-secondary));
    border-radius: var(--md-sys-shape-corner-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
}

.card h3 {
    margin-bottom: 12px;
    color: var(--md-sys-color-on-surface);
}

.card p {
    color: var(--md-sys-color-on-surface-variant);
}

/* Section Styles */
.section {
    padding: 96px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header h2 {
    margin-bottom: 16px;
    color: var(--md-sys-color-on-surface);
}

.section-header p {
    color: var(--md-sys-color-on-surface-variant);
    font-size: var(--md-sys-typescale-body-large);
}

.section-alt {
    background-color: var(--md-sys-color-surface-container-low);
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--md-sys-color-primary), var(--md-sys-color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--md-sys-color-surface-container-high), var(--md-sys-color-surface-container));
    border-radius: var(--md-sys-shape-corner-extra-large);
    position: relative;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.about-image::before {
    content: '2H';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--md-sys-color-primary), var(--md-sys-color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}

.about-text h2 {
    margin-bottom: 24px;
}

.about-text p {
    color: var(--md-sys-color-on-surface-variant);
    margin-bottom: 16px;
}

.about-list {
    list-style: none;
    margin-top: 24px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--md-sys-color-on-surface);
}

.about-list li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background-color: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--md-sys-color-primary), var(--md-sys-color-secondary));
}

.timeline-item {
    position: relative;
    padding-bottom: 32px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 4px;
    width: 16px;
    height: 16px;
    background-color: var(--md-sys-color-primary);
    border-radius: 50%;
    border: 3px solid var(--md-sys-color-surface);
}

.timeline-date {
    font-size: var(--md-sys-typescale-label-large);
    color: var(--md-sys-color-primary);
    margin-bottom: 8px;
}

.timeline-content h4 {
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--md-sys-color-on-surface-variant);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 16/9;
    background-color: var(--md-sys-color-surface-container);
    border-radius: var(--md-sys-shape-corner-large);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.portfolio-item-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--md-sys-color-surface-container-high), var(--md-sys-color-surface-container));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-item-bg {
    transform: scale(1.05);
}

/* Play button for video items */
.play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 184, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--md-sys-color-on-primary);
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: var(--md-sys-elevation-level3);
}

.portfolio-item:hover .play-button {
    transform: scale(1.1);
    background: var(--md-sys-color-primary);
}

/* Video stats */
.video-stats {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.video-stat {
    font-size: 13px;
    color: var(--md-sys-color-on-surface);
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: var(--md-sys-shape-corner-small);
}

.video-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--md-sys-elevation-level4);
}

.video-yt-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    margin-bottom: 8px;
}

.portfolio-overlay p {
    color: var(--md-sys-color-on-surface-variant);
    font-size: var(--md-sys-typescale-body-medium);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--md-sys-color-on-surface-variant);
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background-color: var(--md-sys-color-surface-container);
    border-radius: var(--md-sys-shape-corner-medium);
    transition: all 0.2s ease;
}

.contact-method:hover {
    background-color: var(--md-sys-color-surface-container-high);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background-color: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
    border-radius: var(--md-sys-shape-corner-small);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-method-text h4 {
    font-size: var(--md-sys-typescale-title-small);
    margin-bottom: 4px;
}

.contact-method-text p {
    margin: 0;
    font-size: var(--md-sys-typescale-body-medium);
}

/* Form Styles - M3 */
.form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 16px;
    background-color: var(--md-sys-color-surface-container-highest);
    border: 1px solid var(--md-sys-color-outline);
    border-radius: var(--md-sys-shape-corner-small);
    color: var(--md-sys-color-on-surface);
    font-size: var(--md-sys-typescale-body-large);
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--md-sys-color-primary);
    box-shadow: 0 0 0 1px var(--md-sys-color-primary);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--md-sys-color-on-surface-variant);
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.form-field label {
    position: absolute;
    top: -8px;
    left: 12px;
    background-color: var(--md-sys-color-surface-container-highest);
    padding: 0 4px;
    font-size: var(--md-sys-typescale-body-small);
    color: var(--md-sys-color-on-surface-variant);
}

/* Footer */
.footer {
    background-color: var(--md-sys-color-surface-container-lowest);
    border-top: 1px solid var(--md-sys-color-outline-variant);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--md-sys-color-on-surface-variant);
    margin-top: 16px;
    max-width: 300px;
}

.footer-links h4 {
    color: var(--md-sys-color-on-surface);
    margin-bottom: 16px;
    font-size: var(--md-sys-typescale-title-small);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--md-sys-color-on-surface-variant);
    text-decoration: none;
    font-size: var(--md-sys-typescale-body-medium);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--md-sys-color-primary);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--md-sys-color-surface-container);
    border-radius: var(--md-sys-shape-corner-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--md-sys-color-on-surface);
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background-color: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--md-sys-color-outline-variant);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--md-sys-color-on-surface-variant);
    font-size: var(--md-sys-typescale-body-small);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal a {
    color: var(--md-sys-color-on-surface-variant);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--md-sys-color-primary);
}

.footer-legal span {
    color: var(--md-sys-color-outline);
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--md-sys-color-surface-container-highest) 0%, var(--md-sys-color-surface-container-high) 100%);
    border-top: 1px solid var(--md-sys-color-outline-variant);
    padding: 20px 24px;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner.show {
    display: flex !important;
    transform: translateY(0) !important;
}

.cookie-banner.hide {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    font-size: var(--md-sys-typescale-title-medium);
    font-weight: 600;
    color: var(--md-sys-color-primary);
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: var(--md-sys-typescale-body-medium);
    color: var(--md-sys-color-on-surface-variant);
    line-height: 1.6;
    margin-bottom: 8px;
}

.cookie-link {
    color: var(--md-sys-color-primary);
    text-decoration: none;
    font-size: var(--md-sys-typescale-body-small);
    font-weight: 500;
    transition: color 0.2s ease;
}

.cookie-link:hover {
    color: var(--md-sys-color-primary-container);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px;
    font-size: var(--md-sys-typescale-label-large);
    font-weight: 600;
    border-radius: var(--md-sys-shape-corner-full);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
}

.cookie-btn.btn-primary {
    background: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
}

.cookie-btn.btn-primary:hover {
    background: var(--md-sys-color-primary-container);
    transform: scale(1.02);
}

.cookie-btn.btn-secondary {
    background: transparent;
    color: var(--md-sys-color-on-surface);
    border: 1px solid var(--md-sys-color-outline);
}

.cookie-btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--md-sys-color-on-surface);
}

/* Mobile responsiveness for cookie banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-icon {
        font-size: 36px;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 14px 20px;
    }
}

/* Platform Cards */
.platform-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--md-sys-elevation-level3);
}

.platform-card::after {
    content: '↗';
    position: absolute;
    top: 12px;
    right: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
    color: var(--md-sys-color-on-surface-variant);
}

.platform-card:hover::after {
    opacity: 1;
}

/* Chip */
.chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background-color: var(--md-sys-color-surface-container-high);
    border: 1px solid var(--md-sys-color-outline-variant);
    border-radius: var(--md-sys-shape-corner-small);
    font-size: var(--md-sys-typescale-label-large);
    color: var(--md-sys-color-on-surface-variant);
}

.chip-filled {
    background-color: var(--md-sys-color-secondary-container);
    color: var(--md-sys-color-on-secondary-container);
    border: none;
}

/* Divider */
.divider {
    height: 1px;
    background-color: var(--md-sys-color-outline-variant);
    margin: 24px 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: var(--md-sys-typescale-display-medium);
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background-color: var(--md-sys-color-surface);
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--md-sys-color-outline-variant);
        align-items: center;
    }
    
    .nav-links.open {
        display: flex;
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: block;
        font-size: 24px;
    }
    
    .hero h1 {
        font-size: var(--md-sys-typescale-display-small);
    }
    
    .hero p {
        font-size: var(--md-sys-typescale-body-large);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand p {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .section {
        padding: 64px 0;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-list {
        text-align: left;
        display: inline-block;
    }
    
    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-methods {
        align-items: center;
    }
    
    .contact-method {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .display-large {
        font-size: var(--md-sys-typescale-headline-large);
    }
    
    .display-medium {
        font-size: var(--md-sys-typescale-headline-medium);
    }
    
    .display-small {
        font-size: var(--md-sys-typescale-headline-small);
    }
    
    .headline-large {
        font-size: var(--md-sys-typescale-headline-medium);
    }
    
    .headline-medium {
        font-size: var(--md-sys-typescale-headline-small);
    }
    
    .container {
        padding: 0 16px;
    }
    
    .btn-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-group .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .top-app-bar {
        padding: 0 16px;
    }
    
    .logo-text {
        font-size: var(--md-sys-typescale-title-medium);
    }
    
    .card {
        padding: 20px;
    }
    
    .section {
        padding: 48px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .hero-badge {
        font-size: var(--md-sys-typescale-label-medium);
        padding: 6px 12px;
    }
    
    .stat-number {
        font-size: var(--md-sys-typescale-headline-large);
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item {
        aspect-ratio: 4/3;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--md-sys-color-surface);
}

::-webkit-scrollbar-thumb {
    background: var(--md-sys-color-outline);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--md-sys-color-outline-variant);
}

/* ============================================
   SERVICE SHOWCASE - Video Phone Display
   ============================================ */
.service-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 40px 0;
}

.service-showcase-reverse {
    direction: rtl;
}

.service-showcase-reverse > * {
    direction: ltr;
}

.service-content {
    max-width: 540px;
}

.service-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.15), rgba(255, 184, 0, 0.05));
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--md-sys-color-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-badge-alt {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(0, 229, 255, 0.05));
    border-color: rgba(0, 229, 255, 0.3);
    color: var(--md-sys-color-tertiary);
}

.service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--md-sys-color-on-surface);
    margin: 20px 0 24px;
    line-height: 1.2;
}

.service-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--md-sys-color-on-surface-variant);
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    margin: 32px 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--md-sys-color-on-surface);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-icon {
    font-size: 14px;
    opacity: 0.8;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--md-sys-color-primary) 0%, #FF9500 100%);
    color: var(--md-sys-color-on-primary);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.3);
    margin-top: 16px;
}

.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 184, 0, 0.4);
}

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

.service-cta:hover svg {
    transform: translateX(5px);
}

/* Video Phone Frame */
.service-video-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-phone-frame {
    position: relative;
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 50px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.video-phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.phone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #0D0D0D;
    border-radius: 20px;
    z-index: 10;
}

.phone-notch::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 50%;
    border: 2px solid #2a2a2a;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 180%;
    border: none;
    pointer-events: none;
}

.phone-ui-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 5;
}

.video-engagement {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

.engagement-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.engagement-icon {
    font-size: 20px;
}

/* Video Glow Effect */
.video-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

.video-glow-purple {
    background: radial-gradient(circle, rgba(124, 77, 255, 0.3) 0%, transparent 70%);
}

.video-glow-cyan {
    background: radial-gradient(circle, rgba(0, 229, 255, 0.3) 0%, transparent 70%);
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Mobile Responsive for Service Showcase */
@media (max-width: 1024px) {
    .service-showcase {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .service-showcase-reverse {
        direction: ltr;
    }
    
    .service-content {
        max-width: 100%;
        order: 2;
    }
    
    .service-video-showcase {
        order: 1;
    }
    
    .service-title {
        font-size: 32px;
    }
    
    .service-features {
        text-align: left;
    }
    
    .service-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-container {
        padding: 0 20px;
    }
    
    .video-phone-frame {
        width: 240px;
        height: 500px;
    }
    
    .service-title {
        font-size: 28px;
    }
    
    .service-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .video-phone-frame {
        width: 200px;
        height: 420px;
        border-radius: 36px;
        padding: 8px;
    }
    
    .video-container {
        border-radius: 30px;
    }
    
    .phone-notch {
        width: 80px;
        height: 22px;
        top: 12px;
    }
    
    .service-title {
        font-size: 24px;
    }
    
    .brand-name {
        display: none;
    }
}
