:root {
    --primary-color: #2d4a22;
    --primary-light: #3d5e32;
    --primary-lighter: #4d7242;
    --primary-lightest: #6d8a62;
    --primary-dark: #1e3318;
    --primary-darker: #0f1a0c;
    
    --accent-gold: #d4af37;
    --accent-gold-light: #e8c964;
    --accent-gold-dark: #b8941f;
    
    --text-primary: #2d4a22;
    --text-secondary: #3d5e32;
    --text-light: #4d7242;
    --text-muted: #5a5a5a;
    
    --bg-primary: #d9ddd6;
    --bg-secondary: #cdd2c8;
    --bg-card: #e6e9e3;
    --bg-dark: #1e3318;
    --bg-darker: #0f1a0c;
    
    --border-color: rgba(45, 74, 34, 0.2);
    --border-radius: 12px;
    --shadow: 0 8px 32px rgba(45, 74, 34, 0.12);
    --shadow-hover: 0 12px 40px rgba(45, 74, 34, 0.18);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

html {
    width: 100%;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(230, 233, 227, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(45, 74, 34, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

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

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-darker);
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.social-link:hover {
    background: var(--accent-gold-dark);
    color: var(--bg-card);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

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

/* Menu Toggle */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0.8rem;
    border-radius: 50%;
    background: rgba(45, 74, 34, 0.9);
    backdrop-filter: blur(10px);
    color: var(--bg-card);
    transition: var(--transition);
    border: 2px solid rgba(212, 175, 55, 0.6);
    width: 50px;
    height: 50px;
}

.menu-toggle:hover {
    background: rgba(30, 51, 24, 0.95);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 74, 34, 0.3);
}

.menu-text {
    display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
}

.hamburger .bar {
    width: 22px;
    height: 2px;
    background: var(--bg-card);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Slide Menu */
.slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 450px;
    height: 100vh;
    background: var(--bg-card);
    z-index: 2000;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

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

.slide-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    overflow-y: auto;
    overflow-x: hidden;
}

.menu-header {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-gold);
    position: relative;
}

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

.menu-logo-img {
    height: 100px;
    width: auto;
    transition: var(--transition);
}

.menu-logo-img:hover {
    transform: scale(1.05);
}

.menu-header h3 {
    display: none;
}

.close-menu {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 4px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-menu:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold-dark);
    transform: none;
}

.menu-nav {
    flex: 1;
    font-family: 'Playfair Display', serif;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.menu-items {
    list-style: none;
}

.menu-items li {
    margin-bottom: 0.8rem;
}

.menu-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-gold-light));
    transition: var(--transition);
    z-index: -1;
    border-radius: 8px;
}

.menu-link:hover::before {
    left: 0;
}

.menu-link:hover {
    color: var(--primary-darker);
    transform: translateX(10px);
}

.menu-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.menu-contact {
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.menu-contact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.menu-contact i {
    color: var(--accent-gold);
    width: 20px;
}

.menu-social {
    display: flex;
    gap: 1rem;
}

.menu-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-card);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
}

.menu-social a:hover {
    background: var(--accent-gold);
    color: var(--primary-darker);
    transform: translateY(-3px);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 26, 12, 0.85);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 145px 40px 50px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(45, 74, 34, 0.1);
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: #e6e9e3;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-gold-light), transparent);
    transition: var(--transition);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border: 1px solid var(--accent-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-darker);
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Alternative Hero Section - New Design */
.hero-v2 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(45, 74, 34, 0.95) 0%, 
        rgba(30, 51, 24, 0.9) 50%, 
        rgba(45, 74, 34, 0.95) 100%),
        url('https://images.unsplash.com/photo-1600047509807-ba8f99d2cdde?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 145px 0 50px;
}

.hero-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1), transparent 50%);
    z-index: 1;
}

.hero-v2 .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-v2-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-v2-text {
    color: #e6e9e3;
}

.hero-v2-subtitle {
    font-size: 1.1rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.hero-v2-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-gold);
}

.hero-v2-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-v2-title .highlight-v2 {
    color: var(--accent-gold);
    position: relative;
    display: inline-block;
}

.hero-v2-title .highlight-v2::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold-light));
    opacity: 0.3;
    z-index: -1;
}

.hero-v2-description {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(230, 233, 227, 0.9);
    max-width: 500px;
}

.hero-v2-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.hero-v2-stat {
    text-align: center;
}

.hero-v2-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-v2-stat-label {
    font-size: 0.9rem;
    color: rgba(230, 233, 227, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.hero-v2-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-darker);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.btn-hero-secondary {
    background: transparent;
    color: #e6e9e3;
    border: 2px solid rgba(230, 233, 227, 0.3);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(230, 233, 227, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.hero-v2-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-v2-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-v2-image-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.hero-v2-image-bg {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 20px;
    z-index: 1;
    opacity: 0.8;
}

.hero-v2-floating-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: rgba(230, 233, 227, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 3;
    max-width: 200px;
}

.hero-v2-floating-card h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-v2-floating-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive for Hero V2 */
@media (max-width: 768px) {
    .hero-v2 {
        padding: 110px 20px 50px;
        background-attachment: scroll;
        min-height: 80vh;
    }
    
    .hero-v2-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-v2-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.8rem;
    }
    
    .hero-v2-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.2rem;
    }
    
    .hero-v2-description {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-v2-stats {
        justify-content: center;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .hero-v2-stat-number {
        font-size: 2rem;
    }
    
    .hero-v2-stat-label {
        font-size: 0.85rem;
    }
    
    .hero-v2-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .hero-v2-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-v2 {
        padding: 100px 15px 40px;
        min-height: 75vh;
    }
    
    .hero-v2-content {
        gap: 2.5rem;
    }
    
    .hero-v2-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .hero-v2-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-v2-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .hero-v2-stats {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }
    
    .hero-v2-stat {
        min-width: 80px;
    }
    
    .hero-v2-stat-number {
        font-size: 1.6rem;
    }
    
    .hero-v2-stat-label {
        font-size: 0.8rem;
    }
    
    .hero-v2-buttons {
        gap: 0.8rem;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-v2-image {
        display: none;
    }
}

@media (max-width: 360px) {
    .hero-v2 {
        padding: 95px 12px 35px;
    }
    
    .hero-v2-title {
        font-size: 1.8rem;
    }
    
    .hero-v2-description {
        font-size: 0.95rem;
    }
    
    .hero-v2-stats {
        gap: 1rem;
    }
    
    .hero-v2-stat-number {
        font-size: 1.4rem;
    }
    
    .hero-v2-stat-label {
        font-size: 0.75rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 11px 20px;
        font-size: 0.9rem;
    }
    
    .hero-v2-image {
        display: none;
    }
}

/* Sections */
section {
    padding: 100px 0;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold), var(--accent-gold-light));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Services */
.services {
    background: var(--bg-darker);
    width: 100%;
}

.services .container {
    background: var(--bg-darker);
}

.services .section-header h2 {
    color: #e6e9e3;
}

.services .section-header h2::after {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light), var(--accent-gold));
}

.services .section-header p {
    color: var(--primary-lightest);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold), var(--accent-gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 2;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
    border: 2px solid var(--accent-gold);
}

.service-icon i {
    font-size: 1.8rem;
    color: #e6e9e3;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* About */
.about {
    background: var(--bg-primary);
    width: 100%;
}

.about .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    background: linear-gradient(135deg, var(--bg-card) 0%, #f0f4ed 100%);
    border-radius: 20px;
    padding-top: 80px;
    padding-bottom: 80px;
    box-shadow: 0 10px 30px rgba(45, 74, 34, 0.1);
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.stats {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold-dark);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
}

.stat p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Contact */
.contact {
    background: var(--bg-dark);
    width: 100%;
}

.contact .section-header h2 {
    color: #e6e9e3;
}

.contact .section-header h2::after {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light), var(--accent-gold));
}

.contact .section-header p {
    color: var(--primary-lightest);
}

.contact-content-single {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info-expanded {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(230, 233, 227, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-gold);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(230, 233, 227, 0.1);
    transform: translateY(-5px);
}

.contact-item i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    min-width: 24px;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #e6e9e3;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--primary-lightest);
    line-height: 1.6;
    margin: 0;
}

.contact-cta {
    background: linear-gradient(135deg, var(--bg-card) 0%, #f0f4ed 100%);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
}

.contact-cta p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--bg-darker) 100%);
    color: #e6e9e3;
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--accent-gold);
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--primary-lightest);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-section p {
    color: var(--primary-lightest);
}

.footer-bottom {
    border-top: 1px solid var(--accent-gold-dark);
    padding-top: 2rem;
    text-align: center;
    color: var(--primary-lightest);
}

/* Custom scrollbar for menu */
.slide-menu-content::-webkit-scrollbar {
    width: 6px;
}

.slide-menu-content::-webkit-scrollbar-track {
    background: rgba(45, 74, 34, 0.15);
    border-radius: 3px;
}

.slide-menu-content::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 3px;
}

.slide-menu-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.menu-nav::-webkit-scrollbar {
    width: 4px;
}

.menu-nav::-webkit-scrollbar-track {
    background: transparent;
}

.menu-nav::-webkit-scrollbar-thumb {
    background: rgba(61, 94, 50, 0.6);
    border-radius: 2px;
}

.menu-nav::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Projects Hero */
.projects-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 145px 40px 80px;
     background: linear-gradient(135deg, rgba(45, 74, 34, 0.9), rgba(30, 51, 24, 0.8)),
                url('https://images.unsplash.com/photo-1541976590-713941681591?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
}


.projects-hero-content {
    text-align: center;
    color: #e6e9e3;
}

.projects-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.projects-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Projects Main */
.projects-main {
    padding: 100px 0;
    background: var(--bg-primary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.project-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.project-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
}

.project-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.project-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-status.completed {
    background: rgba(76, 175, 80, 0.9);
    color: white;
}

.project-status.ongoing {
    background: rgba(255, 193, 7, 0.9);
    color: var(--primary-darker);
}

.project-year {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-content {
    padding: 2rem;
    position: relative;
}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
}

.project-location {
    color: var(--accent-gold-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.project-location i {
    margin-right: 0.5rem;
}

.project-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.project-features span {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-features i {
    margin-right: 0.5rem;
    color: var(--accent-gold);
}

/* Mini Projects */
.mini-projects {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.mini-project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mini-project-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.mini-project-content {
    padding: 2rem 1.5rem;
    text-align: center;
}

.mini-project-content h3 {
    font-size: 1.8rem;
}

.mini-project-location {
    color: var(--accent-gold-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.mini-project-location i {
    margin-right: 0.5rem;
}

.mini-project-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Mini Project Features - Project Features ile aynı tasarım */
.mini-project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    margin-top: 3%;
    margin-bottom: 10%;
}

.mini-project-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(45, 74, 34, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(45, 74, 34, 0.2);
    transition: var(--transition);

}

.mini-project-features span:hover {
    background: rgba(45, 74, 34, 0.15);
    border-color: var(--accent-gold);
    transform: translateY(-1px);
}

.mini-project-features span i {
    font-size: 0.7rem;
    color: var(--accent-gold);
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.image-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
}

.image-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #e6e9e3;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10000;
}

.image-modal-close:hover {
    background: rgba(212, 175, 55, 0.8);
    color: var(--primary-darker);
    transform: scale(1.1);
}

.image-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #e6e9e3;
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10000;
}

.image-modal-nav:hover {
    background: rgba(212, 175, 55, 0.8);
    color: var(--primary-darker);
    transform: translateY(-50%) scale(1.1);
}

.image-modal-prev {
    left: 30px;
}

.image-modal-next {
    right: 30px;
}

.project-image {
    cursor: pointer;
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-image img {
    cursor: pointer;
}

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

/* Responsive Image Modal */
@media (max-width: 768px) {
    .image-modal-close {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        top: 20px;
        right: 20px;
    }
    
    .image-modal-nav {
        font-size: 1.5rem;
        padding: 12px 15px;
    }
    
    .image-modal-prev {
        left: 20px;
    }
    
    .image-modal-next {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .image-modal-content {
        padding: 10px;
    }
    
    .image-modal-close {
        font-size: 1.8rem;
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
    }
    
    .image-modal-nav {
        font-size: 1.3rem;
        padding: 10px 12px;
    }
    
    .image-modal-prev {
        left: 15px;
    }
    
    .image-modal-next {
        right: 15px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 60px;
    }
    
    .navbar {
        background: rgba(230, 233, 227, 0.25);
        backdrop-filter: blur(15px);
        padding: 0.6rem 0;
    }
    
    .social-icons {
        display: none;
    }
    
    .nav-logo {
        position: static;
        left: auto;
        transform: none;
    }
    
    .logo-img {
        height: 55px;
    }
    
    .menu-toggle {
        padding: 0.5rem;
        width: 42px;
        height: 42px;
    }
    
    .hamburger .bar {
        width: 18px;
        margin: 2px 0;
    }
    
    .slide-menu {
        width: 100%;
        right: -100%;
    }
    
    .slide-menu-content {
        padding: 1.2rem;
    }
    
    .menu-header {
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }
    
    .menu-logo-img {
        height: 70px;
    }
    
    .close-menu {
        font-size: 1.5rem;
        padding: 0.3rem;
    }
    
    .menu-link {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
        letter-spacing: 0.3px;
    }
    
    .menu-contact p {
        font-size: 0.9rem;
    }
    
    .menu-social a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 110px 20px 40px;
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .services .container,
    .about .container,
    .contact .container,
    .footer .container {
        padding: 0 20px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .about .container {
        padding: 50px 20px;
        margin: 0 20px;
        border-radius: 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .about-text p {
        font-size: 1.05rem;
        max-width: 600px;
        margin: 0 auto 0 auto;
    }
    
    .stats {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2.5rem 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .mini-project-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .mini-project-image img {
        height: 250px;
    }
    
    .mini-project-content {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .mini-project-content h3 {
        font-size: 1.8rem;
    }
    
    .mini-project-features {
        justify-content: center;
    }
    
    .contact-content-single {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-info-expanded {
        gap: 1.2rem;
    }
    
    .contact-item {
        padding: 1.5rem;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item i {
        margin-bottom: 0.8rem;
        margin-top: 0;
    }
    
    .contact-item div {
        text-align: center;
    }
    
    .contact-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-item p {
        font-size: 0.95rem;
    }
    
    .contact-cta {
        padding: 2.5rem 2rem;
    }
    
    .contact-cta h3 {
        font-size: 1.8rem;
    }
    
    .contact-cta p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-buttons {
        gap: 1rem;
    }
    
    .contact-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 55px;
        padding: 0 15px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .menu-toggle {
        width: 38px;
        height: 38px;
        padding: 0.4rem;
    }
    
    .hamburger .bar {
        width: 16px;
    }
    
    .slide-menu-content {
        padding: 1rem;
    }
    
    .menu-header {
        margin-bottom: 1.2rem;
        padding-bottom: 0.6rem;
    }
    
    .menu-logo-img {
        height: 60px;
    }
    
    .close-menu {
        font-size: 1.4rem;
    }
    
    .menu-link {
        font-size: 0.95rem;
        padding: 0.7rem 1rem;
    }
    
    .menu-contact p {
        font-size: 0.85rem;
    }
    
    .menu-social a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .hero {
        padding: 100px 15px 30px;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn {
        padding: 11px 20px;
        font-size: 0.9rem;
    }
    
    .services .container,
    .about .container,
    .contact .container,
    .footer .container {
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 1.9rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .about .container {
        padding: 40px 15px;
        margin: 0 15px;
        border-radius: 12px;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stats {
        display: none;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .mini-project-image img {
        height: 200px;
    }
    
    .mini-project-content {
        padding: 1.5rem;
        text-align: center;
    }
    
    .mini-project-content h3 {
        font-size: 1.5rem;
    }
    
    .mini-project-description {
        font-size: 0.95rem;
    }
    
    .mini-project-features span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .menu-link {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
}

/* Responsive Projects */
@media (max-width: 768px) {
    .projects-hero {
        padding: 110px 20px 60px;
        min-height: 50vh;
    }
    
    .projects-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .projects-hero p {
        font-size: 1.1rem;
    }
    
    .projects-main {
        padding: 80px 0;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-card {
        margin: 0 20px;
    }
    
    .project-image {
        height: 250px;
    }
    
    .project-content {
        padding: 1.5rem;
    }
    
    .project-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .project-description {
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }
    
    .project-overlay {
        padding: 1rem;
    }
    
    .project-info {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .project-status,
    .project-year {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .project-features {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .project-features span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .mini-project-features {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .mini-project-features span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .projects-hero {
        padding: 100px 15px 50px;
        min-height: 45vh;
    }
    
    .projects-hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .projects-hero p {
        font-size: 1rem;
    }
    
    .projects-main {
        padding: 60px 0;
    }
    
    .project-card {
        margin: 0 15px;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-content {
        padding: 1.2rem;
    }
    
    .project-content h3 {
        font-size: 1.2rem;
    }
    
    .project-location {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .project-description {
        font-size: 0.9rem;
    }
    
    .project-overlay {
        padding: 0.8rem;
    }
    
    .project-features {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
    }
    
    .project-features span {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .mini-project-features {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
    }
    
    .mini-project-features span {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 360px) {
    .projects-hero {
        padding: 90px 12px 40px;
    }
    
    .projects-hero h1 {
        font-size: 1.8rem;
    }
    
    .projects-hero p {
        font-size: 0.95rem;
    }
    
    .project-card {
        margin: 0 12px;
    }
    
    .project-content {
        padding: 1rem;
    }
    
    .project-content h3 {
        font-size: 1.1rem;
    }
    
    .project-overlay {
        padding: 0.6rem;
    }
    
    .project-status,
    .project-year {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Hamburger animation responsive fix */
@media (max-width: 768px) {
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
}

.project-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.project-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--accent-gold);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.project-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-gold-light));
    transition: var(--transition);
    z-index: -1;
}

.project-actions .btn:hover::before {
    left: 0;
}

.project-actions .btn:hover {
    color: var(--primary-darker);
    border-color: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.project-actions .btn i {
    font-size: 0.9rem;
    transition: var(--transition);
}

.project-actions .btn:hover i {
    transform: translateX(3px);
}
