/* STRATEGY Website Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Video Splash Screen */
.video-splash {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    min-width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    background: #000000;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
    /* Prevent interaction with video area */
    overflow: hidden;
    /* Ensure it covers everything */
    margin: 0;
    padding: 0;
    /* Prevent scrolling */
    touch-action: none;
    -webkit-overflow-scrolling: none;
    /* Remove flexbox to prevent sizing issues */
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-splash.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    display: none !important; /* Completely remove from layout */
    z-index: -1 !important; /* Move behind everything */
}

.splash-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Changed from cover to contain to show full video */
    object-position: center;
    /* Prevent video controls on mobile */
    -webkit-playsinline: true;
    playsinline: true;
    /* Prevent fullscreen on mobile */
    -webkit-fullscreen: none;
    -moz-fullscreen: none;
    -ms-fullscreen: none;
    fullscreen: none;
    /* Prevent user interaction - CRITICAL for autoplay */
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    /* Hide any native play buttons or controls */
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    /* Ensure video cannot be clicked */
    cursor: default;
    /* Z-index lower than skip button */
    z-index: 10000;
    /* Ensure video fits within container */
    margin: 0;
    padding: 0;
}

/* Hide any video control overlays that might appear */
.splash-video::-webkit-media-controls {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.splash-video::-webkit-media-controls-play-button {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.splash-video::-webkit-media-controls-start-playback-button {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.splash-video::-webkit-media-controls-panel {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Hide controls for Firefox */
.splash-video::-moz-media-controls {
    display: none !important;
}

/* Hide controls for other browsers */
.splash-video::--media-controls {
    display: none !important;
}

/* Skip button removed - video must play to completion */

/* Main Content - Hidden initially */
.main-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in, visibility 0.5s ease-in;
    /* Ensure main content is behind video splash initially */
    position: relative;
    z-index: 1;
    /* Make sure it's in the document flow */
    display: block;
    width: 100%;
}

.main-content.visible {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1 !important;
    display: block !important;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Ensure html doesn't cause issues */
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* Prevent body scrolling during video */
body.video-playing {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #000000;
    background: #F5F5F0; /* Cream background */
    overflow-x: hidden;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent; /* Removed gradient overlay */
    z-index: -1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #F5F5F0; /* Cream background */
    backdrop-filter: blur(20px);
    border-bottom: 2px solid #000000; /* Black border */
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 80px;
    width: 250px; /* Horizontal oval shape like Drape It Up */
    object-fit: contain; /* Contain to show all text */
    border-radius: 50px; /* Horizontal oval/rounded rectangle */
    transition: all 0.3s ease;
    background: #000000; /* Black background like Drape It Up */
    padding: 15px 25px; /* Padding for text spacing */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: #000000;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
    position: relative;
    font-family: 'Georgia', serif;
    padding: 0.5rem 1rem;
    border-radius: 0; /* No circular borders */
}

.nav-list a:hover {
    color: #000000;
    background: transparent; /* No background on hover */
    transform: none; /* No transform */
    box-shadow: none; /* No shadow */
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #000000, #000000);
    transition: width 0.4s ease;
    border-radius: 1px;
}

.nav-list a:hover::after {
    width: 80%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000000; /* Black for cream background */
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: #000000; /* Black for cream background */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F0; /* Cream background */
    border-bottom: 2px solid #000000; /* Black border */
    overflow: hidden;
    padding-top: 80px; /* Account for fixed header */
    will-change: auto;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.dollar-shower {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* Animation Sequence Container */
.hero-animation-sequence {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

/* Main Dollar Sign (Animation Stages) - Now uses animated-title class */
.animated-title#mainDollar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-weight: 700;
    color: #000000;
    text-shadow: none;
    opacity: 0;
    pointer-events: none;
    font-family: 'Georgia', serif;
    font-style: italic;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    letter-spacing: 0.15em;
    margin-bottom: 0;
    white-space: nowrap;
}

/* Stage 1: Single dollar falls to center */
.animated-title#mainDollar.stage1-active {
    animation: dollarFallToCenter 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Stage 2: Stay at center while others fall */
.animated-title#mainDollar.stage2-active {
    animation: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    font-size: 8rem;
    color: #000000;
    text-shadow: none;
}

/* Stage 3: Prepare for transformation */
.animated-title#mainDollar.stage3-active {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    font-size: 8rem;
    color: #000000;
    text-shadow: none;
}

/* Stage 4: Transform into full word */
.animated-title#mainDollar.stage4-active {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    font-size: 6.5rem;
    color: #000000;
    text-shadow: none;
    transition: font-size 0.8s cubic-bezier(0.4, 0, 0.2, 1), color 0.8s ease;
    overflow: visible;
    white-space: nowrap;
}

@keyframes dollarFallToCenter {
    0% {
        top: -10%;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    20% {
        opacity: 1;
    }
    100% {
        top: 50%;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Falling Dollar Signs (Stage 2) */
.dollar-sign.falling-dollar {
    position: absolute;
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    opacity: 0.9;
    text-shadow: none;
    pointer-events: none;
    font-family: 'Arial', sans-serif;
    animation: fallingDollarFall 1.5s linear forwards;
}

.dollar-sign.falling-dollar:nth-child(even) {
    color: #000000;
    text-shadow: none;
}

@keyframes fallingDollarFall {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    90% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Animated Title - Only for non-mainDollar elements (not used anymore, keeping for compatibility) */
.animated-title:not(#mainDollar) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.3);
    font-size: 6.5rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 0;
    text-shadow: none;
    letter-spacing: 0.15em;
    font-family: 'Georgia', serif;
    font-style: italic;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 11;
    pointer-events: none;
}

/* Animated Tagline */
.animated-tagline {
    position: absolute;
    top: calc(50% + 80px);
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 2rem;
    color: #000000; /* Black for "Smart Moves Only" */
    font-weight: 300;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: 'Georgia', serif;
    text-shadow: none;
    font-style: italic;
    opacity: 0;
    transition: all 0.8s ease-out;
    z-index: 11;
    pointer-events: none;
    white-space: nowrap;
}

.animated-tagline.stage5-active {
    animation: taglineFadeIn 1s ease-out forwards;
}

@keyframes taglineFadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Final Content */
.hero-final-content {
    opacity: 1;
    display: block;
}

.hero-final-content.fade-in-final {
    animation: finalContentFadeIn 0.8s ease-out forwards;
}

@keyframes finalContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Legacy dollar-sign class for compatibility */
.dollar-sign:not(.falling-dollar) {
    position: absolute;
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    opacity: 0.8;
    text-shadow: none;
    pointer-events: none;
    font-family: 'Arial', sans-serif;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Hero Card (Quote Form) */
.hero-card {
    background: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 0;
    padding: 2.5rem;
    max-width: 500px;
    margin: 3rem auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hero-card h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0.5rem;
    font-family: 'Georgia', serif;
    font-style: italic;
    letter-spacing: 0.05em;
    text-align: center;
}

.hero-card .card-subtitle {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Georgia', serif;
    font-weight: 300;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #000000;
    border-radius: 0;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: #000000;
    background: #FFFFFF;
    transition: border-color 0.3s ease;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
    outline: none;
    border-color: #000000;
    border-width: 2px;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
    color: #666666;
    font-style: italic;
}

.hero-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.5rem;
}

.hero-form textarea {
    resize: vertical;
    min-height: 80px;
}

.hero-form .btn {
    width: 100%;
    padding: 1rem;
    background: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 0;
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-form .btn:hover {
    background: #333333;
    border-color: #333333;
}

.hero-form .btn:active {
    transform: scale(0.98);
}

.strategy-title {
    font-size: 6.5rem;
    font-weight: 300;
    color: #000000; /* Black */
    margin-bottom: 1.5rem;
    text-shadow: none;
    letter-spacing: 0.15em;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.strategy-tagline {
    font-size: 2rem;
    color: #000000; /* Black for "Smart Moves Only" */
    font-weight: 300;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: 'Georgia', serif;
    text-shadow: none;
    font-style: italic;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #000000;
    opacity: 0.7;
    animation: bounce 2s infinite;
    position: relative;
    z-index: 5;
    margin-top: 2rem;
}

@keyframes fadeInScroll {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.7;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Scroll-triggered fade-in animations */
.fade-in-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Stagger animations for list items */
.services-list li,
.package-includes ul li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.services-list li.fade-in-visible,
.package-includes ul li.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for staggered effect on list items */
.services-list li:nth-child(1) { transition-delay: 0.1s; }
.services-list li:nth-child(2) { transition-delay: 0.2s; }
.services-list li:nth-child(3) { transition-delay: 0.3s; }
.services-list li:nth-child(4) { transition-delay: 0.4s; }
.services-list li:nth-child(5) { transition-delay: 0.5s; }
.services-list li:nth-child(6) { transition-delay: 0.6s; }
.services-list li:nth-child(7) { transition-delay: 0.7s; }
.services-list li:nth-child(8) { transition-delay: 0.8s; }
.services-list li:nth-child(9) { transition-delay: 0.9s; }

.package-includes ul li:nth-child(1) { transition-delay: 0.1s; }
.package-includes ul li:nth-child(2) { transition-delay: 0.2s; }
.package-includes ul li:nth-child(3) { transition-delay: 0.3s; }
.package-includes ul li:nth-child(4) { transition-delay: 0.4s; }
.package-includes ul li:nth-child(5) { transition-delay: 0.5s; }
.package-includes ul li:nth-child(6) { transition-delay: 0.6s; }
.package-includes ul li:nth-child(7) { transition-delay: 0.7s; }

.scroll-indicator span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

/* Strategy Tabs Section */
.strategy-tabs-section {
    padding: 6rem 0;
    position: relative;
    will-change: auto;
    transition: all 0.3s ease;
    background: #F5F5F0; /* Cream background */
}

.strategy-tabs-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.strategy-tabs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.tabs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tab-item {
    background: #F5F5F0; /* Cream background */
    border: 2px solid #000000;
    border-radius: 0; /* Sharp corners like Chanel label */
    padding: 2.5rem;
    transition: all 0.4s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

.tab-item:hover::before {
    left: 100%;
}

.tab-item:hover {
    border-color: #000000;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: #F5F5F0; /* Cream background */
    border-width: 3px; /* Thicker border on hover */
}

.tab-item h3 {
    font-size: 1.4rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1.2rem;
    text-align: center;
    font-family: 'Georgia', serif;
    font-style: italic;
    letter-spacing: 0.05em;
}

.tab-content {
    color: #000000;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 300;
    font-family: 'Georgia', serif;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease;
}

.tab-item.active .tab-content {
    opacity: 1;
    /* max-height is set inline by JS for smooth animation */
}

/* About Section */
/* About Us in Hero Section */
.about-in-hero {
    margin-top: 3rem;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-in-hero .about-content {
    background: transparent;
    border: none;
    padding: 0;
}

.about-in-hero .about-content h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #000000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
    font-style: italic;
    letter-spacing: 0.1em;
    text-shadow: none;
}

.about-in-hero .about-text {
    max-width: 100%;
    text-align: center;
}

.about-in-hero .about-text p {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 0;
    line-height: 1.8;
    font-weight: 300;
    font-family: 'Georgia', serif;
}

.about-section {
    padding: 6rem 0;
    position: relative;
    will-change: auto;
    transition: all 0.3s ease;
    background: #F5F5F0; /* Cream background */
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #000000 25%, #000000 50%, #000000 75%, transparent 100%);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}


.about-content h2 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #000000;
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'Georgia', serif;
    font-style: italic;
    letter-spacing: 0.1em;
    text-shadow: none;
}

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

.about-text p {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 2.5rem;
    line-height: 1.9;
    font-weight: 300;
    font-family: 'Georgia', serif;
}

.services-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: #cccccc;
    font-size: 1.1rem;
}

.services-list i {
    color: #000000;
    font-size: 1.3rem;
    margin-right: 1rem;
}

/* Strategy Offers Section */
.strategy-offers-section {
    padding: 6rem 0;
    position: relative;
    will-change: auto;
    transition: all 0.3s ease;
    background: #F5F5F0; /* Cream background */
    border-top: 2px solid #000000; /* Black border */
    border-bottom: 2px solid #000000; /* Black border */
}

.strategy-offers-section h2 {
    font-size: 3rem;
    font-weight: 300; /* Consistent with other headings */
    color: #000000;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Georgia', serif;
    font-style: italic;
    letter-spacing: 0.1em;
}

.strategy-offers-section .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.strategy-offers-section .services-column {
    background: #FFFFFF; /* White background for service cards */
    border: 2px solid #000000; /* Black border */
    border-radius: 0; /* Sharp corners */
    padding: 1.5rem;
}

.strategy-offers-section .services-column h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    font-family: 'Georgia', serif;
    font-style: italic;
    letter-spacing: 0.05em;
    text-align: left;
    border-bottom: 1px solid #000000;
    padding-bottom: 0.5rem;
}

.strategy-offers-section .services-column h3:first-child {
    margin-top: 0;
}

.strategy-offers-section .services-column .services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem 0;
    text-align: left;
}

.strategy-offers-section .services-column .services-list li {
    color: #000000;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    font-family: 'Georgia', serif;
    font-weight: 300;
    padding-left: 0;
    position: relative;
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.strategy-offers-section .services-column .services-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.strategy-offers-section .services-column .services-list li::before {
    content: '•';
    color: #000000;
    position: absolute;
    left: -1rem;
    font-weight: 400;
}

/* Package Section */
.package-section {
    padding: 4rem 0;
    background: #FFFFFF;
}

.package-section h2 {
    font-size: 2rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
    font-style: italic;
    letter-spacing: 0.05em;
    text-align: center;
}

.package-box {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 0;
    overflow: hidden;
}

.package-header {
    padding: 1.5rem;
    background: #FFFFFF;
    border-bottom: 1px solid #000000;
}

.package-header h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #000000;
    margin: 0;
    font-family: 'Georgia', serif;
    font-style: italic;
    letter-spacing: 0.05em;
    text-align: center;
}

.package-includes {
    padding: 1.5rem;
}

.package-includes h4 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #000000;
    margin: 1.5rem 0 1rem 0;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.package-includes ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.package-includes ul li {
    color: #000000;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: 'Georgia', serif;
    font-weight: 300;
    padding-left: 1.5rem;
    position: relative;
}

.package-includes ul li::before {
    content: '•';
    color: #000000;
    position: absolute;
    left: 0;
    font-weight: 400;
}

.package-quote-button {
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid #000000;
}

.consultation-text {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.continue-link {
    display: inline-block;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: none;
    border: none;
    padding: 0;
}

.continue-link:hover {
    color: #333333;
}

.package-form {
    padding: 1.5rem;
    border-top: 1px solid #000000;
    background: #F5F5F0;
}

.package-form h4 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #000000;
    margin: 0 0 1rem 0;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.package-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.package-form input,
.package-form select,
.package-form textarea {
    padding: 0.75rem;
    border: 1px solid #000000;
    background: #FFFFFF;
    color: #000000;
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    font-weight: 300;
    width: 100%;
}

.package-form input::placeholder,
.package-form textarea::placeholder {
    color: #666666;
    font-style: italic;
}

.package-form textarea {
    resize: vertical;
    min-height: 80px;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section-divider {
    height: 2rem;
    margin: 2rem 0;
    border-top: 1px solid #CCCCCC;
}

.form-question {
    margin-bottom: 1rem;
}

.form-question label {
    display: block;
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0.5rem;
}

.section-label {
    display: block;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 1rem;
    font-style: italic;
}

.subsection-title {
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #000000;
    margin: 1.5rem 0 1rem 0;
    font-style: italic;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 0.5rem;
}

.package-form .btn {
    padding: 0.75rem 2rem;
    background: #000000;
    color: #FFFFFF;
    border: none;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.package-form .btn:hover {
    background: #333333;
}

/* Business Partner Multiple Slots */
.business-partner-slot {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #FAFAFA;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
}

.business-partner-slot .partner-input {
    margin-bottom: 0.75rem;
}

.partner-number {
    color: #666666;
    font-size: 0.85rem;
    font-weight: normal;
}

.add-partner-btn {
    padding: 0.75rem 1.5rem;
    background: #000000;
    color: #FFFFFF;
    border: none;
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 4px;
}

.add-partner-btn:hover {
    background: #333333;
}

.add-partner-btn i {
    font-size: 0.85rem;
}

.remove-partner-btn {
    padding: 0.5rem 1rem;
    background: #CC0000;
    color: #FFFFFF;
    border: none;
    font-family: 'Georgia', serif;
    font-size: 0.85rem;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 4px;
}

.remove-partner-btn:hover {
    background: #990000;
}

.remove-partner-btn i {
    font-size: 0.75rem;
}

/* Walk of Fame Section */
.walk-of-fame-section {
    padding: 6rem 0;
    position: relative;
    will-change: auto;
    transition: all 0.3s ease;
    background: #F5F5F0; /* Cream background */
}

.walk-of-fame-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.walk-of-fame-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #000000 25%, #000000 50%, #000000 75%, transparent 100%);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.walk-of-fame-section h2 {
    font-size: 3rem;
    font-weight: 300; /* Consistent with other headings */
    color: #000000;
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
    font-style: italic;
    letter-spacing: 0.1em;
}

.walk-of-fame-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #333333;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Georgia', serif;
}

.walk-of-fame-question {
    text-align: center;
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 3rem;
    font-weight: 300; /* Consistent with other headings */
    font-family: 'Georgia', serif;
    font-style: italic;
    letter-spacing: 0.05em;
}

.walk-of-fame-rotating-container {
    max-width: 500px;
    margin: 3rem auto;
    height: 120px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.walk-of-fame-rotating {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: rotateFame 40s linear infinite;
    will-change: transform;
}

@keyframes rotateFame {
    0% {
        transform: translateY(0);
    }
    100% {
        /* Move exactly half the total height (34 items * 120px = 4080px, so -50% = -2040px) */
        /* The +60px offset centers the first visible item properly */
        transform: translateY(calc(-50% + 60px));
    }
}

.fame-item {
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 1.8rem;
    color: #000000;
    font-weight: 500;
    font-family: 'Georgia', serif;
    white-space: nowrap;
    min-height: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Ensure fame items are always visible and not affected by fade-in animations */
    opacity: 1 !important;
    transform: none !important;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ffffff 50%, transparent 100%);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #ffffff 25%, #ffffff 50%, #ffffff 75%, transparent 100%);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.services-section h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #000000;
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-card {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.service-card p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    position: relative;
    will-change: auto;
    transition: all 0.3s ease;
    background: #000000;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ffffff 50%, transparent 100%);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ffffff 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.testimonials-section h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #000000;
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.testimonial-content p {
    color: #cccccc;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author h4 {
    color: #000000;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #888888;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    position: relative;
    will-change: auto;
    transition: all 0.3s ease;
    background: #F5F5F0; /* Cream background */
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #ffffff 25%, #ffffff 50%, #ffffff 75%, transparent 100%);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.contact-section h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #000000;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-subtitle {
    text-align: center;
    color: #000000;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.contact-form {
    background: #F5F5F0; /* Cream background */
    border: 2px solid #000000;
    border-radius: 0; /* Sharp corners like Chanel label */
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #000000;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #000000;
    border-radius: 8px;
    background: #F5F5F0; /* Cream background */
    color: #000000;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
}

.contact-info {
    background: #F5F5F0; /* Cream background */
    border: 2px solid #000000;
    border-radius: 0; /* Sharp corners like Chanel label */
    padding: 2rem;
}

.contact-info h3 {
    color: #000000;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #000000;
}

.contact-item i {
    color: #000000;
    font-size: 1.2rem;
    width: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);
    color: #000000;
    border: 2px solid #ffffff;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: #000000;
    color: #F5F5F0;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #F5F5F0; /* Cream background */
    border-top: 2px solid #000000; /* Black border */
    padding: 2rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: #000000;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-logo h3 {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: 0.1em;
}

.footer-logo p {
    color: #000000; /* Black for "Smart Moves Only" */
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.footer-description {
    color: #000000;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-description .highlight {
    color: #000000;
    text-decoration: underline;
    text-decoration-color: #000000;
    text-underline-offset: 3px;
    font-weight: 500;
}

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

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    border-radius: 0; /* No circular borders */
    background: transparent; /* No background */
}

.footer-links a:hover {
    color: #000000;
    text-decoration: underline;
    background: transparent; /* No background on hover */
}

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

.footer-services li {
    color: #000000;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.footer-services li::before {
    content: '•';
    color: #000000;
    position: absolute;
    left: 0;
}

.footer-contact {
    margin: 0;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    color: #000000;
    font-size: 0.85rem;
}

.footer-contact .contact-item i {
    color: #000000;
    font-size: 1rem;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #000000;
    padding-top: 1rem;
    margin-top: 1rem;
}

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

.footer-bottom p {
    color: #000000;
    font-size: 0.8rem;
    margin: 0;
}

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

.footer-social a {
    color: #000000;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #000000;
    opacity: 0.7;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        min-height: 100vh;
        padding: 2rem 0;
        padding-top: 100px; /* Account for mobile header */
    }
    
    .header-content {
        padding: 0.8rem 0;
    }
    
    .logo-image {
        height: 70px;
        width: 200px; /* Horizontal oval shape */
        object-fit: contain;
        border-radius: 40px; /* Horizontal oval */
        background: #000000; /* Black background */
        padding: 12px 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .strategy-title {
        font-size: 3rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .strategy-tagline {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    /* Hero Animation Mobile Styles */
    .hero-animation-sequence {
        min-height: 250px;
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    .animated-title#mainDollar {
        font-size: 5rem !important;
        max-width: 95vw;
        overflow: visible;
        word-wrap: break-word;
        white-space: nowrap;
        transition: font-size 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .animated-title#mainDollar.stage2-active,
    .animated-title#mainDollar.stage3-active {
        font-size: 5rem !important;
        max-width: 95vw;
    }
    
    .animated-title#mainDollar.stage4-active {
        font-size: 3rem !important;
        max-width: 95vw;
        letter-spacing: 0.1em;
        line-height: 1.2;
        transition: font-size 0.8s cubic-bezier(0.4, 0, 0.2, 1), color 0.8s ease;
    }
    
    .animated-tagline {
        font-size: 1.2rem !important;
        top: calc(50% + 60px) !important;
        letter-spacing: 0.1em;
        max-width: 90vw;
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero-final-content {
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    .hero-final-content .strategy-title {
        max-width: 95vw;
        overflow: hidden;
    }
    
    .hero-final-content .strategy-tagline {
        max-width: 90vw;
    }
    
    .hero-card {
        max-width: 90%;
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }
    
    .hero-card h3 {
        font-size: 1.5rem;
    }
    
    .hero-card .card-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-form input,
    .hero-form select,
    .hero-form textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .hero-form .btn {
        padding: 0.9rem;
        font-size: 1rem;
    }
    
    .dollar-sign.falling-dollar {
        font-size: 1.5rem;
    }
    
    .dollar-main {
        font-size: 4rem;
    }
    
    .dollar {
        font-size: 1.5rem;
    }
    
    .dollar-trail {
        gap: 0.4rem;
    }
    
    .tabs-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tab-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .tab-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .tab-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-item {
        margin-bottom: 0.8rem;
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: left; /* Left-aligned like Drape It Up */
    }
    
    .footer-section {
        text-align: left; /* Left-aligned like Drape It Up */
    }
    
    .footer-logo {
        text-align: left; /* Left-aligned logo */
    }
    
    .footer-links {
        text-align: left; /* Left-aligned links */
    }
    
    .footer-contact {
        text-align: left; /* Left-aligned contact */
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .services-list {
        margin-top: 1.5rem;
    }
    
    .services-list li {
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }
    
    .services-section h2,
    .testimonials-section h2,
    .contact-section h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .scroll-indicator {
        margin-top: 2rem;
    }
    
    .scroll-indicator span {
        font-size: 0.8rem;
    }
    
    .scroll-indicator i {
        font-size: 1.2rem;
    }
    
    .package-section {
        padding: 2rem 0;
    }
    
    .package-section h2 {
        font-size: 1.5rem;
    }
    
    .package-header {
        padding: 1rem;
    }
    
    .package-header h3 {
        font-size: 1.1rem;
    }
    
    .package-includes,
    .package-quote-button,
    .package-form {
        padding: 1rem;
    }
    
    .package-quote-button .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .package-form input,
    .package-form select {
        font-size: 0.85rem;
        padding: 0.6rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .hero-section {
        min-height: 100vh;
        padding: 1.5rem 0;
    }
    
    .logo-image {
        height: 60px;
        width: 180px; /* Horizontal oval shape */
        object-fit: contain;
        border-radius: 35px; /* Horizontal oval */
        background: #000000; /* Black background */
        padding: 10px 18px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .strategy-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1.2rem;
    }
    
    .strategy-tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Hero Animation Mobile Styles (Small Screens) */
    .hero-animation-sequence {
        min-height: 200px;
        width: 100%;
        padding: 0 0.8rem;
        box-sizing: border-box;
    }
    
    .animated-title#mainDollar {
        font-size: 4rem !important;
        max-width: 95vw;
        overflow: visible;
        word-wrap: break-word;
        white-space: nowrap;
        transition: font-size 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .animated-title#mainDollar.stage2-active,
    .animated-title#mainDollar.stage3-active {
        font-size: 4rem !important;
        max-width: 95vw;
    }
    
    .animated-title#mainDollar.stage4-active {
        font-size: 2.5rem !important;
        letter-spacing: 0.08em;
        max-width: 95vw;
        line-height: 1.2;
        transition: font-size 0.8s cubic-bezier(0.4, 0, 0.2, 1), color 0.8s ease;
    }
    
    .animated-tagline {
        font-size: 1rem !important;
        top: calc(50% + 50px) !important;
        letter-spacing: 0.08em;
        padding: 0 0.8rem;
        max-width: 90vw;
        text-align: center;
        line-height: 1.3;
    }
    
    .hero-final-content {
        padding: 0 0.8rem;
        box-sizing: border-box;
    }
    
    .hero-final-content .strategy-title {
        max-width: 95vw;
        overflow: hidden;
        font-size: 2.5rem;
    }
    
    .hero-final-content .strategy-tagline {
        max-width: 90vw;
        font-size: 1rem;
    }
    
    .hero-card {
        max-width: 95%;
        padding: 1.5rem 1rem;
        margin: 1.5rem auto;
    }
    
    .hero-card h3 {
        font-size: 1.3rem;
    }
    
    .hero-card .card-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-form input,
    .hero-form select,
    .hero-form textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .hero-form .btn {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .dollar-sign.falling-dollar {
        font-size: 1.2rem;
    }
    
    .dollar-main {
        font-size: 3rem;
    }
    
    .dollar-trail {
        gap: 0.3rem;
    }
    
    .dollar {
        font-size: 1.2rem;
    }
    
    .tabs-container {
        gap: 1rem;
    }
    
    .tab-item {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .tab-item h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .tab-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .services-grid {
        gap: 1rem;
    }
    
    .package-section {
        padding: 2rem 0;
    }
    
    .package-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .package-header {
        padding: 1rem;
    }
    
    .package-header h3 {
        font-size: 1rem;
    }
    
    .package-includes,
    .package-quote-button,
    .package-form {
        padding: 1rem;
    }
    
    .package-quote-button .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .package-includes h4 {
        font-size: 1rem;
    }
    
    .package-includes ul li {
        font-size: 0.85rem;
    }
    
    .package-form h4 {
        font-size: 1rem;
    }
    
    .package-form input,
    .package-form select {
        font-size: 0.85rem;
        padding: 0.6rem;
    }
    
    .package-form .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .testimonials-grid {
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .contact-info h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .contact-item {
        margin-bottom: 0.6rem;
        font-size: 0.85rem;
    }
    
    .about-content h2,
    .services-section h2,
    .testimonials-section h2,
    .contact-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .services-list li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        min-height: 40px;
    }
    
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .strategy-tabs-section,
    .about-section,
    .strategy-offers-section,
    .walk-of-fame-section,
    .services-section,
    .testimonials-section,
    .contact-section {
        padding: 2.5rem 0;
    }
    
    .strategy-offers-section .services-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .services-column h3 {
        text-align: left;
        font-size: 1.3rem;
    }
    
    .scroll-indicator {
        margin-top: 1.5rem;
    }
    
    .scroll-indicator span {
        font-size: 0.75rem;
    }
    
    .scroll-indicator i {
        font-size: 1rem;
    }
    
    .footer-content {
        gap: 0.8rem;
    }
    
    .footer-links {
        gap: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    /* Video Splash Mobile Styles */
    .video-splash {
        /* Ensure full screen on mobile - cover entire viewport */
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important; /* Dynamic viewport height for mobile browsers */
        min-width: 100vw !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        max-height: 100dvh !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        /* Cover browser UI areas */
        z-index: 99999 !important;
        /* Center content */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .splash-video {
        position: relative !important;
        width: 100vw !important;
        /* Force 9:16 aspect ratio on mobile */
        aspect-ratio: 9 / 16 !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        max-height: 100dvh !important;
        object-fit: contain !important; /* Show full video content */
        object-position: center !important;
        margin: 0 auto !important;
        padding: 0 !important;
        /* Center the video */
        display: block !important;
        /* Video will fit within 9:16 aspect ratio container */
    }
    
    /* Skip button removed */
}

@media (max-width: 480px) {
    .video-splash {
        /* Ensure full screen on small mobile - absolute coverage */
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important; /* Dynamic viewport height */
        min-width: 100vw !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        max-height: 100dvh !important;
        /* Prevent scrolling during video */
        overflow: hidden !important;
        touch-action: none !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 99999 !important;
    }
    
    .splash-video {
        /* Ensure video fits on screen showing full content with 9:16 aspect ratio */
        position: relative !important;
        width: 100vw !important;
        /* Force 9:16 aspect ratio on small mobile */
        aspect-ratio: 9 / 16 !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        max-height: 100dvh !important;
        object-fit: contain !important; /* Show full video without cropping */
        object-position: center !important;
        /* Prevent video controls from showing */
        pointer-events: none !important;
        user-select: none !important;
        -webkit-user-select: none !important;
        -webkit-tap-highlight-color: transparent !important;
        /* Hide any play button overlays */
        cursor: default !important;
        margin: 0 auto !important;
        padding: 0 !important;
        /* Video will be letterboxed/pillarboxed to show all content in 9:16 ratio */
        display: block !important;
    }
    
    /* Main content should be visible when video ends */
    .main-content.visible {
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 1 !important;
        display: block !important;
    }
    
    .video-splash.hidden {
        display: none !important;
        z-index: -1 !important;
    }
    
    /* Ensure no controls appear on mobile */
    .splash-video::-webkit-media-controls,
    .splash-video::-webkit-media-controls-play-button,
    .splash-video::-webkit-media-controls-start-playback-button,
    .splash-video::-webkit-media-controls-panel {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    
    /* Skip button removed */
}

/* Handle landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .video-splash {
        height: 100vh;
        height: 100dvh;
    }
    
    .splash-video {
        height: 100vh;
        height: 100dvh;
        object-fit: cover;
    }
    
    /* Skip button removed */
}

/* Handle very small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    /* Skip button removed */
}
