:root {
    --bg-dark: #07090b;
    --card-bg: rgba(25, 30, 36, 0.4);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-primary: #e6e9ee;
    --text-secondary: #9aaabf;
    --accent: #5e81ac;
    /* Premium metallic blue accent */
    --accent-glow: rgba(94, 129, 172, 0.4);
    --white: #ffffff;
    --silver: #bcc7d6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Background - Damascus Animation */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #151a21 0%, var(--bg-dark) 100%);
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.damascus-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.005' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 40 -15'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opactity='0.5'/%3E%3C/svg%3E");
    opacity: 0.06;
    mix-blend-mode: overlay;
    animation: damascusPan 45s linear infinite;
    pointer-events: none;
}

/* Adding a subtle gradient overlay to make it look metallic */
.background-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 40%, transparent 60%, rgba(255, 255, 255, 0.01) 100%);
    pointer-events: none;
}

@keyframes damascusPan {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1.1);
    }

    50% {
        transform: translate(-5%, -5%) rotate(1deg) scale(1.15);
    }

    100% {
        transform: translate(0, 0) rotate(0deg) scale(1.1);
    }
}

/* Layout */
.content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    padding: 2.5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 220px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.15) contrast(1.05);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--silver);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}



.subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--silver);
    font-weight: 300;
}

/* Main */
main {
    flex: 1;
    padding: 0 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero {
    text-align: center;
    max-width: 800px;
    margin: 6rem auto;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--white);
}

.hero h1 span {
    font-weight: 700;
    background: linear-gradient(to right, var(--silver), var(--white));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-inline: auto;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--white);
    color: var(--bg-dark);
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: pulse-cta 2.5s infinite;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    background-color: #f0f0f0;
    animation-play-state: paused;
}

/* Services Grid */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    width: 100%;
    margin-bottom: 8rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(35, 42, 50, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
}

.service-card:hover .card-icon {
    transform: scale(1.2) rotate(8deg);
    filter: drop-shadow(0 0 15px var(--accent));
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--silver);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-section {
    width: 100%;
    max-width: 700px;
    margin-bottom: 6rem;
}

.glass-form-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 4rem;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.glass-form-container h2 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.glass-form-container p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--silver);
    font-weight: 500;
}

.input-group input,
.input-group select,
.input-group textarea {
    background: rgba(10, 12, 15, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 6px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(15, 20, 25, 0.8);
    box-shadow: 0 0 0 2px var(--accent-glow);
}

.submit-button {
    margin-top: 1rem;
    padding: 1.2rem;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--accent);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 900px) {
    header {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 5%;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .glass-form-container {
        padding: 2.5rem;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .services {
        grid-template-columns: 1fr;
    }
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    margin-bottom: 2rem;
}

.social-icon {
    color: var(--silver);
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--white);
    transform: translateY(-4px);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp svg {
    width: 36px;
    height: 36px;
    fill: currentColor;
    margin-top: 2px;
    margin-left: 1px;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background-color: #1ebe57;
    animation-play-state: paused;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 600px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}

/* Product Page Layout */
.product-page-main {
    padding: 2rem 2rem 6rem 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: var(--text-secondary);
    opacity: 0.6;
}

.product-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 6rem;
}

.product-info-column {
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.product-info-column h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.spec-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
}

.spec-container h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.6rem;
}

.spec-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.spec-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
}

.spec-list li span {
    font-weight: 500;
    color: var(--silver);
}

.product-info-column .cta-button {
    align-self: flex-start;
}

/* Product Media Column */
.product-media-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease;
}

.product-placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(25, 30, 36, 0.2) 0%, rgba(10, 12, 15, 0.6) 100%);
    position: relative;
}

.product-placeholder-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 45%, rgba(255,255,255,0.03) 50%, transparent 55%);
    animation: metalGlow 8s linear infinite;
    pointer-events: none;
}

@keyframes metalGlow {
    0% { transform: translate(-30%, -30%); }
    100% { transform: translate(30%, 30%); }
}

.product-placeholder-image .icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.1));
}

.product-placeholder-image .label {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.product-placeholder-image .sublabel {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.thumbnail-row {
    display: flex;
    gap: 1rem;
}

.thumb-card {
    flex: 1;
    height: 70px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumb-card:hover, .thumb-card.active {
    border-color: var(--accent);
    color: var(--white);
    background: rgba(35, 42, 50, 0.5);
}

/* Examples Section */
.examples-section {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 5rem;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-wrapper h2 {
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-title-wrapper p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.example-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.example-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.example-image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: rgba(10, 12, 15, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--card-border);
    position: relative;
}

.example-image-placeholder .icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.example-image-placeholder .label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.example-info {
    padding: 1.5rem;
}

.example-info h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--silver);
    margin-bottom: 0.8rem;
}

.example-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Responsive Product Page */
@media (max-width: 900px) {
    .product-intro {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .product-info-column {
        order: 2;
    }
    
    .product-media-column {
        order: 1;
    }
    
    .product-info-column h1 {
        font-size: 2.8rem;
    }
    
    .examples-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .logo-img {
        height: 120px;
    }

    .product-info-column h1 {
        font-size: 2.3rem;
    }
    
    .spec-container {
        padding: 1.5rem 1rem;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
}

/* 9:16 Customer Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1.5rem 0.5rem;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.carousel-track::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.carousel-item {
    flex: 0 0 280px; /* fixed width for 9:16 card */
    aspect-ratio: 9 / 16;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
}

.carousel-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-item:hover .carousel-img {
    transform: scale(1.05);
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(7, 9, 11, 0.95) 0%, rgba(7, 9, 11, 0.4) 60%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    pointer-events: none;
}

.carousel-caption h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.carousel-caption p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Carousel Buttons */
.carousel-btn {
    background: rgba(25, 30, 36, 0.6);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--white);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.carousel-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .carousel-btn {
        display: none; /* Hide buttons on mobile, rely on swipe */
    }
    .carousel-container {
        padding: 0 1rem;
    }
}

/* Contact Page Styling */
.contact-page-main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 10%;
    min-height: calc(100vh - 350px);
}

.contact-card-section {
    width: 100%;
    max-width: 500px;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 3.5rem 3rem;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.contact-card h2 {
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-intro-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.contact-button-stack {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 12, 15, 0.4);
}

.contact-btn .btn-icon {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-btn .btn-icon svg {
    width: 100%;
    height: 100%;
}

.contact-btn .btn-text {
    letter-spacing: 0.5px;
}

/* Button-specific brand hover styles */
.btn-whatsapp:hover {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.4);
    transform: translateY(-3px);
}

.btn-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 0 25px rgba(204, 35, 102, 0.4);
    transform: translateY(-3px);
}

.btn-youtube:hover {
    background: #FF0000;
    color: var(--white);
    border-color: #FF0000;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
    transform: translateY(-3px);
}

.btn-tiktok:hover {
    background: #000000;
    color: var(--white);
    border-color: #00f2fe;
    box-shadow: -3px 0 15px rgba(0, 242, 254, 0.3), 3px 0 15px rgba(254, 44, 85, 0.3);
    transform: translateY(-3px);
}

@media (max-width: 600px) {
    .contact-card {
        padding: 2.5rem 1.8rem;
    }
    
    .contact-card h2 {
        font-size: 1.8rem;
    }
}

/* Hero Scroll Indicator */
.scroll-indicator {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.scroll-indicator a:hover {
    color: var(--white);
}

.mouse-icon {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-secondary);
    border-radius: 20px;
    position: relative;
    transition: border-color 0.3s ease;
}

.scroll-indicator a:hover .mouse-icon {
    border-color: var(--white);
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--text-secondary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.6s infinite;
}

.scroll-indicator a:hover .mouse-icon .wheel {
    background-color: var(--white);
}

@keyframes scroll-wheel {
    0% {
        top: 6px;
        opacity: 1;
    }
    30% {
        top: 12px;
        opacity: 0.6;
    }
    100% {
        top: 18px;
        opacity: 0;
    }
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
}

/* Card Pill Links */
.card-links-container {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.card-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--silver);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-pill::after {
    content: '→';
    font-size: 1rem;
    color: var(--accent);
    transition: transform 0.3s ease, color 0.3s ease;
}

.card-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
    transform: translateX(4px);
}

.card-pill:hover::after {
    transform: translateX(3px);
    color: var(--white);
}

/* Animations keyframes */
@keyframes pulse-cta {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}