@font-face {
    font-family: 'MyriadPro-Black';
    src: url('../fonts/MyriadPro-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

:root {
    --primary-color: #FB8C00; /* Naranja Brillante */
    --dark-blue: #0d1b2a;
    --light-blue: #1b263b;
    --gray-text: #6c757d;

    --bg-primary: #050b14; /* Azul marino ultra oscuro */
    --bg-secondary: rgba(13, 27, 42, 0.75); /* Glassmorphism basado en azul oscuro */
    --accent: var(--primary-color);
    --accent-glow: #ffa726;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Navbar & Header floating directly over video hero */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    background: transparent !important;
    pointer-events: none;
}

.navbar {
    box-shadow: none !important;
    background: transparent !important;
    border-bottom: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 20px 0 !important;
}

.navbar-brand {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    font-family: 'MyriadPro-Black', 'Poppins', sans-serif;
    pointer-events: auto;
    background: rgba(5, 11, 20, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    background: rgba(5, 11, 20, 0.85);
    border-color: rgba(251, 140, 0, 0.5);
    box-shadow: 0 6px 25px rgba(251, 140, 0, 0.3);
}

.navbar-brand span {
    color: #ffffff !important;
}

.nav-link {
    position: relative;
    padding: 8px 0 !important;
    margin: 0 15px;
    color: #f1f1f1 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease-out;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(13, 27, 42, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
        border: 1px solid var(--glass-border);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 5% 60px;
    text-align: center;
    z-index: 1;
}

.spline-bg-container,
.canvas-hero-bg-container,
.video-hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.spline-bg-container spline-viewer,
.hero-canvas-bg,
.video-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 11, 20, 0.65) 0%, rgba(5, 11, 20, 0.45) 50%, rgba(5, 11, 20, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    height: calc(100vh - 200px);
    z-index: 2;
    position: relative;
    pointer-events: none;
    /* Let clicks pass through to 3D scene */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.hero-text {
    pointer-events: auto;
    /* Re-enable clicks for text */
}

.hero-content>.cta-btn {
    pointer-events: auto;
    /* Re-enable clicks for button */
    margin-bottom: 40px;
    /* ensure it doesn't touch the very bottom */
}

h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
    margin-top: 40px;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-text p {
    font-size: 1.05rem !important;
}

.cta-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-glow));
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 25px rgba(251, 140, 0, 0.4);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(251, 140, 0, 0.6);
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 380px;
    height: 600px;
    max-height: calc(100vh - 100px);
    background: var(--bg-secondary);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s;
    overflow: hidden;
}

.chat-widget.collapsed {
    height: 65px;
    cursor: pointer;
}

.chat-widget.collapsed:hover {
    background: rgba(30, 30, 45, 0.8);
}

.chat-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    cursor: pointer;
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
}

.agent-info i {
    color: var(--accent-glow);
    font-size: 1.3rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        color: #ffe0b2;
    }

    100% {
        transform: scale(1);
    }
}

.toggle-icon {
    color: var(--text-secondary);
    transition: transform 0.3s;
}

.collapsed .toggle-icon {
    transform: rotate(180deg);
}

.chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-body::-webkit-scrollbar {
    width: 6px;
}

.chat-body::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 3px;
}

.message {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

.message.user {
    align-self: flex-end;
}

.message.assistant {
    align-self: flex-start;
}

.bubble {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.4;
    word-break: break-word;
}

.user .bubble {
    background: linear-gradient(135deg, var(--accent), var(--accent-glow));
    color: white;
    border-bottom-right-radius: 4px;
}

.assistant .bubble {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

/* Typing Indicator element */
.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 8px 12px;
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--text-secondary);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) {
    animation-delay: -0.32s;
}

.dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

.chat-input-area {
    padding: 15px;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.chat-input-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

#chat-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 12px 50px 12px 18px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#chat-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(251, 140, 0, 0.2);
}

#send-btn {
    position: absolute;
    right: 6px;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.2s, opacity 0.3s;
}

#send-btn:hover {
    background: var(--accent-glow);
    transform: scale(1.05);
}

#send-btn:disabled {
    background: var(--glass-border);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }

    .chat-widget {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
        max-height: 100vh;
    }

    .chat-widget.collapsed {
        height: 60px;
        bottom: 20px;
        right: 20px;
        width: 60px;
        border-radius: 30px;
    }

    .collapsed .agent-info span {
        display: none;
    }

    .collapsed .toggle-icon {
        display: none;
    }
}

/* =========================================
   One Page Sections Styles
   ========================================= */
.section {
    padding: 100px 5%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
    background-color: var(--bg-primary);
}

.bg-darker {
    background-color: #030305;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 60px;
}

/* Glass Panels */
.glass-panel {
    background: var(--bg-secondary);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.glow-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(251, 140, 0, 0.2);
    border-color: rgba(251, 140, 0, 0.4);
}

.accent-border {
    border: 1px solid rgba(251, 140, 0, 0.4);
    box-shadow: inset 0 0 20px rgba(251, 140, 0, 0.15);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-glow);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Features Grid (Nosotros) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-glow);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.15);
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-glow);
}

.project-card p {
    font-size: 1rem;
    line-height: 1.5;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--accent-glow);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background-color: #020203;
    border-top: 1px solid var(--glass-border);
    padding: 80px 5% 30px;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-info span {
    color: var(--accent-glow);
}

.footer-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 300px;
    margin-bottom: 0px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #fff;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-glow);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Form Inputs */
.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 15px 20px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.form-input::placeholder {
    color: var(--text-secondary);
}

.form-input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

/* Responsiveness */
@media (max-width: 900px) {
    h1 {
        margin-top: 30px;
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* --- ANIMACIONES E INTERACCIONES DEL SITIO DE REFERENCIA --- */

/* Hover en imágenes */
.hover-img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.hover-img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(251, 140, 0, 0.25) !important;
}

/* Tarjetas de servicios detallados (Servicios IA) */
.service-card-detailed {
    background-color: var(--bg-secondary);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    padding: 40px;
    height: 100%;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: background-color 0.4s ease-in-out, transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out, border-color 0.4s ease-in-out;
}

.service-card-detailed .icon-container {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(251, 140, 0, 0.1);
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2.2rem;
    transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}

.service-card-detailed h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    transition: color 0.4s ease-in-out;
}

.service-card-detailed p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    transition: color 0.4s ease-in-out;
}

.service-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(251, 140, 0, 0.3);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.service-card-detailed:hover h3,
.service-card-detailed:hover p {
    color: #fff;
}

.service-card-detailed:hover .icon-container {
    background-color: #fff;
    color: var(--primary-color);
}

/* Hover en Desarrollo Web */
.web-dev-item {
    transition: all 0.4s ease-in-out;
    border: 1px solid var(--glass-border);
    background: var(--bg-secondary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.web-dev-item i {
    color: var(--primary-color);
    transition: color 0.4s ease-in-out;
}

.web-dev-item h5 {
    transition: color 0.4s ease-in-out;
}

.web-dev-item p {
    transition: color 0.4s ease-in-out;
}

.web-dev-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(251, 140, 0, 0.15);
    background-color: var(--dark-blue);
    border-color: var(--primary-color);
}

.web-dev-item:hover i,
.web-dev-item:hover h5 {
    color: var(--primary-color);
}

.web-dev-item:hover p {
    color: #fff !important;
}

/* Efecto Flip para "Por qué elegirnos" (Nosotros) */
.flip-card {
    background-color: transparent;
    width: 100%;
    min-height: 280px;
    height: 100%;
    perspective: 1000px;
    position: relative;
}

.flip-card-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    background-color: var(--light-blue);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    box-shadow: inset 0 0 0 1px var(--glass-border);
    transition: box-shadow 0.3s;
}

.flip-card:hover .flip-card-front {
    box-shadow: inset 0 0 0 2px var(--primary-color);
}

.flip-card-front .icon-container-alt {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.flip-card-front h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
}

.flip-card-back {
    transform: rotateY(180deg);
    background-color: var(--dark-blue);
    box-shadow: inset 0 0 0 2px var(--primary-color);
}

.flip-card-back p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    color: #f1f1f1;
}

/* Tarjetas de Equipo (Nosotros) */
.team-card {
    background: var(--bg-secondary);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(251, 140, 0, 0.15);
    border-color: rgba(251, 140, 0, 0.3);
}

.team-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top center;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.team-info p {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin: 0;
}

/* Coming Soon Page Styles */
.coming-soon-body {
    background-color: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

.coming-soon-hero {
    min-height: 100vh;
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-align: center;
    z-index: 1;
    overflow: hidden;
}

.coming-soon-hero-content {
    width: 100%;
    height: 100%;
    z-index: 2;
    position: relative;
    pointer-events: none;
}

.coming-soon-top-text {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1100px;
    z-index: 5;
    pointer-events: auto;
}

.coming-soon-bottom-content {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 850px;
    z-index: 5;
    pointer-events: auto;
    padding-bottom: 0 !important;
}

.max-w-800 {
    max-width: 800px;
}

.max-w-500 {
    max-width: 500px;
}

.coming-soon-title {
    font-size: clamp(1.75rem, 6.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #ffe0b2 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.95)) drop-shadow(0px 2px 6px rgba(0, 0, 0, 1));
    text-shadow: none;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .coming-soon-top-text {
        top: 75px;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .coming-soon-title {
        font-size: clamp(1.7rem, 7vw, 2.5rem);
        letter-spacing: -0.01em;
        filter: drop-shadow(0px 4px 18px rgba(0, 0, 0, 0.95)) drop-shadow(0px 2px 8px rgba(0, 0, 0, 1));
    }
}

.coming-soon-subtitle {
    font-size: clamp(1.05rem, 2.3vw, 1.35rem);
    color: #f8fafc;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.notify-box {
    background: rgba(13, 27, 42, 0.75);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.social-icon-link {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.social-icon-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}