@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-oak: #3D2817;
    --charcoal: #2C2C2C;
    --warm-cream: #F5F1EB;
    --matte-gold: #B8860B;
    --copper: #B87333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    background-color: var(--warm-cream);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header - Professional Design */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(44, 44, 44, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero sayfasında header şeffaf başlasın - sadece index.html için */
body:has(.hero) .header:not(.scrolled) {
    background: transparent;
    box-shadow: none;
    border-bottom: none;
}

.header.scrolled {
    background: rgba(44, 44, 44, 0.98) !important;
    backdrop-filter: blur(30px) saturate(180%) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2) !important;
}

/* Header içindeki tüm yazılar her zaman beyaz/krem renkli olmalı */
.header .logo-text,
.header .nav-link,
.header .header-contact-item,
.header .mobile-menu-btn span {
    color: var(--warm-cream) !important;
}

.header .nav-link:hover,
.header .nav-link.active {
    color: var(--matte-gold) !important;
}

.header .logo:hover .logo-text {
    color: var(--matte-gold) !important;
}

.nav {
    padding: 20px 24px;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--warm-cream);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.logo:hover .logo-image {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(15deg);
    transform: scale(1.05);
}

.logo-text {
    display: none;
}

.logo-underline {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: var(--warm-cream);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--matte-gold), var(--copper));
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(184, 134, 11, 0.4);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
    color: var(--matte-gold);
    background: rgba(184, 134, 11, 0.1);
}

.nav-link.active {
    color: var(--matte-gold);
    background: rgba(184, 134, 11, 0.15);
}

/* Header Contact Info */
.header-contact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 8px;
    color: var(--warm-cream);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(184, 134, 11, 0.2);
}

.header-contact-item:hover {
    background: rgba(184, 134, 11, 0.2);
    border-color: rgba(184, 134, 11, 0.4);
    color: var(--matte-gold);
    transform: translateY(-2px);
}

.header-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--matte-gold);
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--warm-cream);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--matte-gold);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--matte-gold);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.loading-logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    animation: logoPulse 2s ease-in-out infinite;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(15deg);
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

.loading-bar {
    width: 300px;
    height: 2px;
    background: rgba(245, 241, 235, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--matte-gold), var(--copper));
    width: 0%;
    animation: loadingProgress 2s ease-out forwards;
}

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

/* Hero Slider Section - Modern & Impressive */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    pointer-events: none;
}

.hero-slider > * {
    pointer-events: auto;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
    z-index: 1;
}

.slider-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.slide-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 8s ease-out;
    filter: brightness(0.7);
}

.slider-slide.active .slide-background {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 44, 44, 0.4) 0%,
        rgba(44, 44, 44, 0.6) 50%,
        rgba(44, 44, 44, 0.85) 100%
    );
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

.slider-slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 20;
    pointer-events: none;
}

.slider-nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(44, 44, 44, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(184, 134, 11, 0.3);
    color: var(--warm-cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    opacity: 0.8;
}

.slider-nav-btn:hover {
    background: rgba(184, 134, 11, 0.3);
    border-color: var(--matte-gold);
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

.slider-nav-btn:active {
    transform: scale(0.95);
}

.slider-nav-btn svg {
    width: 24px;
    height: 24px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
    pointer-events: none;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(245, 241, 235, 0.4);
    border: 2px solid rgba(184, 134, 11, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    position: relative;
    padding: 0;
}

.slider-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.slider-dot:hover::before {
    border-color: var(--matte-gold);
}

.slider-dot.active {
    background: var(--matte-gold);
    border-color: var(--matte-gold);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.6);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(245, 241, 235, 0.1);
    z-index: 20;
    overflow: hidden;
}

.slider-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--matte-gold), var(--copper));
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(184, 134, 11, 0.5);
}

/* Hero Stats in Slider - Replaces Scroll Indicator */
.hero-slider .hero-stats {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    width: calc(100% - 48px);
    padding: 28px 24px;
    background: rgba(44, 44, 44, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(184, 134, 11, 0.1);
    animation: fadeInUp 1s ease-out 0.5s both;
    box-sizing: border-box;
    margin: 0;
}

/* Hero Section (Fallback) */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
}

.hero > * {
    pointer-events: auto;
}

.hero-content,
.hero-content * {
    pointer-events: auto;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(184, 134, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(184, 134, 11, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(184, 134, 11, 0.06) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 44, 44, 0.4) 0%,
        rgba(44, 44, 44, 0.6) 50%,
        rgba(44, 44, 44, 0.85) 100%
    );
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroZoom 20s ease-in-out infinite;
    filter: brightness(0.7);
    will-change: transform;
}

@keyframes heroZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(184, 134, 11, 0.05) 0%,
        transparent 50%,
        rgba(61, 40, 23, 0.1) 100%
    );
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
    width: 100%;
    box-sizing: border-box;
    pointer-events: auto;
    opacity: 1 !important;
    transform: none !important;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(184, 134, 11, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 50px;
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease-out 0.2s both;
    max-width: 90%;
    word-wrap: break-word;
    position: relative;
    z-index: 11;
}

.hero-badge span {
    color: var(--matte-gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(32px, 7vw, 100px);
    font-weight: 700;
    color: var(--warm-cream);
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.hero-title-line {
    display: inline-block;
    animation: slideInLeft 1s ease-out 0.4s both;
    white-space: normal;
    margin-right: 0.2em;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.6s;
}

.hero-title-line::after {
    content: ' ';
}

.hero-title-accent {
    display: block;
    color: var(--matte-gold);
    background: linear-gradient(135deg, var(--matte-gold), var(--copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 1s ease-out 0.8s both;
    position: relative;
    white-space: normal;
    margin-top: 0.3em;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--matte-gold);
    animation: underlineExpand 1.5s ease-out 1.2s forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

.hero-subtitle {
    font-size: clamp(15px, 1.8vw, 22px);
    color: rgba(245, 241, 235, 0.95);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 1s both;
    padding: 0 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    padding: 0 16px;
    animation: fadeInUp 1s ease-out 1.2s both;
    position: relative;
    z-index: 11;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: clamp(14px, 1.5vw, 16px);
    white-space: nowrap;
    z-index: 11;
    pointer-events: auto;
    cursor: pointer;
}

.hero-cta-primary {
    background: var(--matte-gold);
    color: var(--charcoal);
    border: 2px solid var(--matte-gold);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--copper);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.hero-cta-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-cta-primary:hover {
    border-color: var(--copper);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.5);
    transform: translateY(-3px);
}

.hero-cta-primary:active {
    transform: translateY(-1px);
}

.hero-cta-secondary {
    background: transparent;
    color: var(--warm-cream);
    border: 2px solid rgba(245, 241, 235, 0.5);
    backdrop-filter: blur(10px);
}

.hero-cta-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245, 241, 235, 0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.hero-cta-secondary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-cta-secondary:hover {
    border-color: var(--warm-cream);
    background: rgba(245, 241, 235, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-cta-secondary:active {
    transform: translateY(-1px);
}

.hero-cta-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta:hover .hero-cta-icon {
    transform: translateX(5px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 24px;
    background: rgba(44, 44, 44, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 241, 235, 0.15);
    border-radius: 20px;
    animation: fadeInUp 1s ease-out 1.4s both;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-stat {
    text-align: center;
    position: relative;
}

.hero-stat::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--matte-gold), transparent);
    opacity: 0.5;
}

.hero-stat-number {
    font-size: clamp(32px, 4.5vw, 64px);
    font-weight: 700;
    color: var(--matte-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
    line-height: 1;
    white-space: nowrap;
    min-height: 1.2em;
    display: block;
    text-shadow: 0 2px 10px rgba(184, 134, 11, 0.3);
}

.hero-stat-label {
    font-size: clamp(12px, 1.3vw, 15px);
    color: rgba(245, 241, 235, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    word-wrap: break-word;
    margin-top: 4px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeIn 1s ease-out 1.6s both;
    pointer-events: none;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(245, 241, 235, 0.5);
    border-radius: 20px;
    position: relative;
    backdrop-filter: blur(10px);
    background: rgba(44, 44, 44, 0.2);
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--matte-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.scroll-text {
    color: rgba(245, 241, 235, 0.6);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: pulse 2s infinite;
    display: none;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

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

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

/* Ensure hero content stays visible */
.hero-content,
.hero-badge,
.hero-title,
.hero-subtitle,
.hero-cta-group,
.hero-stats {
    opacity: 1 !important;
    visibility: visible !important;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-oak) 0%, var(--charcoal) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(184,134,11,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.stats-section .hero-stats {
    background: rgba(245, 241, 235, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(184, 134, 11, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.stats-section .hero-stat-number {
    color: var(--matte-gold);
    text-shadow: 0 2px 20px rgba(184, 134, 11, 0.5);
}

.stats-section .hero-stat-label {
    color: rgba(245, 241, 235, 0.95);
}

.stats-section .hero-stat::before {
    background: linear-gradient(90deg, transparent, var(--matte-gold), transparent);
    opacity: 0.6;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--warm-cream);
}

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

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--charcoal);
    margin-bottom: 16px;
}

.section-title-light {
    color: var(--warm-cream);
}

.section-subtitle {
    font-size: 18px;
    color: rgba(44, 44, 44, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle-light {
    color: rgba(245, 241, 235, 0.7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid-three {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
}

@media (max-width: 1024px) {
    .services-grid-three {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-three {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--charcoal);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(184, 134, 11, 0.4);
}

.service-image {
    position: relative;
    height: 256px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 44, 44, 0.9), rgba(44, 44, 44, 0.5), transparent);
    z-index: 1;
}

.service-icon {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    background: rgba(184, 134, 11, 0.2);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(184, 134, 11, 0.4);
    color: var(--matte-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.2);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(184, 134, 11, 0.3);
    box-shadow: 0 12px 30px rgba(184, 134, 11, 0.4);
}

.service-content {
    padding: 32px;
}

.service-title {
    font-size: 24px;
    color: var(--warm-cream);
    margin-bottom: 12px;
}

.service-description {
    color: rgba(245, 241, 235, 0.8);
    line-height: 1.6;
}

/* Why Us Section */
.why-us {
    padding: 120px 0;
    background: var(--charcoal);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.1);
    border: 2px solid rgba(184, 134, 11, 0.3);
    color: var(--matte-gold);
    margin-bottom: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.1);
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--matte-gold), var(--copper));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.feature-card:hover .feature-icon {
    background: rgba(184, 134, 11, 0.2);
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.3);
}

.feature-card:hover .feature-icon::before {
    opacity: 0.2;
}

.feature-title {
    font-size: 24px;
    color: var(--warm-cream);
    margin-bottom: 16px;
}

.feature-description {
    color: rgba(245, 241, 235, 0.8);
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* Footer - Professional Design */
.footer {
    position: relative;
    background: linear-gradient(to bottom, var(--charcoal), var(--dark-oak));
    color: var(--warm-cream);
    padding: 80px 0 32px;
    overflow: hidden;
}

/* Footer Background Pattern */
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: 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='1'%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");
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.footer-column {
    animation: fadeInUp 0.8s ease-out;
}

.footer-logo {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.footer-logo:hover .footer-logo-image {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(15deg);
    transform: scale(1.05);
}

.footer-text {
    color: rgba(245, 241, 235, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 14px;
}

.footer-subtitle {
    font-size: 20px;
    margin-bottom: 24px;
    font-weight: 600;
    color: var(--warm-cream);
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 12px;
    color: var(--matte-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(184, 134, 11, 0.2);
    border-color: rgba(184, 134, 11, 0.4);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

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

.footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(245, 241, 235, 0.8);
    transition: all 0.3s ease;
}

.footer-list li:hover {
    color: var(--warm-cream);
    transform: translateX(5px);
}

.footer-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--matte-gold);
    width: 20px;
    height: 20px;
}

.footer-list a {
    color: rgba(245, 241, 235, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--matte-gold);
}

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

.footer-links a {
    color: rgba(245, 241, 235, 0.8);
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--matte-gold);
    transition: width 0.3s ease;
    bottom: -2px;
}

.footer-links a:hover {
    color: var(--matte-gold);
    padding-left: 12px;
}

.footer-links a:hover::before {
    width: 8px;
}

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

.footer-services li {
    color: rgba(245, 241, 235, 0.7);
    position: relative;
    padding-left: 20px;
    transition: all 0.3s ease;
}

.footer-services li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--matte-gold);
    font-weight: bold;
}

.footer-services li:hover {
    color: var(--warm-cream);
    transform: translateX(5px);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 241, 235, 0.1), transparent);
    margin: 48px 0 32px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.footer-copyright {
    color: rgba(245, 241, 235, 0.6);
    font-size: 14px;
}

.footer-copyright-sub {
    font-size: 12px;
    color: rgba(245, 241, 235, 0.4);
    margin-top: 4px;
}

/* Back to Top Button */
.footer-back-to-top {
    width: 48px;
    height: 48px;
    background: rgba(184, 134, 11, 0.2);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 50%;
    color: var(--matte-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-back-to-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--matte-gold), var(--copper));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-back-to-top:hover::before {
    opacity: 1;
}

.footer-back-to-top:hover {
    border-color: var(--matte-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
}

.footer-back-to-top svg {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.footer-back-to-top:hover svg {
    color: var(--charcoal);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger animation for multiple elements */
.fade-in.visible:nth-child(1) { transition-delay: 0.1s; }
.fade-in.visible:nth-child(2) { transition-delay: 0.2s; }
.fade-in.visible:nth-child(3) { transition-delay: 0.3s; }
.fade-in.visible:nth-child(4) { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 968px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        padding: 28px 20px;
    }

    .hero-stat-number {
        font-size: clamp(24px, 3.5vw, 48px);
    }

    .hero-stat-label {
        font-size: 11px;
    }

    .hero-cta-group {
        flex-direction: row;
        gap: 12px;
    }

    .hero-cta {
        padding: 14px 28px;
        font-size: 14px;
    }

    .hero-title {
        font-size: clamp(32px, 7vw, 100px);
        margin-bottom: 24px;
    }

    .hero-subtitle {
        font-size: clamp(15px, 1.8vw, 22px);
        margin-bottom: 40px;
    }
}

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

/* Mobile Slider Adjustments */
@media (max-width: 768px) {
    .hero-slider {
        min-height: 100vh;
    }

    .slider-nav-btn {
        width: 44px;
        height: 44px;
        padding: 0 12px;
    }

    .slider-nav-btn svg {
        width: 20px;
        height: 20px;
    }

    .slider-dots {
        bottom: 100px;
        gap: 10px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .hero-slider .hero-stats {
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 16px;
        width: calc(100% - 32px);
        max-width: calc(100% - 32px);
        box-sizing: border-box;
        margin: 0;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(44, 44, 44, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 12px 16px;
        border-radius: 8px;
        border-bottom: none;
        margin-bottom: 4px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.active {
        background: rgba(184, 134, 11, 0.2);
        border-left: 3px solid var(--matte-gold);
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(184, 134, 11, 0.2);
    }

    .logo-image {
        height: 40px;
    }

    .logo {
        font-size: 20px;
    }

    .loading-logo-image {
        height: 60px;
    }

    .footer-logo-image {
        height: 50px;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .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(7px, -6px);
    }

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

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

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

    .hero {
        min-height: 100vh;
        height: auto;
        padding: 100px 0 60px;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-title {
        font-size: clamp(26px, 9vw, 56px);
        line-height: 1.2;
        margin-bottom: 18px;
        letter-spacing: -0.3px;
        padding: 0 10px;
    }

    .hero-title-line {
        white-space: normal;
        display: inline;
        margin-right: 0.15em;
    }

    .hero-title-line::after {
        content: ' ';
    }

    .hero-title-accent {
        white-space: normal;
        display: block;
        margin-top: 6px;
    }

    .hero-badge {
        padding: 8px 20px;
        font-size: 11px;
        margin-bottom: 24px;
    }

    .hero-badge span {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: clamp(14px, 1.5vw, 18px);
        margin-bottom: 32px;
        padding: 0 10px;
        line-height: 1.5;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 28px 20px;
        margin: 0 16px;
    }

    .hero-stat-number {
        font-size: 42px;
        min-height: 50px;
    }

    .hero-stat-label {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
        padding: 0 16px;
        margin-bottom: 40px;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-mouse {
        width: 20px;
        height: 32px;
    }

    .scroll-text {
        display: none;
    }

    .hero-image {
        height: 100%;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px;
    }

    .logo {
        font-size: 18px;
    }

    .loading-logo-image {
        height: 50px;
    }

    .footer-logo-image {
        height: 45px;
    }

    .slider-nav {
        padding: 0 12px;
    }

    .slider-nav-btn {
        width: 40px;
        height: 40px;
    }

    .slider-dots {
        bottom: 90px;
    }

    .hero-slider .hero-stats {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        padding: 20px 12px;
        width: calc(100% - 24px);
        max-width: calc(100% - 24px);
        box-sizing: border-box;
        margin: 0;
    }

    .hero-title {
        font-size: clamp(22px, 11vw, 42px);
        line-height: 1.15;
        margin-bottom: 16px;
        padding: 0 8px;
    }

    .hero-subtitle {
        font-size: clamp(13px, 1.4vw, 16px);
        padding: 0 12px;
        margin-bottom: 32px;
    }

    .hero-stats {
        padding: 24px 16px;
        gap: 18px;
        margin: 0 12px;
    }

    .hero-stat-number {
        font-size: 38px;
        min-height: 46px;
    }

    .hero-stat-label {
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .hero-cta {
        padding: 14px 24px;
        font-size: 13px;
        width: 100%;
    }

    .hero-cta-group {
        gap: 10px;
        padding: 0 12px;
        margin-bottom: 36px;
    }

    .scroll-indicator {
        bottom: 15px;
    }

    .scroll-mouse {
        width: 18px;
        height: 28px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--warm-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-oak);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--charcoal);
}

/* Page Hero (for subpages) */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.page-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(44, 44, 44, 0.6), rgba(44, 44, 44, 0.8));
    z-index: 1;
}

.page-hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.page-hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: var(--warm-cream);
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(245, 241, 235, 0.9);
    font-weight: 300;
}

/* Active Nav Link */
.nav-link.active {
    color: var(--matte-gold);
}

.nav-link.active::after {
    width: 100%;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--warm-cream);
}

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

.about-text {
    animation: fadeInLeft 0.8s ease-out;
}

.about-paragraph {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(44, 44, 44, 0.8);
    margin-bottom: 24px;
}

.about-image-wrapper {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Mission Vision Values */
.mvv-section {
    padding: 80px 0;
    background: var(--warm-cream);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.mvv-card {
    text-align: center;
    padding: 40px 24px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mvv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.1);
    color: var(--matte-gold);
    margin-bottom: 24px;
}

.mvv-title {
    font-size: 24px;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.mvv-text {
    color: rgba(44, 44, 44, 0.7);
    line-height: 1.6;
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
    background: var(--warm-cream);
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 80px;
    background: var(--charcoal);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-card.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-detail-card.reverse > * {
    direction: ltr;
}

.service-detail-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.service-detail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(44, 44, 44, 0.3), rgba(44, 44, 44, 0.7));
}

.service-detail-content {
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: rgba(184, 134, 11, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--matte-gold);
    margin-bottom: 24px;
}

.service-detail-title {
    font-size: 32px;
    color: var(--warm-cream);
    margin-bottom: 16px;
}

.service-detail-description {
    font-size: 18px;
    color: rgba(245, 241, 235, 0.9);
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-detail-list {
    list-style: none;
    padding: 0;
}

.service-detail-list li {
    color: rgba(245, 241, 235, 0.8);
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.service-detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--matte-gold);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--charcoal);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--warm-cream);
    margin-bottom: 24px;
}

.cta-text {
    font-size: 18px;
    color: rgba(245, 241, 235, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: var(--matte-gold);
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--copper);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.3);
}

/* Projects Gallery */
.projects-gallery {
    padding: 80px 0;
    background: var(--warm-cream);
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--charcoal);
    color: var(--charcoal);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--charcoal);
    color: var(--warm-cream);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.project-item {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
}

.project-item.hidden {
    display: none;
}

.project-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.project-item:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 44, 44, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-title {
    font-size: 24px;
    color: var(--warm-cream);
    margin-bottom: 8px;
}

.project-category {
    color: var(--matte-gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--warm-cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper {
    animation: fadeInLeft 0.8s ease-out;
}

.contact-form-title {
    font-size: 32px;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.contact-form-subtitle {
    color: rgba(44, 44, 44, 0.7);
    margin-bottom: 32px;
}

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

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

.form-group label {
    color: var(--charcoal);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid rgba(44, 44, 44, 0.2);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--matte-gold);
}

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

.form-submit-btn {
    padding: 16px 32px;
    background: var(--charcoal);
    color: var(--warm-cream);
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.form-submit-btn:hover {
    background: var(--matte-gold);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.form-message {
    margin-top: 24px;
    padding: 16px;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.contact-info-wrapper {
    animation: fadeInRight 0.8s ease-out;
}

.contact-info-title {
    font-size: 32px;
    color: var(--charcoal);
    margin-bottom: 32px;
}

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--matte-gold);
}

.contact-info-content h3 {
    font-size: 18px;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.contact-info-content p {
    color: rgba(44, 44, 44, 0.7);
    line-height: 1.6;
}

.contact-info-content a {
    color: rgba(44, 44, 44, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--matte-gold);
}

.contact-map {
    margin-top: 32px;
}

.map-title {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.map-container {
    width: 100%;
    height: 400px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: rgba(44, 44, 44, 0.05);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(44, 44, 44, 0.5);
}

.map-placeholder svg {
    margin-bottom: 16px;
}

/* Responsive Updates */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .service-detail-card.reverse > * {
        direction: ltr;
    }

    .service-detail-image {
        min-height: 300px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

