/* ========================================
   Malak Consulting - Premium Styles
   ======================================== */

:root {
    --primary-old: #0E1F3C;
    --primary: #000;
    --primary-light: #1a3a6e;
    --accent: #C6A664;
    --accent-light: #d4bc8a;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray-100: #f5f5f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --black: #000000;
    
    --font-primary: 'Montserrat', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

html, body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--primary);
    background-color: var(--white);
    overflow-x: hidden;
    max-width: 100vw;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: filter var(--transition-normal);
}

/* Hero alanında logo beyaz olsun */
.navbar:not(.scrolled) .logo-img {
    filter: brightness(0) invert(1);
}

/* Footer'da logo beyaz */
.logo-white {
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--primary);
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-normal);
}

/* Hero alanında menü beyaz */
.navbar:not(.scrolled) .nav-links a {
    color: var(--white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-normal);
}

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

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

.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid transparent;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    padding: 6px 10px;
    transition: all var(--transition-fast);
}

.lang-btn:hover {
    background: rgba(0,0,0,0.05);
}

.lang-btn.active {
    color: var(--primary);
    font-weight: 600;
    border-color: var(--accent);
    background: rgba(198, 166, 100, 0.1);
}

.flag-icon {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

/* Hero alanında dil butonları */
.navbar:not(.scrolled) .lang-btn {
    color: rgba(255,255,255,0.8);
}

.navbar:not(.scrolled) .lang-btn:hover {
    background: rgba(255,255,255,0.1);
}

.navbar:not(.scrolled) .lang-btn.active {
    color: var(--white);
    border-color: var(--accent);
    background: rgba(198, 166, 100, 0.2);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all var(--transition-fast);
}

/* Hero alanında hamburger menü beyaz */
.navbar:not(.scrolled) .mobile-menu-btn span {
    background: var(--white);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(198, 166, 100, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(198, 166, 100, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(12px); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
}

/* ========================================
   Sections
   ======================================== */
.section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.5px;
}

/* ========================================
   About Section
   ======================================== */
.about {
    background: var(--off-white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.about-content p:first-child {
    font-size: 1.25rem;
    color: var(--gray-800);
}

.about-content .about-conclusion {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 0;
    padding: 30px;
    background: var(--white);
    border-left: 4px solid var(--accent);
    font-weight: 500;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Mission & Vision
   ======================================== */
.mission-vision {
    background: var(--white);
}

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

.mv-card {
    padding: 60px;
    background: var(--off-white);
    border-left: 4px solid var(--accent);
    transition: all var(--transition-normal);
}

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

.mv-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--accent);
}

.mv-icon svg {
    width: 100%;
    height: 100%;
}

.mv-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.mv-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
}

/* ========================================
   Services Section
   ======================================== */
.services {
    background: var(--primary);
}

.services .section-tag,
.services .section-title {
    color: var(--white);
}

.services .section-tag {
    color: var(--accent);
}

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

.service-card {
    padding: 40px 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.service-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-8px);
}

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

.service-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(198, 166, 100, 0.3);
    line-height: 1;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.service-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

/* ========================================
   Success Story
   ======================================== */
.success {
    background: var(--off-white);
    position: relative;
}

.success::before {
    content: '"';
    position: absolute;
    top: 80px;
    left: 10%;
    font-size: 20rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.1;
    line-height: 1;
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-quote {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--gray-800);
    font-style: italic;
    margin-bottom: 40px;
}

.success-highlight {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary);
    max-width: 100%;
    box-sizing: border-box;
}

.highlight-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .success-highlight {
        padding: 14px 24px;
    }
    
    .highlight-text {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .success-highlight {
        padding: 12px 16px;
    }
    
    .highlight-text {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
        text-transform: none;
    }
}

/* ========================================
   References Section
   ======================================== */
.references {
    background: var(--off-white);
    overflow: hidden;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    gap: 40px;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
}

.logo-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.reference-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 35px;
    background: var(--white);
    border-radius: 12px;
    transition: all var(--transition-normal);
    height: 100px;
    min-width: 180px;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.reference-item:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.reference-logo {
    width: 120px;
    height: 45px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0);
    opacity: 0.5;
    transition: all var(--transition-normal);
}

.reference-item:hover .reference-logo {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* Beyaz/açık renkli logolar için koyu arka plan */
.reference-item.logo-light:hover {
    background: var(--primary);
}

.reference-item.logo-light:hover .reference-logo {
    filter: none;
}

/* ========================================
   Founder Section
   ======================================== */
.founder {
    background: var(--primary);
    color: var(--white);
}

.founder .section-tag {
    color: var(--accent);
    border-color: var(--accent);
}

.founder-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.founder-name {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

.founder-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

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

.founder-text-block p {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.founder-text-block p:last-child {
    margin-bottom: 0;
}

.founder-quote {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--accent);
    padding: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.contact-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    color: var(--gray-800);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

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

.contact-location {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.location-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.location-title svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.location-address {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 12px;
    padding-left: 32px;
}

.location-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-800);
    padding-left: 32px;
    transition: color var(--transition-fast);
}

.location-phone svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.location-phone:hover {
    color: var(--accent);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 60px;
    box-shadow: var(--shadow-lg);
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 0;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--primary);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-300);
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-group textarea {
    resize: none;
}

.form-group label {
    position: absolute;
    left: 0;
    top: 16px;
    font-size: 1rem;
    color: var(--gray-600);
    pointer-events: none;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -8px;
    font-size: 0.75rem;
    color: var(--accent);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--primary);
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-logo .logo-img {
    height: 40px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo-track {
        gap: 30px;
    }
    
    .reference-item {
        min-width: 160px;
        padding: 20px 25px;
    }
    
    .founder-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        background: var(--primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        z-index: 9998;
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        color: var(--white);
    }
    
    .nav-links a:hover {
        color: var(--accent);
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 9999;
        position: relative;
    }
    
    .nav-right {
        gap: 12px;
    }
    
    .lang-switch {
        gap: 2px;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    
    .flag-icon {
        width: 16px;
        height: 12px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .navbar.scrolled {
        padding: 8px 0;
    }
    
    .mobile-menu-btn.active span {
        background: var(--white);
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .section {
        padding: 80px 0;
    }
    
    .about-intro,
    .about-conclusion {
        font-size: 1.1rem;
    }
    
    .timeline {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-card {
        padding: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-track {
        gap: 20px;
        animation-duration: 20s;
    }
    
    .reference-item {
        min-width: 140px;
        height: 80px;
        padding: 15px 20px;
    }
    
    .reference-logo {
        width: 100px;
        height: 35px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-form-wrapper {
        padding: 40px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .timeline {
        grid-template-columns: 1fr;
    }
    
    .about-conclusion {
        padding: 30px 20px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .founder-name {
        font-size: 2rem;
    }
    
    .founder-intro,
    .founder-quote {
        font-size: 1.1rem;
    }
    
    .founder-quote {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

/* ========================================
   Animations
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth page transitions */
.page-transition {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
