/* ===== Variables CSS ===== */
:root {
    --white: #ffffff;
    --light-gray: #f9f8f7;
    --gray: #efe8e3;
    --dark-gray: #4a4a4a;
    --gold: #8b8b8b;
    --light-gold: #a09e9b;
    --text-color: #2c2c2c;
    --border-color: #d9d5d0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

/* ===== Keyframes Animations ===== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes borderAnimation {
    0% {
        border-color: var(--border-color);
    }
    50% {
        border-color: var(--light-gold);
    }
    100% {
        border-color: var(--border-color);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px transparent;
    }
    50% {
        text-shadow: 0 0 10px rgba(232, 197, 71, 0.5);
    }
    100% {
        text-shadow: 0 0 5px transparent;
    }
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Trebuchet MS', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><defs><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" seed="2"/><feDisplacementMap in="SourceGraphic" scale="40"/></filter><pattern id="marble" patternUnits="userSpaceOnUse" width="100" height="100"><rect width="100" height="100" fill="%23fafaf9"/><path d="M0,50 Q25,40 50,50 T100,50" stroke="%23e8e3dd" stroke-width="1" fill="none" opacity="0.3"/><path d="M0,30 Q20,20 40,30 T80,30 T100,35" stroke="%23d5cdc5" stroke-width="0.5" fill="none" opacity="0.2"/><path d="M10,60 Q30,65 50,60 T90,65" stroke="%23ccc3ba" stroke-width="0.8" fill="none" opacity="0.25"/></pattern></defs><rect width="400" height="400" fill="url(%23marble)"/><rect width="400" height="400" fill="%23ffffff" opacity="0.95"/></svg>'),
        radial-gradient(circle at 15% 85%, rgba(180, 170, 160, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(160, 150, 140, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, 
            #ffffff 0%, 
            #faf9f8 25%, 
            #f5f2f0 50%, 
            #faf8f6 75%, 
            #ffffff 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 400% 400%;
    background-attachment: fixed;
    line-height: 1.7;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===== Header & Navigation ===== */
header {
    background: var(--white);
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(139, 139, 139, 0.08) 0%, transparent 70%),
        linear-gradient(180deg, #ffffff 0%, #faf8f7 100%);
    background-size: 100% 100%;
    border-bottom: 2px solid #e0dcd7;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(1px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    animation: slideInLeft 0.6s ease;
    transition: var(--transition);
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3835 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

nav .nav-link {
    padding: 10px 20px;
    background: transparent;
    color: var(--text-color);
    display: inline-block;
    font-weight: 600;
    position: relative;
    transform: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

nav .nav-link span {
    display: inline-block;
    transform: none;
}

nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: width 0.3s ease;
}

nav .nav-link:hover::after {
    width: 100%;
}

nav .nav-link:hover {
    color: #1a1a1a;
    transform: none;
    box-shadow: none;
    background: transparent;
}

nav .nav-link.active {
    background: transparent;
    color: #1a1a1a;
}

nav .nav-link.active::after {
    width: 100%;
}

/* ===== Hero Section ===== */
.hero {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f7f5f3 50%, #fcfbfa 100%);
    border-bottom: 2px solid #e0dcd7;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="600"><defs><filter id="turbulence"><feTurbulence type="fractalNoise" baseFrequency="0.02" numOctaves="3" result="noise"/><feDisplacementMap in="SourceGraphic" in2="noise" scale="60"/></filter></defs><rect width="600" height="600" fill="%23ffffff" opacity="0"/><path d="M0,200 Q100,150 200,200 T400,200 T600,200" stroke="%23d5cdc5" stroke-width="0.5" fill="none" filter="url(%23turbulence)" opacity="0.12"/><path d="M0,350 Q150,300 300,350 T600,350" stroke="%23ccc3ba" stroke-width="0.8" fill="none" filter="url(%23turbulence)" opacity="0.08"/></svg>'),
        radial-gradient(ellipse at 20% 50%, rgba(180, 170, 160, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(160, 150, 140, 0.04) 0%, transparent 50%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    pointer-events: none;
    z-index: 0;
}

.hero h1,
.hero .subtitle,
.hero .tagline {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    color: #1a1a1a;
    animation: slideUp 0.8s ease 0.2s both;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
    font-weight: 400;
    animation: slideUp 0.8s ease 0.4s both;
}

.hero .tagline {
    font-size: 1rem;
    color: #6a6a6a;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: slideUp 0.8s ease 0.6s both;
}

/* ===== Main Content ===== */
main {
    padding: 60px 0;
}

section {
    margin-bottom: 80px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1a1a1a, transparent);
}

h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #444;
}

strong {
    color: var(--text-color);
    font-weight: 700;
}

/* ===== Grid Layouts ===== */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.four-column {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* ===== Cards ===== */
.card {
    background: var(--white);
    background-image:
        radial-gradient(ellipse at 100% 0%, rgba(139, 139, 139, 0.04) 0%, transparent 60%),
        linear-gradient(135deg, #ffffff 0%, #faf8f7 100%);
    background-size: 100% 100%;
    border: 1px solid #e8e4df;
    padding: 2rem;
    transition: var(--transition);
    animation: slideUp 0.6s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border-radius: 2px;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(160, 158, 155, 0.05), transparent);
    transition: left 0.5s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: #d9d5d0;
    transform: translateY(-6px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.card-skills {
    list-style: none;
}

.card-skills li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--gray);
}

.card-skills li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--dark-gray);
    font-weight: bold;
}

.card-skills li:last-child {
    border-bottom: none;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: #1a1a1a;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.8s ease 0.5s both;
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: #0a0a0a;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
    letter-spacing: 1px;
}

.btn-outline {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-outline:hover {
    background: #1a1a1a;
    color: var(--white);
}

/* ===== About Section ===== */
.about-stats {
    background: var(--light-gray);
    background-image: 
        linear-gradient(135deg, #fbfaf9 0%, #f5f2f0 100%);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.stat-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.stat-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6a6a6a;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1a1a1a;
}

/* ===== Skills Grid ===== */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.skill-card {
    background: var(--white);
    background-image:
        radial-gradient(ellipse at 100% 0%, rgba(139, 139, 139, 0.05) 0%, transparent 70%),
        linear-gradient(135deg, #ffffff 0%, #faf8f7 100%);
    background-size: 100% 100%;
    border: 1px solid #e8e4df;
    padding: 2rem;
    transition: var(--transition);
    animation: slideUp 0.6s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border-radius: 2px;
}

.skill-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #1a1a1a, transparent);
    transition: right 0.6s ease;
}

.skill-card:hover::after {
    right: 0;
}

.skill-card:hover {
    border-color: #d9d5d0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

.skill-card h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.skill-card:hover h3 {
    color: #1a1a1a;
}

/* ===== Projects Grid ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.project-card {
    background: var(--white);
    background-image:
        radial-gradient(ellipse at 100% 0%, rgba(139, 139, 139, 0.04) 0%, transparent 60%),
        linear-gradient(135deg, #ffffff 0%, #faf8f7 100%);
    background-size: 100% 100%;
    border: 1px solid #e8e4df;
    overflow: hidden;
    transition: var(--transition);
    animation: slideUp 0.6s ease;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border-radius: 2px;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a1a1a, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    border-color: #d9d5d0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

.project-image {
    height: 200px;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--border-color);
}

.project-content {
    padding: 2rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.project-tag {
    background: #f5f2f0;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #e8e4df;
    letter-spacing: 0.5px;
    border-radius: 2px;
}

/* ===== Veille Technologique ===== */
.veille-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.veille-card {
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    padding: 2rem;
    transition: var(--transition);
}

.veille-card:hover {
    border-color: var(--light-gold);
    background: var(--white);
    box-shadow: var(--shadow);
}

.veille-date {
    font-size: 0.85rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.veille-source {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.veille-source a {
    color: var(--dark-gray);
    font-weight: 600;
    text-decoration: underline;
}

.veille-source a:hover {
    color: var(--light-gold);
}

/* ===== Contact Form ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--dark-gray);
    box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info {
    background: var(--light-gray);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.contact-item p {
    color: #555;
    margin-bottom: 0;
}

.contact-item a {
    color: var(--dark-gray);
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--light-gold);
}

/* ===== Footer ===== */
footer {
    background: linear-gradient(135deg, #2d2b2a 0%, #3a3835 50%, #2f2d2c 100%);
    background-image:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><defs><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" seed="3"/><feDisplacementMap in="SourceGraphic" scale="20"/></filter></defs><rect width="400" height="400" fill="%232d2b2a" opacity="1"/><path d="M0,100 Q50,80 100,100 T200,100 T300,100 T400,100" stroke="%23ffffff" stroke-width="0.3" fill="none" filter="url(%23noise)" opacity="0.08"/><path d="M0,200 Q75,180 150,200 T300,200 T400,210" stroke="%23ffffff" stroke-width="0.2" fill="none" filter="url(%23noise)" opacity="0.06"/></svg>'),
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    background-size: 100% 100%, 100% 100%;
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 3px solid #5a5854;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160, 158, 155, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    color: #d9d5d0;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}

.footer-section a:hover {
    color: #f0f0f0;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    transition: var(--transition);
    font-size: 1.2rem;
    color: #f0f0f0;
    border-radius: 50%;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

/* ===== Watch Grid (Veille) ===== */
.watch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.watch-card {
    background: var(--white);
    background-image:
        radial-gradient(ellipse at 100% 0%, rgba(139, 139, 139, 0.04) 0%, transparent 60%),
        linear-gradient(135deg, #ffffff 0%, #faf8f7 100%);
    background-size: 100% 100%;
    border: 1px solid #e8e4df;
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    animation: slideUp 0.6s ease;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border-radius: 2px;
}

.watch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #1a1a1a, rgba(26, 26, 26, 0.3));
    transition: height 0.4s ease;
}

.watch-card:hover::before {
    height: 100%;
}

.watch-card:hover {
    border-color: #d9d5d0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

.watch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.watch-date {
    font-size: 0.8rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.watch-category {
    background: var(--light-gray);
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.watch-card h3 {
    margin-bottom: 1rem;
    margin-top: 0;
}

.watch-card p {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.watch-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.watch-tags span {
    background: var(--light-gray);
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    letter-spacing: 0.5px;
}

.watch-link {
    color: var(--dark-gray);
    font-weight: 600;
    display: inline-block;
    margin-top: auto;
}

.watch-link:hover {
    color: var(--light-gold);
}

/* ===== Sources Grid ===== */
.sources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.source-card {
    background: var(--light-gray);
    background-image:
        radial-gradient(ellipse at 100% 0%, rgba(139, 139, 139, 0.04) 0%, transparent 60%),
        linear-gradient(135deg, #f7f5f3 0%, #efe8e3 100%);
    background-size: 100% 100%;
    border: 1px solid #e8e4df;
    padding: 2rem;
    transition: var(--transition);
    animation: scaleIn 0.6s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border-radius: 2px;
}

.source-card:hover {
    border-color: #d9d5d0;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: scale(1.05);
}

.source-card h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.source-card ul {
    list-style: none;
}

.source-card ul li {
    padding: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.source-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--dark-gray);
}

.source-card ul li:last-child {
    border-bottom: none;
}

/* ===== Contact Page ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form-section {
    background-image:
        radial-gradient(ellipse at 100% 0%, rgba(139, 139, 139, 0.06) 0%, transparent 60%),
        linear-gradient(135deg, #ffffff 0%, #faf8f7 100%);
    background-size: 100% 100%;
    border: 1px solid var(--border-color);
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05)olid var(--border-color);
    padding: 2rem;
}

.contact-form-section h2 {
    margin-bottom: 2rem;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark-gray);
    box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--dark-gray);
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 100%;
}

.submit-btn:hover {
    background: var(--text-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.contact-info {
    background: var(--light-gray);
    background-image:
        linear-gradient(135deg, #f9f8f7 0%, #f0ede8 100%);
    background-size: 100% 100%;
    border: 1px solid var(--border-color);
    padding: 2rem;
    height: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.info-card {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    padding: 1.5rem;
    background-image:
        radial-gradient(ellipse at 100% 0%, rgba(139, 139, 139, 0.06) 0%, transparent 60%),
        linear-gradient(135deg, #f5f2f0 0%, #ebe8e3 100%);
    background-size: 100% 100%;
    border-bottom: 1px solid var(--border-color);
    border-left: 3px solid var(--light-gold);
}

.info-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-color);
}

.info-card h3 i {
    margin-right: 0.5rem;
    color: var(--dark-gray);
}

.info-card p {
    margin-bottom: 0;
    color: #555;
    font-size: 0.95rem;
}

.info-card a {
    color: var(--dark-gray);
    font-weight: 600;
}

.info-card a:hover {
    color: var(--light-gold);
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-links-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-color);
    font-weight: 600;
    padding: 0.8rem 1rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.social-links-contact a:hover {
    background: var(--dark-gray);
    color: var(--white);
    border-color: var(--dark-gray);
}

.social-links-contact i {
    font-size: 1.2rem;
}

/* ===== Response Info ===== */
.response-info {
    background: var(--light-gray);
    background-image:
        radial-gradient(ellipse at 100% 0%, rgba(139, 139, 139, 0.06) 0%, transparent 60%),
        linear-gradient(135deg, #f9f8f7 0%, #f0ede8 100%);
    background-size: 100% 100%;
    border: 1px solid var(--border-color);
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.response-info h2 {
    margin-bottom: 1.5rem;
}

.response-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.response-content p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* ===== Availability ===== */
.availability h2 {
    margin-bottom: 2rem;
}

.availability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.availability-card {
    background: var(--white);
    background-image:
        radial-gradient(ellipse at 100% 0%, rgba(139, 139, 139, 0.06) 0%, transparent 60%),
        linear-gradient(135deg, #ffffff 0%, #faf8f7 100%);
    background-size: 100% 100%;
    border: 1px solid var(--border-color);
    padding: 2rem;
    transition: var(--transition);
    animation: slideUp 0.6s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.availability-card:hover {
    border-color: var(--light-gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
}

.availability-card h3 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.availability-card ul {
    list-style: none;
}

.availability-card ul li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.availability-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--dark-gray);
    font-weight: bold;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .three-column {
        grid-template-columns: repeat(2, 1fr);
    }

    .four-column {
        grid-template-columns: repeat(2, 1fr);
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .watch-grid {
        grid-template-columns: 1fr;
    }

    .sources-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .availability-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    nav ul {
        gap: 0.5rem;
    }

    nav .nav-link {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav .nav-link {
        width: 100%;
        text-align: center;
    }
}
