:root {
    /* Theme Colors */
    --primary-red: #ff0000;
    --primary-green: #00ff00;
    
    /* Dark Theme */
    --bg-primary: #000000;
    --text-primary: #ffffff;
    
    /* Light Theme Variables */
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Animations */

    --transition-medium: 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Montserratarm-Regular;
    letter-spacing: normal;
}


html,
body {
    scroll-snap-type: y proximity;
}

section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: 15vh;
}
body{
    color: rgb(0, 255, 0);
}
body::-webkit-scrollbar {
    display: none;
}

/* RESPONSIVE FIX: Prevent horizontal overflow */
html,
body {
    width: 100%;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

body {
    width: 100%;
}

/* Contact Form Success Message */
.success-message {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00ff00, #32cd32);
    color: #000;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
    animation: slideIn 0.5s ease-out;
}

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

/* .marketing-studio-main-content {
    min-height: 100vh;
    overflow-x: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    background-color: #000;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 0, 0, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 90% 30%, rgba(255, 0, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 30% 80%, rgba(255, 0, 0, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 70% 70%, rgba(255, 0, 0, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.05) 0%, transparent 40%);
    background-attachment: fixed;
    padding: 10vh 6.25vw 0 6.25vw;
} */


.marketing-studio-main-content {
    min-height: 100vh;
    overflow-x: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    background-color: #000;
    background-attachment: fixed;
    padding: 10vh 6.25vw 0 6.25vw;
}


/* RESPONSIVE FIX: Mobile padding adjustments */
@media (max-width: 768px) {
    .marketing-studio-main-content {
        padding: 5vh 4vw 0 4vw;
        background-attachment: scroll; /* Better performance on mobile */
    }
}

@media (max-width: 480px) {
    .marketing-studio-main-content {
        padding: 3vh 3vw 0 3vw;
    }
}

/* Odometer-style Rolling Counter Animations */
.stat-number {
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: 1.2em;
    line-height: 1.2em;
    font-weight: 900;
}

.digit-container {
    position: relative;
    display: inline-block;
    width: 0.6em;
    height: 1.2em;
    overflow: hidden;
    vertical-align: top;
}

.digit-roll {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.digit {
    height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: green;
}

.stat-suffix {
    color: #ff0000;
    font-weight: 900;
    margin-left: 0.1em;
}

/* Staggered animation delays for multiple digits */
.digit-container:nth-child(1) .digit-roll { transition-delay: 0ms; }
.digit-container:nth-child(2) .digit-roll { transition-delay: 100ms; }
.digit-container:nth-child(3) .digit-roll { transition-delay: 200ms; }
.digit-container:nth-child(4) .digit-roll { transition-delay: 300ms; }

/* Enhanced stat card styling for better visual impact */
.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.stat-label {
    margin-top: 10px;
    font-weight: 600;
    color: #fff;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments for counters */
@media (max-width: 768px) {
    .digit-container {
        width: 0.55em;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .digit-container {
        width: 0.5em;
    }
    
    .stat-card {
        padding: 15px 10px;
    }
}

/* Fixed Phone Button Styles */
.fixed-phone-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-green));
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    animation: phoneSlideIn 1s ease-out 2s both;
    transform: translateX(100%);
    opacity: 0;
}

.fixed-phone-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.4);
}

.fixed-phone-btn .phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: phoneIconPulse 2s infinite;
}

.fixed-phone-btn .phone-icon svg {
    color: white;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.fixed-phone-btn .phone-number {
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

/* Phone Button Animations */
@keyframes phoneSlideIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes phoneIconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

/* Responsive Design for Phone Button */
@media (max-width: 768px) {
    .fixed-phone-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        border-radius: 40px;
    }
    
    .fixed-phone-btn .phone-icon {
        width: 35px;
        height: 35px;
    }
    
    .fixed-phone-btn .phone-number {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .fixed-phone-btn {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        gap: 8px;
    }
    
    .fixed-phone-btn .phone-icon {
        width: 30px;
        height: 30px;
    }
    
    .fixed-phone-btn .phone-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .fixed-phone-btn .phone-number {
        font-size: 12px;
    }
}

/* Hide phone number text on very small screens */
@media (max-width: 360px) {
    .fixed-phone-btn .phone-number {
        display: none;
    }
    
    .fixed-phone-btn {
        padding: 12px;
        border-radius: 50%;
        width: 55px;
        height: 55px;
        justify-content: center;
    }
    
    .fixed-phone-btn .phone-icon {
        background: transparent;
        width: auto;
        height: auto;
    }
}