@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Space+Grotesk:wght@300;500;700&display=swap');

:root {
    /* Brand Colors - Instagram Feed Identity */
    --primary-color: #2563EB; /* Royal Blue 600 */
    --primary-dark: #1E40AF; /* Blue 800 */
    --primary-light: #60A5FA; /* Blue 400 */
    --secondary-color: #93C5FD; /* Blue 300 */
    
    /* Backgrounds */
    --bg-color: #FFFFFF;
    --bg-gradient: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%); /* Slate 50 to White */
    --card-bg: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.8);
    
    /* Text */
    --text-color: #000000;
    --text-muted: #000000;
    --text-light: #94a3b8;
    
    /* UI Elements */
    --glass-border: 1px solid rgba(37, 99, 235, 0.1);
    --border-radius: 24px;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 50px rgba(37, 99, 235, 0.15);
}

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

body {
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

/* Custom Cursor */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

/* =========================================
   Blog Article Styles
   ========================================= */
.hero.blog-hero {
    min-height: 50vh;
    padding-top: 120px;
    align-items: flex-end;
    padding-bottom: 50px;
}

.blog-hero-content {
    text-align: left;
}

.blog-category {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.blog-title {
    font-size: 3.5rem;
    text-align: left;
}

.blog-meta {
    color: var(--text-muted);
    margin-top: 20px;
}

.blog-content-section {
    padding-top: 20px;
}

.blog-container {
    max-width: 800px;
}

.blog-main-image {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
}

.blog-article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-article-content p {
    margin-bottom: 20px;
}

.blog-article-content h2 {
    font-family: var(--font-heading);
    margin: 40px 0 20px;
    color: var(--text-color);
}

.blog-cta {
    background: rgba(37, 99, 235, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    margin: 40px 0;
}

.blog-cta h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.blog-article-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

/* Blog Responsive Adjustments */
@media (max-width: 992px) {
    .hero.blog-hero {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 20px;
    }
    
    .blog-title {
        font-size: 2.5rem !important;
    }
    
    .blog-container {
        padding: 0 20px;
    }

    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .header, .header.scrolled {
        padding: 10px 20px;
    }

    .blog-title {
        font-size: 2rem !important;
    }
    
    .hero.blog-hero {
        padding-top: 80px;
        padding-bottom: 0;
    }
    
    .blog-article-content {
        font-size: 1rem;
    }
    
    .blog-main-image {
        margin-bottom: 15px;
    }

    .blog-article-footer {
        margin-top: 30px;
        padding-top: 15px;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .blog-content-section {
        padding-top: 0;
    }
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Hide Cursor on Touch Devices/Mobile */
@media (max-width: 992px) {
    .cursor-dot, .cursor-outline {
        display: none !important;
    }
}

body:hover .cursor-outline {
    width: 40px;
    height: 40px;
}

/* Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-logo {
    width: 80px;
    animation: pulse 2s infinite;
}

/* Scroll Progress */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 9998;
    transition: width 0.1s;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: 0.4s;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: var(--glass-border);
    padding: 15px 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.logo-img {
    height: 40px;
    filter: brightness(0);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 1px;
    text-decoration: none;
}

.logo-text span {
    color: var(--primary-color);
}

.navbar {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition-fast);
}

/* Language Switcher */
.lang-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.lang-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    /* removed background and border for cleaner look */
    background: transparent;
    border: 2px solid transparent; /* reserve space for border */
    overflow: hidden;
    padding: 0;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lang-btn.active {
    opacity: 1;
    filter: grayscale(0%);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.6);
    transform: scale(1.1);
}

.lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.lang-btn:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

/* Shine effect removed for flags to keep it clean */
.lang-btn::after {
    display: none;
}

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

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

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

/* Added to remove border from active links based on user request */
.nav-link.active, .nav-link:hover, .nav-link:focus, .nav-link:active {
    color: var(--primary-color) !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.btn-contact {
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 500;
}

.btn-contact:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 15px var(--primary-color);
}

.btn-contact::after {
    display: none;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.bar {
    width: 30px;
    height: 2px;
    background: var(--text-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px; /* Added padding to prevent content touching edges */
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.greeting {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    position: relative;
    background: linear-gradient(to right, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.glitch {
    position: relative;
}

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    5% { clip: rect(70px, 9999px, 11px, 0); }
    10% { clip: rect(2px, 9999px, 83px, 0); }
    15% { clip: rect(98px, 9999px, 3px, 0); }
    20% { clip: rect(56px, 9999px, 53px, 0); }
    25% { clip: rect(37px, 9999px, 34px, 0); }
    30% { clip: rect(81px, 9999px, 63px, 0); }
    35% { clip: rect(12px, 9999px, 9px, 0); }
    40% { clip: rect(62px, 9999px, 19px, 0); }
    45% { clip: rect(46px, 9999px, 24px, 0); }
    50% { clip: rect(95px, 9999px, 49px, 0); }
    55% { clip: rect(9px, 9999px, 4px, 0); }
    60% { clip: rect(23px, 9999px, 86px, 0); }
    65% { clip: rect(79px, 9999px, 58px, 0); }
    70% { clip: rect(15px, 9999px, 32px, 0); }
    75% { clip: rect(66px, 9999px, 91px, 0); }
    80% { clip: rect(4px, 9999px, 73px, 0); }
    85% { clip: rect(33px, 9999px, 55px, 0); }
    90% { clip: rect(52px, 9999px, 26px, 0); }
    95% { clip: rect(88px, 9999px, 14px, 0); }
    100% { clip: rect(1px, 9999px, 69px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    5% { clip: rect(52px, 9999px, 74px, 0); }
    10% { clip: rect(79px, 9999px, 85px, 0); }
    15% { clip: rect(14px, 9999px, 47px, 0); }
    20% { clip: rect(32px, 9999px, 26px, 0); }
    25% { clip: rect(96px, 9999px, 51px, 0); }
    30% { clip: rect(44px, 9999px, 93px, 0); }
    35% { clip: rect(10px, 9999px, 11px, 0); }
    40% { clip: rect(55px, 9999px, 2px, 0); }
    45% { clip: rect(3px, 9999px, 61px, 0); }
    50% { clip: rect(21px, 9999px, 45px, 0); }
    55% { clip: rect(82px, 9999px, 16px, 0); }
    60% { clip: rect(93px, 9999px, 89px, 0); }
    65% { clip: rect(28px, 9999px, 7px, 0); }
    70% { clip: rect(59px, 9999px, 35px, 0); }
    75% { clip: rect(40px, 9999px, 99px, 0); }
    80% { clip: rect(85px, 9999px, 50px, 0); }
    85% { clip: rect(7px, 9999px, 72px, 0); }
    90% { clip: rect(64px, 9999px, 23px, 0); }
    95% { clip: rect(18px, 9999px, 84px, 0); }
    100% { clip: rect(48px, 9999px, 60px, 0); }
}

.typewriter {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    height: 30px;
}

.txt-type {
    border-right: 2px solid var(--text-color);
    padding-right: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% { border-color: transparent; }
    50% { border-color: var(--text-color); }
    100% { border-color: transparent; }
}

.about-link {
    margin-top: 25px;
    display: inline-block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    border-bottom: 1px solid transparent;
    opacity: 0.8;
}

.about-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    transform: translateY(-2px);
    opacity: 1;
}

.about-link i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.about-link:hover i {
    transform: translateX(3px);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid rgba(37, 99, 235, 0.2);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-color);
    border-bottom: 2px solid var(--text-color);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translate(0, 0); }
    40% { transform: rotate(45deg) translate(-5px, -5px); }
    60% { transform: rotate(45deg) translate(-3px, -3px); }
}

/* Services & Pricing */
.section-padding {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 70px;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.tab-btn {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.tab-btn:hover {
    background: #f8fafc;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
}

.pricing-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 20px 10px;
}

.pricing-grid.active {
    display: grid;
}

.pricing-disclaimer {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 30px;
    opacity: 0.6;
    font-style: italic;
}

/* Cards PRO Design */
.price-card {
    background: var(--card-bg);
    border: var(--glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Subtle gradient overlay */
.price-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(37, 99, 235, 0.03), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 0;
}

.price-card:hover::after {
    opacity: 1;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

/* Popular Card Highlights */
.price-card.popular {
    background: #fff;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.1);
    z-index: 1;
}

.price-card.popular::before {
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.05), transparent 70%);
}

.price-card.popular:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1), 
                0 0 40px rgba(37, 99, 235, 0.1);
    border-color: var(--primary-color);
}

/* Badge Styling */
.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    color: #fff;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
    z-index: 2;
    border: 2px solid #050505;
}

.price-header {
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.price-header h3 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Gradient text for Popular card title */
.price-card.popular .price-header h3 {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.8;
}

/* Features List */
.features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.features li {
    margin-bottom: 16px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.features li:hover {
    background: rgba(255, 255, 255, 0.03);
}

.features li i {
    color: var(--primary-color);
    font-size: 1rem;
    filter: drop-shadow(0 0 5px rgba(37, 99, 235, 0.5));
    min-width: 20px;
    text-align: center;
    background: none;
    padding: 0;
    width: auto;
    height: auto;
}

.features li i.fa-xmark {
    color: #ff7675;
    filter: drop-shadow(0 0 5px rgba(255, 118, 117, 0.5));
}

/* Buttons PRO */
.btn-block {
    width: 100%;
    padding: 16px 0;
    font-size: 1rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    display: block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

/* Outline Button (Standard Cards) */
.price-card .btn-outline {
    background: transparent;
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--primary-color);
}

.price-card .btn-outline:hover {
    background: rgba(37, 99, 235, 0.06);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

/* Primary Button (Popular Card) */
.price-card .btn-primary {
    background: var(--primary-color);
    border: none;
    color: #fff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.price-card .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.price-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.5);
    background: var(--primary-dark); /* slightly darker/richer blue on hover */
}

.price-card .btn-primary:hover::before {
    left: 100%;
}

/* Portfolio Page Styles */
.portfolio-filters {
    margin-bottom: 40px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.project-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: var(--glass-border);
    transition: var(--transition-fast);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.project-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.placeholder-img {
    background: #1a1a1a;
}

.btn-view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition-fast);
    opacity: 0;
}

.project-card:hover .btn-view {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.btn-view:hover {
    background: #fff;
    color: var(--primary-color);
}

.project-info {
    padding: 20px;
    text-align: left;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.project-info .category {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-info p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.agency-attribution {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: -10px;
    margin-bottom: 20px;
    font-style: italic;
}

.agency-attribution a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.agency-attribution a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-methods {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
}

.method:hover .icon-box {
    background: var(--primary-color);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.method-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.method-value {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.method-value:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon {
    font-size: 1.5rem;
    color: var(--text-color);
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-block;
}

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

.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: var(--glass-border);
}

.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    color: var(--text-color);
    font-size: 1rem;
    outline: none;
    font-family: var(--font-body);
}

.input-group textarea {
    height: 100px;
    resize: none;
}

.input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
}

.input-group input:focus ~ label,
.input-group input:valid ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:valid ~ label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.input-group .bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: 0.3s;
}

.input-group input:focus ~ .bar,
.input-group textarea:focus ~ .bar {
    width: 100%;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.checkbox-group input[type="checkbox"] {
    accent-color: var(--primary-color);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition-fast);
}

.checkbox-group a:hover {
    border-bottom-color: var(--primary-color);
}

/* --- Footer Modern Pro --- */
.footer {
    background: #0f0f12; /* Fondo muy oscuro, casi negro pero elegante */
    color: #a0a0a0;
    padding: 80px 0 30px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

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

.footer-brand .footer-logo {
    width: 150px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Logo blanco */
}

.footer-brand p {
    line-height: 1.6;
    max-width: 300px;
    margin-top: 20px;
}

.footer h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.footer-links, .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer a {
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.footer a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #fff;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

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

/* =========================================
   Restored & Missing Styles
   ========================================= */

/* Legal Pages Content */
.legal-content {
    padding-top: 140px;
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 900px;
    margin: 0 auto;
    min-height: 80vh;
}

.legal-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--text-muted);
}

.legal-content li {
    margin-bottom: 10px;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.back-link:hover {
    transform: translateX(-5px);
}

/* About/Projects Hero Section */
.about-hero {
    padding: 160px 20px 80px;
    text-align: center;
    background: radial-gradient(circle at top center, rgba(37, 99, 235, 0.1), transparent 70%);
}

.profile-text {
    max-width: 800px;
    margin: 0 auto;
}

.role-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Mobile Navigation & Responsive Adjustments */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .navbar {
        gap: 15px;
    }

    /* Contact Page Responsive */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(15, 15, 18, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0; /* Reset padding */
    line-height: 1; /* Reset line-height */
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.5);
    border-color: transparent;
}

.back-to-top i {
    z-index: 2;
    transition: transform 0.3s ease;
    /* Optical centering */
    display: block;
    transform-origin: center;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

.progress-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%) rotate(-90deg);
    pointer-events: none;
}

.progress-ring__circle {
    transition: stroke-dashoffset 0.1s;
    transform-origin: 50% 50%;
    stroke: var(--primary-color);
    stroke-width: 2;
    fill: transparent;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 90px; /* Above WhatsApp/Cookie banner area */
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu */
    .menu-btn {
        display: flex;
        z-index: 1001;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        gap: 30px;
    }

    .navbar.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.8rem;
        font-weight: 600;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s ease forwards;
        color: #000;
    }

    .navbar.active .nav-link {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Staggered animation for links */
    .navbar.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
    .navbar.active .nav-link:nth-child(2) { transition-delay: 0.2s; }
    .navbar.active .nav-link:nth-child(3) { transition-delay: 0.3s; }
    .navbar.active .nav-link:nth-child(4) { transition-delay: 0.4s; }
    .navbar.active .nav-link:nth-child(5) { transition-delay: 0.5s; }

    /* Burger Animation */
    .menu-btn.active .bar {
        background: #000;
    }
    .menu-btn.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .menu-btn.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    .menu-btn.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand p {
        margin: 20px auto 0;
    }
    
    .footer-links, .footer-legal {
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }

    /* Hero & Typography Adjustments */
    .main-title {
        font-size: 3rem;
    }
    
    .hero-content {
        padding-top: 60px;
    }
    
    .about-hero {
        padding-top: 120px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }

    /* Contact Page Mobile */
    .contact-form {
        padding: 25px 20px;
    }
    
    .contact-info {
        text-align: center;
    }

    .contact-methods {
        align-items: center;
    }

    .contact-card-pro {
        padding: 30px 20px;
    }

    .social-links {
        display: none;
    }
}

/* WhatsApp Floating Button - Mega Ultra Pro */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    z-index: 9995;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    animation: float-pulse 3s infinite ease-in-out;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    transition: transform 0.4s ease;
    margin: 0;
    line-height: 1;
    display: block;
}

.whatsapp-float:hover i {
    transform: rotate(360deg);
}

.whatsapp-text {
    position: absolute;
    left: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0;
    animation: ring-pulse 2s infinite;
    z-index: -1;
}

@keyframes float-pulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes ring-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        left: 20px;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 18, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
}

.cookie-content p {
    font-size: 0.95rem;
    color: #e0e0e0;
    margin: 0;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
    font-weight: 500;
}

.cookie-content a:hover {
    border-bottom-color: var(--primary-color);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-banner {
        padding: 25px 15px;
    }
}

/* --- Contact Page Pro Styles --- */
.contact-card-pro {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: 0.4s;
}

.contact-card-pro:hover::before {
    opacity: 1;
}

.contact-card-pro:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.contact-card-pro:hover .contact-icon-wrapper {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-card-pro i {
    font-size: 32px;
    transition: 0.4s;
}

.contact-card-pro:hover i {
    transform: scale(1.1);
}

.contact-card-pro h4 {
    color: var(--text-color);
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.contact-card-pro p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* Specific Card Colors */
.contact-card-whatsapp:hover .contact-icon-wrapper {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.2);
}
.contact-card-whatsapp:hover { border-color: #25D366; }

.contact-card-instagram:hover .contact-icon-wrapper {
    background: rgba(225, 48, 108, 0.1);
    border-color: #E1306C;
    box-shadow: 0 0 30px rgba(225, 48, 108, 0.2);
}
.contact-card-instagram:hover { border-color: #E1306C; }

.contact-card-email:hover .contact-icon-wrapper {
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.2);
}
.contact-card-email:hover { border-color: var(--primary-color); }

/* FAQ Section Styles */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--card-bg);
    border: var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.05), rgba(96, 165, 250, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.faq-item:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item.active {
    background: rgba(37, 99, 235, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    color: var(--text-color);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.faq-title {
    transition: color 0.3s ease;
    flex: 1;
    line-height: 1.4;
}

.faq-item.active .faq-title {
    color: var(--primary-color);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Mobile Adjustments for FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
        font-size: 1rem;
        gap: 15px;
    }

    .faq-answer-content {
        padding: 0 20px 20px;
        font-size: 0.95rem;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
}

.faq-item:hover .faq-icon {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(135deg);
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.5);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 30px 30px;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* Team Card Styles */
.team-card {
    background: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.1);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.team-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.team-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.team-card p {
    color: var(--text-color);
    line-height: 1.6;
}

.team-card .skills-tags {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.team-card .skills-tags span {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}
