/* ===================================
   Winston Light Portfolio - Award-Winning Design
   Colors: Black (#000000) + Baby Blue (#87CEEB)
   =================================== */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --baby-blue: #87CEEB;
    --light-blue: #B0E0E6;
    --dark-blue: #4682B4;
    --white: #FFFFFF;
    --gray: #888888;
    --light-gray: #F5F5F5;
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.6s cubic-bezier(0.76, 0, 0.24, 1);
    --transition-fast: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
}

/* === CUSTOM CURSOR === */
.cursor,
.cursor-follower {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor {
    background-color: var(--baby-blue);
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--baby-blue);
    background: transparent;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

body.cursor-hover .cursor-follower {
    width: 80px;
    height: 80px;
}

@media (max-width: 1024px) {
    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* === LOADING SCREEN === */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    overflow: hidden;
}

.loading-screen::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(135,206,235,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(0.8); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 1; }
}

.loading-text {
    display: flex;
    gap: 6px;
    font-size: clamp(60px, 12vw, 130px);
    font-weight: 900;
    color: var(--baby-blue);
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.loading-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(120px) rotateX(-90deg) scale(0.5);
    text-shadow: 0 0 40px rgba(135, 206, 235, 0.8), 0 0 80px rgba(135, 206, 235, 0.4);
    transition: none;
}

.loading-text span.revealed {
    animation: letter-reveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes letter-reveal {
    0% {
        opacity: 0;
        transform: translateY(120px) rotateX(-90deg) scale(0.5);
        filter: blur(20px);
    }
    50% {
        opacity: 1;
        filter: blur(0px);
    }
    70% {
        transform: translateY(-15px) rotateX(0deg) scale(1.15);
    }
    85% {
        transform: translateY(6px) scale(0.97);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
        filter: blur(0px);
    }
}

.loading-text span.glitch {
    animation: glitch-flash 0.15s ease forwards;
}

@keyframes glitch-flash {
    0% { color: var(--baby-blue); text-shadow: 0 0 40px rgba(135,206,235,0.8); }
    25% { color: #fff; text-shadow: -3px 0 #ff00ff, 3px 0 #00ffff; transform: translateX(-3px); }
    50% { color: var(--baby-blue); text-shadow: 3px 0 #ff00ff, -3px 0 #00ffff; transform: translateX(3px); }
    75% { color: #fff; text-shadow: 0 0 60px rgba(135,206,235,1); transform: translateX(0); }
    100% { color: var(--baby-blue); text-shadow: 0 0 40px rgba(135,206,235,0.8); }
}

.loading-subtext {
    margin-top: 40px;
    font-size: 14px;
    color: var(--gray);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: 1;
}

.loading-subtext.visible {
    opacity: 1;
    transform: translateY(0);
}

.loading-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--dark-blue), var(--baby-blue), var(--white));
    box-shadow: 0 0 20px rgba(135, 206, 235, 0.8);
    transition: width 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.loading-bar.filling {
    width: 100%;
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: difference;
}

.nav-logo {
    flex: 0 0 auto;
}

.nav-logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-heading);
    transition: var(--transition-fast);
}

.nav-logo a:hover {
    color: var(--baby-blue);
}

/* Nav Center Container */
.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Live Clock and Date Container */
.live-clock,
.live-date {
    display: inline-block;
}

.live-clock {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
}

#currentTime {
    font-variant-numeric: tabular-nums;
}

/* Live Date */
.live-date {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .nav-center {
        display: none;
    }
}

.nav-toggle {
    flex: 0 0 auto;
}

@media (max-width: 1024px) {
    .live-clock,
    .live-date {
        display: none;
    }
}

.nav-toggle {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 35px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

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

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

.nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background: #000000;
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: 9998;
    overflow: hidden;
    isolation: isolate;
    mix-blend-mode: normal;
}

.nav-menu.active {
    transform: translateX(0);
}

.nav-menu-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 80px;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    margin-bottom: 30px;
    overflow: hidden;
}

.nav-links a {
    font-size: 60px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-heading);
    display: inline-block;
    position: relative;
    transition: var(--transition-fast);
}

.nav-links a::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--baby-blue);
    overflow: hidden;
    width: 0;
    transition: width 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-contact {
    margin-top: 80px;
    color: var(--gray);
}

.nav-email {
    font-size: 18px;
    margin-bottom: 10px;
}

.nav-location {
    font-size: 16px;
}

@media (max-width: 1024px) {
    .nav {
        padding: 30px 40px;
    }
    
    .nav-menu {
        width: 100%;
        background: #000000;
    }
    
    .nav-menu-inner {
        padding: 100px 40px;
    }
    
    .nav-links a {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 20px 30px;
        mix-blend-mode: normal;
    }
    
    .nav-links a {
        font-size: 32px;
    }
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--baby-blue);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(135, 206, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--baby-blue);
}

.btn-secondary:hover {
    background: var(--baby-blue);
    color: var(--black);
    transform: translateY(-3px);
}

/* === SECTION LABELS & TITLES === */
.section-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-title {
    font-size: 60px;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1.0;
    margin-bottom: 40px;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.highlight {
    color: var(--baby-blue);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 48px;
    }
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 150px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--baby-blue);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--dark-blue);
    bottom: -150px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, 50px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(135, 206, 235, 0.1);
    border: 1px solid var(--baby-blue);
    border-radius: 30px;
    font-size: 14px;
    color: var(--baby-blue);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 70px;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 0.95;
    margin-bottom: 40px;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title .word {
    display: inline-block;
    margin-right: 20px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    max-width: 700px;
    color: var(--gray);
    margin-bottom: 60px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 100px;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    color: var(--gray);
    font-size: 14px;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--baby-blue), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 45px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-title .word {
        margin-right: 10px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 24px;
    }
}

/* === ABOUT SECTION === */
.about {
    padding: 150px 0;
}

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

.about-subtitle {
    font-size: 36px;
    font-family: var(--font-heading);
    margin-bottom: 30px;
    color: var(--baby-blue);
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 60px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-item h4 {
    font-size: 48px;
    font-family: var(--font-heading);
    color: var(--baby-blue);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 14px;
    color: var(--gray);
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 100px 0;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* === SKILLS SECTION === */
.skills {
    padding: 150px 0;
    background: rgba(135, 206, 235, 0.02);
}

.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.skill-bar {
    position: relative;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.skill-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-heading);
}

.skill-percentage {
    font-size: 24px;
    font-weight: 700;
    color: var(--baby-blue);
    font-family: var(--font-heading);
}

.skill-progress {
    width: 100%;
    height: 4px;
    background: rgba(135, 206, 235, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--baby-blue), var(--light-blue));
    width: 0;
    transition: width 1.5s cubic-bezier(0.76, 0, 0.24, 1);
    border-radius: 10px;
    position: relative;
}

.skill-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--baby-blue);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(135, 206, 235, 0.6);
}

@media (max-width: 768px) {
    .skills {
        padding: 100px 0;
    }
    
    .skills-grid {
        gap: 40px;
    }
    
    .skill-name {
        font-size: 14px;
    }
    
    .skill-percentage {
        font-size: 20px;
    }
}

/* === PORTFOLIO SECTION === */
.portfolio {
    padding: 150px 0;
}

.section-header {
    margin-bottom: 80px;
}

.portfolio-grid {
    display: grid;
    gap: 100px;
}

.portfolio-item {
    position: relative;
}

.portfolio-link {
    text-decoration: none;
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.portfolio-item:nth-child(even) .portfolio-link {
    direction: rtl;
}

.portfolio-item:nth-child(even) .portfolio-info {
    direction: ltr;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 16/10;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(135, 206, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.view-project {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
}

.portfolio-link:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-link:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-number {
    font-size: 80px;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--baby-blue);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}

.portfolio-title {
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.portfolio-link:hover .portfolio-title {
    color: var(--baby-blue);
}

.portfolio-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.portfolio-tags span {
    padding: 8px 20px;
    background: rgba(135, 206, 235, 0.1);
    border: 1px solid var(--baby-blue);
    border-radius: 20px;
    font-size: 12px;
    color: var(--baby-blue);
}

@media (max-width: 1024px) {
    .portfolio-link,
    .portfolio-item:nth-child(even) .portfolio-link {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .portfolio-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .portfolio {
        padding: 100px 0;
    }
    
    .portfolio-grid {
        gap: 60px;
    }
    
    .portfolio-title {
        font-size: 28px;
    }
}

/* === SERVICES SECTION === */
.services {
    padding: 150px 0;
    background: linear-gradient(180deg, rgba(135, 206, 235, 0.03) 0%, transparent 100%);
}

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

.service-card {
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(135, 206, 235, 0.2);
    border-radius: 20px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    background: rgba(135, 206, 235, 0.05);
    border-color: var(--baby-blue);
    transform: translateY(-10px);
}

.service-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--baby-blue);
    margin-bottom: 30px;
}

.service-title {
    font-size: 32px;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--white);
}

.service-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
}

.service-list {
    list-style: none;
}

.service-list li {
    font-size: 14px;
    color: var(--gray);
    padding-left: 20px;
    position: relative;
    margin-bottom: 12px;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--baby-blue);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 100px 0;
    }
    
    .service-card {
        padding: 40px 30px;
    }
}

/* === TESTIMONIALS SECTION === */
.testimonials {
    padding: 150px 0;
}

.testimonials-slider {
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 40px;
    overflow-x: hidden;
}

.testimonial-card {
    min-width: 100%;
    flex-shrink: 0;
    padding: 80px 60px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(135, 206, 235, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 24px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 40px;
    color: var(--white);
}

.testimonial-author h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--baby-blue);
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 14px;
    color: var(--gray);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    border: 2px solid var(--baby-blue);
    background: transparent;
    color: var(--baby-blue);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--baby-blue);
    color: var(--black);
    transform: scale(1.1);
}

.testimonials-dots {
    display: flex;
    gap: 10px;
}

.testimonials-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(135, 206, 235, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonials-dots .dot.active {
    background: var(--baby-blue);
    width: 40px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 100px 0;
    }
    
    .testimonial-card {
        padding: 40px 30px;
    }
    
    .testimonial-text {
        font-size: 18px;
    }
}

/* === CONTACT SECTION === */
.contact {
    padding: 150px 0;
}

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

.contact-tagline {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 60px;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--baby-blue);
    margin-bottom: 10px;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    transition: var(--transition-fast);
}

.contact-item a:hover {
    color: var(--baby-blue);
}

.contact-item p {
    font-size: 20px;
    color: var(--white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
}

.form-group input,
.form-group textarea {
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(135, 206, 235, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 16px;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--baby-blue);
    background: rgba(135, 206, 235, 0.05);
}

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

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 100px 0;
    }
}

/* === FOOTER === */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(135, 206, 235, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left h3 {
    font-size: 32px;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.footer-left p {
    color: var(--gray);
}

.footer-right p {
    color: var(--gray);
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* === SMOOTH SCROLL === */
#smooth-wrapper {
    overflow: hidden;
}

#smooth-content {
    will-change: transform;
}