@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.cdnfonts.com/css/open-sauce-one');

:root {
    /* Strict Monochrome + Yellow Palette */
    --bg-color: #ffffff;
    --bg-secondary: #f5f5f7;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;

    /* Accents */
    --accent-color: #FFC107;
    /* Uraga Yellow */
    --accent-dark: #e0a800;
    --accent-glow: rgba(255, 193, 7, 0.3);

    /* Glassmorphism - Light Mode */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(0, 0, 0, 0.05);
    --glass-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    --glass-blur: 20px;

    /* Fonts */
    --font-primary: 'Open Sauce One', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-secondary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #1d1d1f 0%, #424245 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Utilities */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--glass-shadow);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.08);
}

/* Pricing Card Styles */
.pricing-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    background: #f5f5f7;
    /* Default Gray Header */
    padding: 2.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.pricing-header.highlight {
    background: #fff9e6;
    /* Yellow Tint for Highlight */
}

.pricing-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.btn-full {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Custom Components */
.nav-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background: #1d1d1f;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: #333;
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: transparent;
    border: 1px solid #d2d2d7;
    color: #1d1d1f;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #f5f5f7;
    border-color: #1d1d1f;
}

/* Background Elements */
.bg-grid-light {
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

.bg-glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    animation: float 10s infinite alternate;
}

/* Animations */
@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(20px, 20px);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Service Card Hover Effects */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Marquee Animation for Client Logos */
.marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    animation: scroll 50s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.2);
}

.logo-item img {
    transition: all 0.3s ease;
}

/* Timeline Icon Hover Effect */
.timeline-icon-container:hover {
    transform: scale(1.15);
}

.timeline-icon-container {
    transition: transform 0.3s ease;
}

/* Floating Social Media Button */
.floating-social {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.social-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #374151;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.social-button:hover {
    transform: scale(1.1);
    background: #4b5563;
}

.social-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.floating-social:hover .social-icons {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #374151;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.instagram {
    background: #374151;
    color: white;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.portfolio {
    background: #374151;
    color: white;
}

.social-icon.portfolio:hover {
    background: #fbbf24;
    color: #000;
}

.social-icon.whatsapp {
    background: #25D366;
    color: white;
    padding: 8px 16px;
    width: auto;
    border-radius: 25px;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.social-icon.whatsapp:hover {
    background: #20ba5a;
    transform: scale(1.05);
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    display: flex;
    animation: marquee 80s linear infinite;
    width: max-content;
}

.marquee-content:hover .animate-marquee {
    animation-play-state: paused;
}