/* ===========================================
   SOO YAPI - MODERN LIGHT THEME
   Cam & Alüminyum Sistemleri
   =========================================== */

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

:root {
    /* Light Theme Colors */
    --bg-primary: #FAFBFC;
    --bg-secondary: #F0F2F5;
    --bg-dark: #1A1A2E;
    --text-primary: #1A1A2E;
    --text-secondary: #4A4A6A; /* WCAG AA contrast fix: was #5A5A7A */
    --text-light: #6A6A8A; /* WCAG AA contrast fix: was #8A8AA0 */
    --accent: #2D5A8A;
    --accent-light: #4A7DB5;
    --accent-gold: #C9A962;
    --white: #FFFFFF;
    --border: rgba(26, 26, 46, 0.1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ===========================================
   ACCESSIBILITY - Skip Link
   =========================================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0 0 8px 8px;
    font-weight: 500;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

/* ===========================================
   ACCESSIBILITY - Focus States
   =========================================== */
*:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Specific focus styles for interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

/* Dark background focus styles */
.side-menu a:focus-visible,
.footer a:focus-visible,
.contact a:focus-visible {
    outline-color: var(--accent-gold);
}

/* ===========================================
   ACCESSIBILITY - Reduced Motion
   =========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .loader {
        display: none !important;
    }
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===========================================
   LOADER
   =========================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.2s forwards;
}

.loader-logo img {
    height: 60px;
    width: auto;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-gold));
    width: 0;
    animation: loadProgress 1.8s ease forwards;
}

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

@keyframes loadProgress {
    to { width: 100%; }
}

/* ===========================================
   NAVIGATION
   =========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 1rem 5%;
    background: rgba(250, 251, 252, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

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

.logo img {
    height: 36px;
    width: auto;
    transition: height var(--transition-fast), filter var(--transition-normal);
    filter: brightness(0) invert(1);
}

.navbar.scrolled .logo img {
    height: 30px;
    filter: none;
}

/* Menu Toggle Button */
.menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
    transform-origin: center;
}

.navbar.scrolled .menu-toggle span {
    background: var(--text-primary);
}

.menu-toggle span:nth-child(1) {
    width: 100%;
}

.menu-toggle span:nth-child(2) {
    width: 70%;
    margin: 6px 0;
}

.menu-toggle span:nth-child(3) {
    width: 100%;
}

.menu-toggle:hover span {
    background: var(--accent-gold);
}

.navbar.scrolled .menu-toggle:hover span {
    background: var(--accent);
}

.menu-toggle:hover span:nth-child(2) {
    width: 100%;
}

/* Menu Open State */
.menu-toggle.active span {
    background: var(--white);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===========================================
   SIDE MENU - Animated Slide
   =========================================== */
.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 999;
    transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.side-menu.active {
    right: 0;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Menu Content */
.menu-content {
    flex: 1;
    padding: 6rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.menu-nav {
    flex: 1;
}

.menu-nav a {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--white);
    padding: 0.7rem 0;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-normal);
}

.side-menu.active .menu-nav a {
    opacity: 1;
    transform: translateX(0);
}

.side-menu.active .menu-nav a:nth-child(1) { transition-delay: 0.1s; }
.side-menu.active .menu-nav a:nth-child(2) { transition-delay: 0.15s; }
.side-menu.active .menu-nav a:nth-child(3) { transition-delay: 0.2s; }
.side-menu.active .menu-nav a:nth-child(4) { transition-delay: 0.25s; }
.side-menu.active .menu-nav a:nth-child(5) { transition-delay: 0.3s; }
.side-menu.active .menu-nav a:nth-child(6) { transition-delay: 0.35s; }

.menu-nav a::after {
    content: '';
    position: absolute;
    bottom: 0.8rem;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.4s ease;
}

.menu-nav a:hover {
    color: var(--accent-gold);
}

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

/* Menu Footer */
.menu-footer {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-slow);
}

.side-menu.active .menu-footer {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.menu-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
}

.menu-contact a {
    color: var(--white);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.3rem;
    transition: var(--transition-fast);
}

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

.menu-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.menu-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.menu-social a:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.menu-social a svg {
    width: 18px;
    height: 18px;
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 5% 5rem;
    position: relative;
    overflow: hidden;
}

/* Hero background layers - sketch to photo transition */
.hero-bg-sketch,
.hero-bg-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-sketch {
    background-image: url('../slider-h1-x.jpg');
    z-index: 0;
}

.hero-bg-photo {
    background-image: url('../slider-h1.jpg');
    z-index: 0;
    opacity: 0;
    transition: opacity 2s ease;
}

.hero-bg-photo.loaded {
    opacity: 1;
}

/* Hero dark overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.55);
    z-index: 1;
}

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

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(45, 90, 138, 0.08) 0%, transparent 60%);
    animation: floatBg 20s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(201, 169, 98, 0.06) 0%, transparent 60%);
    animation: floatBg 15s ease-in-out infinite reverse;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

/* Geometric Decorations */
.hero-decoration {
    position: absolute;
    pointer-events: none;
}

.hero-decoration.line-1 {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
    animation: expandLine 3s ease infinite;
}

.hero-decoration.line-2 {
    bottom: 30%;
    right: 8%;
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.3;
    animation: expandLine 4s ease infinite reverse;
}

.hero-decoration.circle {
    top: 15%;
    right: 15%;
    width: 300px;
    height: 300px;
    border: 1px solid var(--border);
    border-radius: 50%;
    opacity: 0.5;
    animation: rotateSlow 30s linear infinite;
}

@keyframes expandLine {
    0%, 100% { transform: scaleX(0.5); opacity: 0.2; }
    50% { transform: scaleX(1); opacity: 0.4; }
}

@keyframes rotateSlow {
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h1 .line {
    display: block;
    overflow: hidden;
}

.hero h1 .line span {
    display: block;
    opacity: 0;
    transform: translateY(100%);
    animation: revealText 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero h1 .line:nth-child(1) span { animation-delay: 0.5s; }
.hero h1 .line:nth-child(2) span { animation-delay: 0.65s; }

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 .highlight {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.2s forwards;
    z-index: 3;
    position: relative;
}

.hero .btn-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 1.5s forwards;
    z-index: 3;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { 
        opacity: 1; 
        transform: scaleY(1); 
    }
    50% { 
        opacity: 0.3; 
        transform: scaleY(0.6); 
    }
}

/* ===========================================
   SERVICES SECTION
   =========================================== */
.services {
    padding: 8rem 5%;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Dark overlay for text readability */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.75);
    transition: background 0.4s ease;
    z-index: 1;
}

/* Top gradient bar */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 3;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-card:hover::after {
    background: rgba(26, 26, 46, 0.6);
}

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

/* All card content above overlay */
.service-card > * {
    position: relative;
    z-index: 2;
}

.service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.service-card:hover .service-num {
    color: var(--accent-gold);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.02em;
}

.service-card p {
    font-size: 0.95rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .service-card {
        min-height: 220px;
    }
}

/* ===========================================
   PROJECTS SECTION
   =========================================== */
.projects {
    padding: 8rem 5%;
    background: var(--bg-secondary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-normal);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-category {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.project-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--white);
}

/* ===========================================
   ABOUT SECTION
   =========================================== */
.about {
    padding: 8rem 5%;
    background: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.about-content {
    max-width: 550px;
}

.about-content .section-label {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: 8px;
    z-index: -1;
}

/* ===========================================
   CONTACT SECTION
   =========================================== */
.contact {
    padding: 8rem 5%;
    background: var(--bg-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../slider-h1-x.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.07;
    pointer-events: none;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.contact-info .section-label {
    color: var(--accent-gold);
}

.contact-info .section-title {
    color: var(--white);
    text-align: left;
}

.contact-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-item .label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.contact-item .value {
    font-size: 1rem;
    color: var(--white);
}

.contact-item a {
    transition: var(--transition-fast);
}

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

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

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

/* Honeypot - hidden from humans */
.form-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* Captcha / Security verification */
.captcha-group {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.25rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.captcha-label {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.captcha-label span {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1rem;
}

#captcha {
    max-width: 100px;
    text-align: center;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    padding: 0.6rem 0.5rem;
}

#captcha::placeholder {
    font-size: 0.7rem;
    letter-spacing: 0;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-normal);
}

.submit-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

/* ===========================================
   BLOG PREVIEW
   =========================================== */
.blog-preview {
    padding: 8rem 5%;
    background: var(--bg-primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-card-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.blog-card-category {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    background: rgba(45, 90, 138, 0.1);
    border-radius: 50px;
}

.blog-card h3 {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    transition: var(--transition-fast);
}

.blog-card-link:hover {
    gap: 0.75rem;
}

.view-all-btn {
    text-align: center;
    margin-top: 4rem;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    padding: 2.5rem 5% 1.5rem;
    background: var(--bg-dark);
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-brand .logo {
    margin-bottom: 0.75rem;
    display: inline-block;
}

.footer-brand .logo img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 260px;
}

.footer-links h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.footer-links a {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.4rem;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.footer-social a svg {
    width: 14px;
    height: 14px;
}

/* ===========================================
   WHATSAPP FLOAT BUTTON
   =========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ===========================================
   REVEAL ANIMATIONS
   =========================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-wrap: wrap;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .side-menu {
        max-width: 100%;
    }
    
    .menu-nav a {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem 4%;
    }
    
    .hero {
        padding: 6rem 4% 4rem;
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
