/* LUXAY MUTFAK - Premium Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #D4AF37; /* Metallic Gold */
    --primary-light: #E5C05B;
    --primary-dark: #B3922E;
    --gold-glow: rgba(212, 175, 55, 0.2);
    --bg-dark: #12161A; /* Premium Deep Black/Navy */
    --bg-dark-card: #1C2127;
    --bg-dark-nav: rgba(18, 22, 26, 0.85);
    --bg-light: #FAF9F6; /* Alabaster White */
    --bg-light-card: #FFFFFF;
    --text-dark: #1A1D20;
    --text-light: #FAF9F6;
    --text-muted-dark: #70757B;
    --text-muted-light: #B8BEC5;
    --border-dark: rgba(255, 255, 255, 0.08);
    --border-light: rgba(0, 0, 0, 0.06);
    --border-gold: rgba(212, 175, 55, 0.3);
    --font-sans: 'Outfit', sans-serif;
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.2);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 400;
}

body.dark-mode {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

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

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

ul {
    list-style: none;
}

input, textarea, button {
    font-family: inherit;
    outline: none;
    border: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-gold {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, #F3E7C4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary);
    color: #12161A;
    border: 1px solid var(--primary);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-light);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

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

.btn-primary:hover {
    color: var(--bg-dark);
    box-shadow: 0 10px 20px rgba(214, 175, 55, 0.3);
    border-color: var(--text-light);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
    border-color: var(--text-light);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-outline-dark:hover {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-color: var(--bg-dark);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled {
    background-color: var(--bg-dark-nav);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled .nav-wrapper {
    padding: 10px 0;
}

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

.logo img {
    height: 48px;
    width: auto;
}

.logo-text {
    color: var(--text-light);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.logo-text span {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    color: var(--primary);
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

.nav-btn {
    display: block;
}

.burger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.burger-line {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* Mobile Menu Open State */
.burger-menu.open .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.burger-menu.open .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu.open .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 991px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }
    
    .nav-menu.open {
        transform: translateX(0);
    }
    
    .nav-btn {
        margin-top: 20px;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Fallback background image using nice linear-gradient and dark overlay if real image is missing */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(18, 22, 26, 0.93) 30%, rgba(18, 22, 26, 0.55) 70%, rgba(18, 22, 26, 0.8) 100%),
                url('../assets/projects/hero_kitchen.jpg') center/cover no-repeat;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 650px;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.8rem;
    color: var(--text-light);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted-light);
    margin-bottom: 36px;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
}

/* Features Section */
.features {
    background-color: var(--bg-light);
    position: relative;
    z-index: 10;
}

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

.feature-card {
    background-color: var(--bg-light-card);
    padding: 40px 30px;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(214, 175, 55, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
    color: #12161A;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-desc {
    font-size: 0.92rem;
    color: var(--text-muted-dark);
}

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

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Section Header */
.section-header {
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

body.dark-mode .section-title {
    color: var(--text-light);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

/* Services Section */
.services {
    background-color: #F3F1EC;
}

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

.service-card {
    background-color: var(--bg-light-card);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-img-wrapper {
    position: relative;
    height: 380px;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    opacity: 0.85;
}

.service-card:hover .service-img {
    transform: scale(1.08);
}

.service-info-box {
    background: #FFFFFF;
    padding: 30px;
    border-top: 3px solid var(--primary);
    position: relative;
    margin-top: -40px;
    margin-left: 24px;
    margin-right: 24px;
    margin-bottom: 24px;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--primary);
}

.service-link span {
    transition: var(--transition);
}

.service-card:hover .service-link span {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-img-wrapper {
        height: 280px;
    }
}

/* Projects Showcase */
.projects {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.projects .section-title {
    color: var(--text-light);
}

.projects-slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.projects-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.project-slide {
    flex: 0 0 calc((100% - 72px) / 4);
    min-width: 280px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    height: 420px;
    background-color: var(--bg-dark-card);
}

@media (max-width: 1200px) {
    .project-slide {
        flex: 0 0 calc((100% - 48px) / 3);
    }
}
@media (max-width: 991px) {
    .project-slide {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}
@media (max-width: 576px) {
    .project-slide {
        flex: 0 0 100%;
    }
}

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(18, 22, 26, 0.95) 0%, rgba(18, 22, 26, 0.6) 60%, transparent 100%);
    transform: translateY(0);
    transition: var(--transition);
    z-index: 5;
}

.project-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
}

.project-slide:hover .project-img {
    transform: scale(1.1);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.slider-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #12161A;
}

.view-all-projects-wrapper {
    margin-top: 40px;
}

/* Process Section (How We Work) */
.process {
    background-color: var(--bg-light);
}

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

/* Desktop Connecting Line */
@media (min-width: 992px) {
    .process-grid::after {
        content: '';
        position: absolute;
        top: 60px;
        left: 12%;
        right: 12%;
        height: 2px;
        background: border-box;
        border-top: 2px dashed rgba(214, 175, 55, 0.2);
        z-index: 1;
    }
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-number {
    width: 80px;
    height: 80px;
    background: #FFFFFF;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.process-step:hover .process-number {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 10px 25px var(--gold-glow);
}

.process-step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step-desc {
    font-size: 0.9rem;
    color: var(--text-muted-dark);
    padding: 0 10px;
}

@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}
@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-dark-card);
    color: var(--text-light);
    position: relative;
}

.testimonials .section-title {
    color: var(--text-light);
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-quote {
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
    position: relative;
}

.testimonial-quote::before, .testimonial-quote::after {
    content: '"';
    color: var(--primary);
    font-size: 3rem;
    font-family: serif;
    position: absolute;
    opacity: 0.3;
}

.testimonial-quote::before {
    top: -20px;
    left: -30px;
}
.testimonial-quote::after {
    bottom: -40px;
    right: -30px;
}

.testimonial-author {
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--text-muted-light);
    margin-top: 4px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary);
    width: 25px;
    border-radius: 5px;
}

/* Footer styling */
footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-top: 1px solid var(--border-dark);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 2fr;
    gap: 40px;
}

.footer-col-desc {
    color: var(--text-muted-light);
    font-size: 0.92rem;
    margin: 20px 0;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted-light);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary);
    color: #12161A;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted-light);
    font-size: 0.92rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.92rem;
    color: var(--text-muted-light);
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border-dark);
    font-size: 0.85rem;
    color: var(--text-muted-light);
}

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

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

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Floating Elements */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.5;
    z-index: -1;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.4);
        opacity: 0;
    }
    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}

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

/* Subpages Styling */
.page-banner {
    position: relative;
    padding: 180px 0 100px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
}

.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 22, 26, 0.8), rgba(18, 22, 26, 0.9)),
                url('../assets/projects/page_banner.jpg') center/cover no-repeat;
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted-light);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--primary);
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
}

/* General Page Layouts */
.grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .grid-2col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* About Details */
.about-image-wrapper {
    position: relative;
    background-color: var(--bg-dark-card);
    border-radius: 4px;
    overflow: hidden;
}

.about-image-wrapper img {
    opacity: 0.85;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--primary);
    z-index: -1;
    border-radius: 4px;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted-dark);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.about-feat-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Contact Info & Form */
.contact-info-card {
    background-color: var(--bg-light-card);
    padding: 45px;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.contact-info-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
}

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

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(214, 175, 55, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-text h5 {
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.contact-info-text p {
    color: var(--text-muted-dark);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background-color: var(--bg-light-card);
    padding: 45px;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #F9F9F9;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    background-color: #FFF;
    box-shadow: 0 0 0 3px var(--gold-glow);
}

textarea.form-control {
    height: 150px;
    resize: none;
}

/* Portfolio Filters & Grid */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary);
    color: #12161A;
    border-color: var(--primary);
    box-shadow: 0 5px 15px var(--gold-glow);
}

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

.portfolio-item {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    height: 340px;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    background-color: var(--bg-dark-card);
}

.portfolio-item .project-overlay {
    background: linear-gradient(to top, rgba(18, 22, 26, 0.9) 0%, rgba(18, 22, 26, 0.4) 65%, transparent 100%);
    opacity: 0.9;
}

.portfolio-item:hover .project-img {
    transform: scale(1.08);
}

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

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* Map area */
.map-container {
    height: 450px;
    width: 100%;
    margin-top: 60px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

/* District SEO Specific Page Elements */
.seo-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.seo-header-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.seo-header-content p {
    font-size: 1.1rem;
    color: var(--text-muted-dark);
    line-height: 1.7;
}

.seo-split-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.seo-card {
    background-color: var(--bg-light-card);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.seo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 12px;
}

.seo-card ul {
    margin-top: 20px;
}

.seo-card li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.seo-card li i {
    color: var(--primary);
}

.seo-cta-banner {
    background-color: var(--bg-dark-card);
    border-radius: 4px;
    padding: 60px;
    text-align: center;
    margin-top: 80px;
    border: 1px solid var(--border-dark);
}

.seo-cta-banner h3 {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 20px;
}

.seo-cta-banner p {
    color: var(--text-muted-light);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .seo-split-showcase {
        grid-template-columns: 1fr;
    }
    .seo-cta-banner {
        padding: 40px 20px;
    }
    .seo-cta-banner h3 {
        font-size: 1.6rem;
    }
}

/* Intersection Observer Scroll Animations */
.reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* District Grid and Links */
.district-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.district-link {
    background-color: var(--bg-light-card);
    border: 1px solid var(--border-light);
    padding: 12px 20px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    font-size: 0.92rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-dark);
}

.district-link i {
    color: var(--primary);
    font-size: 0.8rem;
    transition: var(--transition);
}

.district-link:hover {
    border-color: var(--primary);
    background-color: var(--bg-dark-card);
    color: var(--text-light);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.district-link:hover i {
    transform: translateX(3px);
    color: var(--text-light);
}

@media (max-width: 991px) {
    .district-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 480px) {
    .district-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .service-info-box {
        margin-left: 10px;
        margin-right: 10px;
        padding: 20px 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-desc {
        font-size: 0.95rem;
    }
}

