/* ================================
   THAKURSAAB — OHI-Inspired Portfolio
   Navy | White | Cyan | Professional
   ================================ */

/* === CSS VARIABLES === */
:root {
    --navy: #0b1d3a;
    --navy-deep: #071428;
    --navy-light: #132a4e;
    --navy-card: #0f2744;
    --white: #ffffff;
    --off-white: #f4f6f9;
    --cyan: #00c0f3;
    --cyan-glow: rgba(0, 192, 243, 0.3);
    --cyan-dark: #0098c7;
    --accent-teal: #00d4aa;
    --text-dark: #0b1d3a;
    --text-body: #4a5568;
    --text-light: #8896a6;
    --text-on-dark: #c8d6e5;
    --border-light: rgba(11, 29, 58, 0.1);
    --border-dark: rgba(255, 255, 255, 0.12);
    --glass-light: rgba(255, 255, 255, 0.95);
    --glass-dark: rgba(11, 29, 58, 0.85);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-radius: 8px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(0, 192, 243, 0.15);
}

/* === RESET === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* === SECTION LABEL (OHI-style accent line + text) === */
.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.label-line {
    width: 40px;
    height: 4px;
    background: var(--cyan);
    border-radius: 2px;
}

.label-line-light {
    background: var(--white);
}

.section-label span {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--cyan);
    text-transform: uppercase;
}

.section-heading {
    font-size: clamp(32px, 5vw, 52px);
    color: var(--text-dark);
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-heading-light {
    color: var(--white);
}

.heading-accent {
    color: var(--cyan);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::after {
    left: 100%;
}

.btn-primary {
    background: var(--cyan);
    color: var(--navy-deep);
    border-color: var(--cyan);
}

.btn-primary:hover {
    background: var(--cyan-dark);
    border-color: var(--cyan-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--cyan-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 11px;
    letter-spacing: 1.5px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(7, 20, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cyan);
    color: var(--navy-deep);
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
}

.logo-accent {
    color: var(--cyan);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-link {
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: var(--transition);
}

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

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

/* Nav Toggle (Mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: url('assets/hero-bg.png') center/cover no-repeat;
    z-index: 1;
    padding-bottom: 120px;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(7, 20, 40, 0.65) 0%,
            rgba(11, 29, 58, 0.75) 50%,
            rgba(11, 29, 58, 0.9) 100%);
    z-index: 0;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 160px 24px 60px;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.hero-accent-line {
    width: 50px;
    height: 5px;
    background: var(--white);
    margin-bottom: 24px;
    border-radius: 3px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
    line-height: 1.0;
}

.title-accent {
    color: var(--cyan);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(16px, 2.5vw, 22px);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    min-height: 34px;
}

.cursor {
    animation: blink-cursor 0.8s infinite;
    color: var(--cyan);
    font-weight: 300;
}

@keyframes blink-cursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 140px;
    right: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--cyan);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        top: 6px;
    }

    100% {
        opacity: 0;
        top: 22px;
    }
}

.scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    writing-mode: vertical-rl;
}

/* === OVERLAPPING CARDS (OHI Signature) === */
.hero-overlap-cards {
    position: relative;
    z-index: 3;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: -40px;
}

.overlap-card {
    padding: 48px 40px;
    position: relative;
    transition: var(--transition);
}

.overlap-card:hover {
    transform: translateY(-5px);
}

.overlap-card-light {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: var(--shadow-lg);
}

.overlap-card-dark {
    background: var(--navy-card);
    color: var(--white);
}

.overlap-accent-line {
    width: 35px;
    height: 4px;
    margin-bottom: 20px;
    border-radius: 2px;
}

.overlap-card-light .overlap-accent-line {
    background: var(--navy);
}

.overlap-card-dark .overlap-accent-line {
    background: var(--white);
}

.overlap-card h3 {
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
    line-height: 1.2;
}

.overlap-card p {
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.7;
    opacity: 0.85;
}

.overlap-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* === ABOUT SECTION === */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

.about-photo-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.about-photo-wrapper:hover .about-photo {
    transform: scale(1.05);
}

.photo-border-deco {
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    border: 3px solid var(--cyan);
    border-radius: var(--border-radius);
    z-index: -1;
    transition: var(--transition);
}

.about-photo-wrapper:hover+.photo-border-deco,
.about-image-col:hover .photo-border-deco {
    top: 12px;
    left: 12px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--navy);
    color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    color: var(--cyan);
}

.exp-plus {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--cyan);
    margin-right: 8px;
}

.exp-text {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.4;
}

.about-image-col {
    position: relative;
}

.about-tagline {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-text-col h2 {
    margin-bottom: 8px;
}

.about-text-col p {
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
}

.about-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
    padding: 28px;
    background: var(--off-white);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--cyan);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.info-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--cyan);
    border-radius: 8px;
    font-size: 14px;
    flex-shrink: 0;
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.info-item strong {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-dark);
    text-transform: uppercase;
}

.info-item span {
    font-size: 13px;
    color: var(--text-light);
}

/* === STATS BAR === */
.stats-bar {
    background: var(--navy);
    padding: 60px 0;
    z-index: 1;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--cyan);
}

.stat-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-on-dark);
    margin-top: 8px;
}

/* === SKILLS SECTION === */
.skills {
    background: var(--off-white);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.skill-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    min-height: 320px;
    cursor: pointer;
    transition: var(--transition);
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.skill-card-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
}

.skill-card:hover .skill-card-bg {
    transform: scale(1.05);
}

.skill-card-content {
    position: relative;
    z-index: 2;
    padding: 40px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.skill-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--white);
    transition: var(--transition);
}

.skill-card:hover .skill-icon {
    background: var(--cyan);
    color: var(--navy-deep);
    border-color: var(--cyan);
    transform: scale(1.1);
}

.skill-card h3 {
    font-size: 18px;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.skill-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.skill-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    background: var(--cyan);
    border-radius: 2px;
    width: 0;
    transition: width 1.5s ease;
}

/* === SERVICES SECTION === */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--off-white);
    border-radius: var(--border-radius);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 192, 243, 0.15);
    background: var(--white);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 900;
    color: rgba(0, 192, 243, 0.08);
    line-height: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--cyan);
    border-radius: 12px;
    font-size: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--cyan);
    color: var(--navy-deep);
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    letter-spacing: 2px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.service-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
}

.service-features li i {
    color: var(--cyan);
    font-size: 12px;
}

/* === CHANNEL SECTION === */
.channel {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.channel-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 192, 243, 0.08), transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 212, 170, 0.06), transparent 60%);
    pointer-events: none;
}

.channel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.channel-description {
    font-size: 16px;
    color: var(--text-on-dark);
    margin-bottom: 36px;
    line-height: 1.8;
}

.channel-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.channel-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.channel-feature i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 192, 243, 0.1);
    border: 1px solid rgba(0, 192, 243, 0.2);
    border-radius: 12px;
    color: var(--cyan);
    font-size: 20px;
    flex-shrink: 0;
}

.channel-feature strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.channel-feature span {
    font-size: 13px;
    color: var(--text-on-dark);
}

/* Channel Card */
.channel-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.channel-card:hover {
    border-color: rgba(0, 192, 243, 0.3);
    box-shadow: 0 0 40px rgba(0, 192, 243, 0.1);
    transform: translateY(-5px);
}

.channel-card-header {
    padding: 24px 32px;
    background: rgba(0, 192, 243, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 1px;
}

.channel-card-header i {
    font-size: 28px;
}

.channel-card-body {
    padding: 40px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: center;
}

.channel-stat-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.channel-stat-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-on-dark);
    margin-top: 8px;
}

.channel-card-footer {
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: var(--text-on-dark);
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #4ade80;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
    }
}

/* === CONTACT SECTION === */
.contact {
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-intro {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(8px);
    border-color: var(--cyan);
    box-shadow: var(--shadow-sm);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--cyan);
    border-radius: 10px;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    background: var(--cyan);
    color: var(--navy-deep);
}

.contact-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-dark);
    text-transform: uppercase;
}

.contact-card span {
    font-size: 14px;
    color: var(--text-light);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px var(--cyan-glow);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* === FOOTER === */
.footer {
    background: var(--navy-deep);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-on-dark);
    line-height: 1.7;
    max-width: 360px;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-on-dark);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--cyan);
    padding-left: 8px;
}

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

.social-icons a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-on-dark);
    font-size: 18px;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--cyan);
    color: var(--navy-deep);
    border-color: var(--cyan);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* === ANIMATIONS === */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

/* Float animation for elements */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-photo-wrapper {
        max-width: 360px;
        margin: 0 auto;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .channel-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-overlap-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-deep);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 8px;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-container {
        padding-top: 140px;
    }

    .section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-info-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        font-size: 28px;
    }

    .overlap-card {
        padding: 32px 28px;
    }

    .overlap-card h3 {
        font-size: 22px;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .overlap-buttons {
        flex-direction: column;
    }

    .stat-number {
        font-size: 36px;
    }

    .channel-card-body {
        grid-template-columns: 1fr;
    }
}