/* ===== BAHDMUS AGENCY PREMIUM THEME ===== */
:root {
    /* Color System */
    --bg-deep: #050505;
    --bg-surface: #0f0f0f;
    --bg-card: #151515;
    --bg-hover: #1a1a1a;
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-tertiary: #666666;
    
    --accent-primary: #ff3366;
    --accent-secondary: #00d4ff;
    --accent-tertiary: #9d4edd;
    --success: #25D366;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff3366 0%, #ff6b9d 100%);
    --gradient-secondary: linear-gradient(135deg, #00d4ff 0%, #9d4edd 100%);
    --gradient-dark: linear-gradient(135deg, #0f0f0f 0%, #050505 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Playfair Display', 'Times New Roman', serif;
    --font-mono: 'SF Mono', 'Courier New', monospace;
    
    /* Spacing System */
    --space-xxs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --glow-primary: 0 0 30px rgba(255, 51, 102, 0.3);
    --glow-secondary: 0 0 30px rgba(0, 212, 255, 0.3);
    
    /* Borders */
    --border-light: 1px solid rgba(255, 255, 255, 0.1);
    --border-medium: 1px solid rgba(255, 255, 255, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 999px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== PREMIUM BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--accent-primary);
    color: white;
}

/* ===== PREMIUM TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-md);
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: var(--space-sm);
}

.lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto var(--space-lg);
}

/* ===== PREMIUM NAVIGATION ===== */
.premium-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--border-light);
    padding: var(--space-sm) 0;
    transition: var(--transition-smooth);
}

.nav-scrolled {
    padding: var(--space-xs) 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.brand-logo::before {
    content: '▸';
    font-size: 1.2rem;
}

.nav-menu {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 4px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: var(--accent-primary);
    background: rgba(255, 51, 102, 0.1);
}/* Testimonial Card */
.testimonial-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: var(--space-xxl);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Client Avatar */
.client-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    position: relative;
}

.client-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.testimonial-card:hover .client-img {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Avatar with decorative ring */
.client-avatar::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    opacity: 0.3;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    font-style: italic;
    position: relative;
    padding: 0 var(--space-md);
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    font-family: serif;
    line-height: 1;
}

.testimonial-text::before {
    top: -10px;
    left: 0;
}

.testimonial-text::after {
    bottom: -30px;
    right: 0;
}

/* Client Info */
.client-info {
    margin-top: var(--space-lg);
}

.client-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.client-role {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: var(--space-xl) var(--space-lg);
    }
    
    .client-avatar {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding: 0;
    }
}
.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: var(--glow-primary);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary), 0 10px 30px rgba(255, 51, 102, 0.3);
}

/* ===== PREMIUM HERO SECTION ===== */
.premium-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 51, 102, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        var(--bg-deep);
    z-index: -2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.hero-content {
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

.hero-features {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: white;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.card-1 {
    top: 0;
    left: 0;
    width: 70%;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 20%;
    right: 0;
    width: 60%;
    z-index: 1;
    animation: float 6s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 10%;
    left: 15%;
    width: 50%;
    z-index: 3;
    animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ===== PREMIUM SECTION STYLES ===== */
.section-padding {
    padding: var(--space-xxl) 0;
}

.container-lg {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}.cookie-banner {
    display: none;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.section-tag {
    display: inline-block;
    background: rgba(255, 51, 102, 0.1);
    color: var(--accent-primary);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

/* ===== PREMIUM PROJECT GRID ===== */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.premium-project-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: var(--border-light);
    transition: var(--transition-smooth);
    position: relative;
}

.premium-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.premium-project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 51, 102, 0.3);
    box-shadow: var(--shadow-lg), var(--glow-primary);
}

.premium-project-card:hover::before {
    transform: scaleX(1);
}

.project-image-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.premium-project-card:hover .project-image {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(5, 5, 5, 0.9));
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: var(--transition-smooth);
}

.premium-project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: var(--space-lg);
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.project-category {
    color: var(--accent-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-year {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.project-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.project-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.tech-tag {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.project-link:hover {
    gap: var(--space-sm);
}

/* ===== PREMIUM PROCESS SECTION ===== */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: var(--space-xxl) auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--accent-primary), transparent);
}

.process-step {
    position: relative;
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
}

.process-step:nth-child(odd) {
    justify-content: flex-start;
    padding-right: 50%;
}

.process-step:nth-child(even) {
    justify-content: flex-end;
    padding-left: 50%;
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 2;
    box-shadow: var(--glow-primary);
}

.step-content {
    background: var(--bg-card);
    border: var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    width: 90%;
    box-shadow: var(--shadow-md);
}

/* ===== PREMIUM CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: var(--border-light);
}

.contact-info {
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-deep));
}

.contact-methods {
    margin-top: var(--space-xl);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    transition: var(--transition-smooth);
    border: var(--border-light);
}

.contact-method:hover {
    border-color: var(--accent-primary);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.contact-form {
    padding: var(--space-xl);
    background: var(--bg-surface);
}

.premium-input {
    width: 100%;
    padding: var(--space-md);
    background: var(--bg-card);
    border: var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    margin-bottom: var(--space-md);
    transition: var(--transition-smooth);
}

.premium-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: var(--glow-primary);
}

/* ===== PREMIUM FOOTER ===== */
.premium-footer {
    background: var(--bg-surface);
    border-top: var(--border-light);
    padding: var(--space-xxl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand {
    grid-column: span 2;
}

.footer-logo {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.footer-heading {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-primary);
    padding-left: var(--space-xs);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

/* ===== PREMIUM UTILITIES ===== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-effect {
    position: relative;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
    border-radius: inherit;
}

.premium-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--glow-primary);
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary), 0 10px 30px rgba(255, 51, 102, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
}

.btn-outline:hover {
    background: var(--accent-primary);
    color: white;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        padding-left: 80px !important;
        justify-content: flex-start !important;
    }
    
    .step-number {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .premium-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-features {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
/* Legal Pages Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.legal-section h3 {
    color: var(--text-primary);
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

.legal-section ul {
    margin-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.legal-section li {
    margin-bottom: var(--space-xs);
    line-height: 1.6;
    color: var(--text-secondary);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-surface);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-icon {
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-section {
        margin-bottom: var(--space-lg);
        padding-bottom: var(--space-md);
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
}.footer-social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-social .social-icon svg {
    width: 20px;
    height: 20px;
}

/* Specific hover colors */
.footer-social a[aria-label="TikTok"]:hover {
    color: #FF0050; /* TikTok pink */
}

.footer-social a[aria-label="Instagram"]:hover {
    color: #E1306C; /* Instagram pink */
}

.footer-social a[aria-label="Email"]:hover {
    color: #EA4335; /* Gmail red */
}
