:root {
    --primary: #0d0f12; /* Deep Architectural Noir */
    --secondary: #1a1c22;
    --accent: #c5a059; /* Muted Sophisticated Gold */
    --accent-light: #d4b47a;
    --accent-dark: #a68440;
    --text-white: #f8f9fa;
    --text-muted: #8e9196;
    --bg-light: #fdfdfd;
    --glass: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.05);
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-md: 0 15px 35px rgba(0,0,0,0.2);
    --shadow-lg: 0 30px 60px rgba(0,0,0,0.3);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    --blueprint-line: rgba(197, 160, 89, 0.05);
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800;900&display=swap');

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

a, button, input, textarea, .project-item, .service-card {
    cursor: pointer;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    line-height: 1.8;
    overflow-x: hidden;
    background-color: var(--primary);
    -webkit-font-smoothing: antialiased;
}

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

.text-accent { color: var(--accent); }
.bg-dark-section { background-color: var(--primary); color: #fff; }
.py-120 { padding: 120px 0; }

/* Old Process Section Removed - Replaced with enhanced version at the bottom */

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Featured Projects Section */
.featured-projects {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3447 100%);
    color: #fff;
}

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

.featured-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.featured-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 0;
}

.projects-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.project-featured {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

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

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.project-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: var(--accent-light);
    transform: translateX(5px);
}

.project-details {
    padding: 2rem;
}

.project-year {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.project-details h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

/* Özgün Services Section */
.services-unique {
    padding: 120px 0;
    background: var(--primary);
    color: #fff;
}

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

.section-header-center .section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

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

.service-visual {
    position: relative;
    flex-shrink: 0;
}

.service-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.service-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--accent-light);
    transform: translateX(5px);
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(3px);
}

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

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.75rem 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .footer-branding p {
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .hero-architect-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .blueprint-container {
        width: 300px;
        height: 300px;
    }
    
    .architect-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .architect-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .projects-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .architect-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-box {
        width: 100%;
        max-width: 200px;
    }
    
    .process-title,
    .featured-title {
        font-size: 2rem;
    }
}

/* Navbar Premium */
.navbar {
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(10, 11, 13, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.navbar.scrolled {
    background: rgba(10, 11, 13, 0.98);
    backdrop-filter: blur(25px);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.navbar-brand { 
    font-size: 28px; 
    font-weight: 900; 
    letter-spacing: 4px; 
    color: var(--accent) !important;
}

.nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
    margin-left: 30px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 5px;
    right: 0;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::before, .nav-link.active::before { 
    width: 100%; 
    left: 0;
}

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

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* Modern Hero Section */
.hero-modern {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(13, 15, 18, 0.9) 0%, rgba(26, 28, 34, 0.8) 100%), url('../../uploads/settings/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 80px;
    padding: 80px 0;
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.hero-stats-row {
    display: flex;
    gap: 2.5rem;
}

.hero-stats-row .stat {
    text-align: center;
}

.hero-stats-row .stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stats-row .stat span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Building Illustration */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.building-illustration {
    position: relative;
    width: 300px;
    height: 350px;
}

.building {
    position: relative;
    width: 200px;
    height: 250px;
    margin: 0 auto;
}

.building .floor {
    position: absolute;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}

.building .f-1 {
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 60px;
}

.building .f-2 {
    bottom: 70px;
    left: 15%;
    width: 70%;
    height: 60px;
}

.building .f-3 {
    bottom: 140px;
    left: 10%;
    width: 80%;
    height: 60px;
}

.roof-top {
    position: absolute;
    top: 0;
    left: 5%;
    width: 0;
    height: 0;
    border-left: 90px solid transparent;
    border-right: 90px solid transparent;
    border-bottom: 50px solid var(--accent);
    filter: drop-shadow(0 8px 15px rgba(212, 175, 55, 0.4));
}

/* Architectural Visuals */
.architectural-frame {
    width: 100%;
    height: 480px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    position: relative;
    backdrop-filter: blur(5px);
}

.frame-content {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent);
    opacity: 0.3;
}

.vertical-lines {
    position: absolute;
    top: 10%;
    left: 15%;
    width: 70%;
    height: 80%;
    background-image: linear-gradient(90deg, var(--accent) 1px, transparent 1px);
    background-size: 20% 100%;
    opacity: 0.1;
}

.horizontal-lines {
    position: absolute;
    top: 15%;
    left: 10%;
    width: 80%;
    height: 70%;
    background-image: linear-gradient(var(--accent) 1px, transparent 1px);
    background-size: 100% 25%;
    opacity: 0.1;
}

.frame-slider {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow-lg);
    background: var(--primary);
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: -20px; /* Aligns with frame-slider's left offset */
    width: 100%; /* Matches frame-slider's width */
    height: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px; /* Tucks buttons inside the image slightly */
    z-index: 20;
    transform: translateY(-50%);
    pointer-events: none;
}

.luxury-btn {
    width: 44px;
    height: 44px;
    background: rgba(13, 15, 18, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--accent);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.8rem;
    pointer-events: auto; /* Re-enable pointer events for buttons */
    opacity: 0.6;
}

.luxury-btn:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    opacity: 1;
}

.nav-prev {
    transform: translateX(10px);
}

.nav-next {
    transform: translateX(-10px);
}

.architectural-frame:hover .nav-prev,
.architectural-frame:hover .nav-next {
    transform: translateX(0);
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 1.2s cubic-bezier(0.7, 0, 0.3, 1);
    visibility: hidden;
}

.slide-item.active {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.6) brightness(0.7);
    transition: transform 12s ease-out;
}

.slide-item.active img {
    transform: scale(1.1);
    filter: grayscale(0.2) brightness(0.9);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2.5rem;
    background: linear-gradient(to top, rgba(10, 11, 13, 0.95) 0%, transparent 100%);
    color: #fff;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1) 0.4s;
    opacity: 0;
}

.slide-item.active .slide-caption {
    transform: translateY(0);
    opacity: 1;
}

.slide-caption span {
    font-size: 0.75rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.slide-caption h5 {
    margin: 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.underline-design {
    position: relative;
    display: inline-block;
}

.underline-design::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 60%;
    height: 8px;
    background: var(--accent);
    opacity: 0.2;
    z-index: -1;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-modern {
        padding: 60px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-stats-row {
        gap: 1.5rem;
    }
    
    .building-illustration {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-stats-row {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Modern Buttons */
.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

/* Modern Buttons */
.btn {
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--secondary);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10,11,13,0.95) 0%, rgba(10,11,13,0.4) 100%);
    z-index: 1;
}

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

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 35px;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.4rem;
    color: #c0c0c5;
    font-weight: 300;
    max-width: 650px;
    margin-bottom: 50px;
    line-height: 1.6;
}

/* Custom Typography Refinement */
.fw-900 { font-weight: 900; }
.fw-800 { font-weight: 800; }
.fw-700 { font-weight: 700; }
.fw-600 { font-weight: 600; }
.ls-2 { letter-spacing: 2px; }
.ls-5 { letter-spacing: 5px; }

/* Structural Decorations - Replacing "AI" Shapes */
.blueprint-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--blueprint-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--blueprint-line) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.structural-line {
    position: absolute;
    background: var(--accent);
    opacity: 0.4;
}

.line-v { width: 1px; height: 100%; }
.line-h { height: 1px; width: 100%; }

/* Modern Stats Section */
.stats-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    color: #fff;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* Service Cards */
.service-card {
    background: var(--secondary);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

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

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

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

.service-card .icon-box {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--primary);
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card .read-more {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-card .read-more:hover {
    color: var(--accent-dark);
    transform: translateX(5px);
}

/* Project Cards */
.project-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: var(--secondary);
}

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

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

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

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

.project-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 11, 13, 0.95), transparent);
    padding: 2rem;
    color: #fff;
}

.project-content-overlay h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-content-overlay p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.project-content-overlay .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

/* footer-modern Signature Redesign */
.footer-modern {
    background: #0a0b0d;
    padding: 120px 0 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.footer-modern .blueprint-bg {
    opacity: 0.15;
}

.footer-logo-area {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.footer-brand-col .title-line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 1rem;
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

.social-btn:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.footer-heading {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 35px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--accent);
    transform: translateX(10px);
}

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

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.contact-info-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-bottom {
    margin-top: 80px;
    padding: 40px 0;
    position: relative;
}

.bottom-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.2), transparent);
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.designer-credit {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 0;
}

/* Mobile Adjustments for Footer */
@media (max-width: 767px) {
    .footer-modern { padding: 80px 0 0; }
    .footer-brand-col { margin-bottom: 60px; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .footer-desc { margin-left: auto; margin-right: auto; }
    .footer-nav-col, .footer-contact-col { text-align: center; margin-bottom: 50px; }
    .footer-heading::after { left: 50%; transform: translateX(-50%); }
    .contact-info-item { justify-content: center; }
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .hero-content h1 { font-size: 4rem; }
    .section-title h2 { font-size: 36px; }
    .btn { padding: 15px 30px; }
}
/* Process Section Enhancement */
.process-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0d0f12 0%, #15181e 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.architectural-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.process-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.process-label {
    font-size: 0.875rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.process-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
}

.process-staggered {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

.process-staggered::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        var(--accent) 50%, 
        transparent 100%);
    opacity: 0.2;
    transform: translateX(-50%);
}

.process-item {
    display: flex;
    align-items: center;
    margin-bottom: 120px;
    width: 100%;
    position: relative;
}

.process-item.item-left {
    justify-content: flex-end;
    padding-right: calc(50% + 70px);
    text-align: right;
}

.process-item.item-right {
    justify-content: flex-start;
    padding-left: calc(50% + 70px);
    text-align: left;
    flex-direction: row-reverse;
}

.step-visual {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.step-id {
    font-family: 'Times New Roman', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--accent);
    z-index: 3;
    text-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    margin-top: 2px; /* Optical center correction for Serif "I" */
    line-height: 1;
}

.step-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(13, 15, 18, 0.85);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    backdrop-filter: blur(12px);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

.step-circle::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    opacity: 0.1;
    animation: gold-pulse-slow 4s infinite;
}

@keyframes gold-pulse-slow {
    0% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.15); opacity: 0.05; }
    100% { transform: scale(1); opacity: 0.15; }
}

.process-item:hover .step-circle {
    transform: scale(1.15) rotate(45deg);
    border-color: var(--accent);
    box-shadow: 0 0 60px rgba(197, 160, 89, 0.4);
    background: rgba(197, 160, 89, 0.08);
}

.step-text {
    width: 100%;
}

.step-text h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

.step-text p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 1.1rem;
}

.item-left .step-text { text-align: right; }
.item-right .step-text { text-align: left; }

@media (max-width: 768px) {
    .process-staggered { padding-left: 15px; }
    .process-staggered::before { left: 55px; }
    .process-item, .process-item.item-right, .process-item.item-left { 
        flex-direction: row !important; 
        margin-bottom: 60px; 
        padding: 0 !important; 
        text-align: left !important; 
        align-items: flex-start;
    }
    .step-visual { 
        position: relative; 
        left: 0; 
        transform: none; 
        margin: 0 25px 0 0; 
        width: 80px; 
        height: 80px; 
        flex-shrink: 0;
    }
    .step-id { font-size: 1.8rem; }
    .step-text { 
        width: auto; 
        text-align: left !important; 
        padding-top: 5px;
    }
    .item-left .step-text, .item-right .step-text { text-align: left !important; }
}

/* Featured Projects Section Noir */
.featured-projects {
    background: #0a0b0d;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.section-noir {
    background-color: #0a0b0d;
    color: #fff;
}

.featured-header {
    text-align: center;
    margin-bottom: 120px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-label {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 8px;
    font-weight: 800;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 25px;
    position: relative;
}

.featured-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.featured-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #e9ecef;
    margin-top: 15px;
    letter-spacing: -3px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.underline-design {
    position: relative;
    display: inline-block;
}

.underline-design::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

/* Swiper Slider Overhaul - Cinematic Stage */
.projects-slider {
    padding: 30px 0 120px;
    overflow: visible !important;
}

.swiper-slide {
    height: auto;
    opacity: 0.15;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scale(0.8);
    position: relative;
}

.swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
    z-index: 20;
    transition: opacity 1s ease;
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1.05);
    z-index: 100 !important;
    box-shadow: 0 80px 120px rgba(0,0,0,0.9);
}

.swiper-slide-active::after {
    opacity: 0;
}

/* Staggered Reveal Animations for Active Slide */
.swiper-slide .project-category,
.swiper-slide .project-year,
.swiper-slide .project-name,
.swiper-slide .project-explore {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.swiper-slide-active .project-category { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.swiper-slide-active .project-year     { opacity: 1; transform: translateY(0); transition-delay: 0.3s; margin-top: 16px; }
.swiper-slide-active .project-name     { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.swiper-slide-active .project-explore  { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }

.project-card {
    position: relative;
    height: 700px;
    border-radius: 4px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255,255,255,0.03);
}

.project-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    z-index: 30; /* Ensure link is above overlays */
}

.project-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.project-img {
    width: 101%; /* Prevent sub-pixel cracks */
    height: 101%;
    object-fit: cover;
    transition: transform 3s cubic-bezier(0.19, 1, 0.22, 1);
    filter: brightness(0.6) contrast(1.1) grayscale(0.2);
}

.swiper-slide-active .project-img {
    filter: brightness(0.8) contrast(1.1) grayscale(0);
}

.project-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0) 50%, 
        rgba(0,0,0,0.95) 100%);
    z-index: 5;
}

.project-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px;
    z-index: 10;
    text-align: left;
}

.project-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: nowrap;
}

.project-category, .project-year {
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    white-space: nowrap;
}

.project-category {
    background: var(--accent);
    color: #000;
}

.project-year {
    background: #fff;
    color: #000;
}

.project-name {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #fff !important;
    margin-bottom: 35px;
    line-height: 0.95;
    letter-spacing: -3px;
    text-shadow: 0 15px 30px rgba(0,0,0,0.9);
}

.project-explore {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #fff !important;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: relative;
}

.project-explore i {
    color: var(--accent);
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.project-card:hover .project-explore i {
    transform: translateX(10px);
}

/* Progress Bar for Slider */
.slider-progress-container {
    width: 100%;
    max-width: 400px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    margin: 40px auto 0;
    position: relative;
    overflow: hidden;
}

.slider-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    transition: width 0.3s ease;
}

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

.luxury-prev, .luxury-next {
    width: 70px !important;
    height: 70px !important;
    background: rgba(10, 11, 13, 0.8) !important;
    border: 1px solid rgba(197, 160, 89, 0.3) !important;
    backdrop-filter: blur(15px) !important;
    border-radius: 50% !important;
    color: var(--accent) !important;
    pointer-events: auto !important;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.luxury-prev:after, .luxury-next:after {
    font-size: 18px !important;
    font-weight: 900 !important;
    transition: transform 0.3s ease !important;
}

.luxury-prev:hover {
    background: var(--accent) !important;
    color: #000 !important;
    transform: scale(1.1) translateX(-5px) !important;
}

.luxury-next:hover {
    background: var(--accent) !important;
    color: #000 !important;
    transform: scale(1.1) translateX(5px) !important;
}

.luxury-pagination {
    bottom: 20px !important;
}

.luxury-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.1) !important;
    width: 40px !important;
    height: 3px !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    transition: all 0.6s ease !important;
}

.luxury-pagination .swiper-pagination-bullet-active {
    background: var(--accent) !important;
    width: 80px !important;
    box-shadow: 0 0 15px var(--accent);
}

/* Premium Designer Button */
.featured-footer {
    margin-top: 100px;
    text-align: center;
    width: 100%;
}

.btn-designer {
    padding: 22px 60px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(197, 160, 89, 0.4);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

.btn-designer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--accent);
    transform: translate(-50%, -50%);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
    border-radius: 50%;
    opacity: 0;
}

.btn-designer:hover {
    color: #000;
    border-color: var(--accent);
    letter-spacing: 7px;
    box-shadow: 0 0 40px rgba(197, 160, 89, 0.3);
}

.btn-designer:hover::before {
    width: 300%;
    height: 300%;
    opacity: 1;
    border-radius: 0;
}

@media (max-width: 1200px) {
    .slider-nav { padding: 0 20px; }
}

@media (max-width: 991px) {
    .project-card { height: 500px; }
}

@media (max-width: 767px) {
    .featured-projects { padding: 40px 0 80px; }
    .project-card { 
        height: 550px; 
        border-radius: 12px; 
        border: 1px solid rgba(255,255,255,0.05);
    }
    .featured-header { margin-bottom: 60px; }
    .featured-title { font-size: 1.8rem; letter-spacing: -2px; }
    
    .project-mask {
        background: linear-gradient(180deg, 
            rgba(0,0,0,0) 0%, 
            rgba(0,0,0,0.2) 40%, 
            rgba(0,0,0,0.8) 70%,
            rgba(0,0,0,1) 100%) !important;
        z-index: 5;
    }

    .project-overlay-content { 
        padding: 40px 30px; 
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center; /* Center horizontally */
        text-align: center;
    }

    .project-meta {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 20px;
        flex-wrap: nowrap;
    }

    .project-category, .project-year {
        height: 26px !important;
        padding: 0 12px !important;
        font-size: 0.65rem !important;
    }

    .project-name { 
        font-size: 1.8rem !important; 
        margin-bottom: 25px; 
        font-weight: 900 !important;
        text-shadow: 0 4px 20px rgba(0,0,0,0.8) !important;
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .project-explore {
        font-size: 0.75rem;
        color: var(--accent) !important;
        letter-spacing: 3px;
        justify-content: center; /* Center content of explore link */
    }
    
    .slider-nav { display: none; }
    
    .swiper-slide { 
        opacity: 0.4 !important; 
        transform: scale(0.85) !important; 
        transition: all 0.5s ease;
    }
    .swiper-slide-active { 
        opacity: 1 !important; 
        transform: scale(1) !important; 
    }

    .slider-progress-container {
        max-width: 200px;
        margin-top: 30px;
    }
}
/* Premium Services Section - Architectural Noir */
.services-modern {
    padding: 120px 0;
    background: #08090b;
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card-modern {
    height: 100%;
}

.service-card-inner {
    height: 100%;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.service-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--accent);
    transition: all 0.6s ease;
}

.service-card-modern:hover .service-card-inner {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-10px);
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.service-card-modern:hover .service-card-inner::before {
    height: 100%;
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.service-id {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.2);
    font-weight: 800;
    letter-spacing: 2px;
}

.service-icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-box i {
    font-size: 2rem;
    color: var(--accent);
    z-index: 2;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent);
    filter: blur(20px);
    opacity: 0.1;
    transition: opacity 0.6s ease;
}

.service-card-modern:hover .icon-glow {
    opacity: 0.4;
}

.service-body h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.service-body p {
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1rem;
}

.service-footer {
    margin-top: auto;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

.btn-arrow {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.3s ease;
}

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

.service-btn:hover .btn-arrow {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    transform: rotate(-45deg);
}

.services-bottom-cta {
    margin-top: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    margin-bottom: 30px;
}

.services-bottom-cta p {
    color: rgba(255,255,255,0.4);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Mobile Adjustments for Services */
@media (max-width: 767px) {
    .services-modern { padding: 80px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card-inner { padding: 40px 30px; }
    .service-body h3 { font-size: 1.3rem; }
}
/* About Modern Noir - Architectural Heritage */
.about-modern-noir {
    padding: 140px 0;
    background: #0a0b0d;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.about-modern-noir .blueprint-bg {
    opacity: 0.1;
}

.about-visual {
    position: relative;
    padding: 30px;
}

.visual-frame {
    position: relative;
    z-index: 1;
}

.visual-frame .main-img {
    border-radius: 4px;
    filter: brightness(0.7) grayscale(0.2) contrast(1.1);
    transition: all 0.8s ease;
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
}

.visual-frame:hover .main-img {
    filter: brightness(1) grayscale(0) contrast(1.1);
    transform: scale(1.02);
}

.architectural-border {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
    z-index: -1;
    opacity: 0.5;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: #000;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.4);
    z-index: 10;
    transform: rotate(5deg);
}

.badge-year {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.about-lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    border-radius: 4px;
    flex-shrink: 0;
    transition: all 0.5s ease;
}

.feature-item:hover .feature-icon {
    background: var(--accent);
    color: #000;
    transform: rotate(-10deg) scale(1.1);
}

.feature-text h5 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.shadow-accent {
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

@media (max-width: 991px) {
    .about-modern-noir { padding: 80px 0; }
    .about-visual { margin-bottom: 60px; }
    .about-title { font-size: 2.5rem; }
}

/* About Page - Architectural Noir Special Styles */
.page-header-noir {
    padding: 180px 0 120px;
    background: #0a0b0d;
    position: relative;
    overflow: hidden;
    color: #fff;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.header-label {
    font-size: 0.9rem;
    color: var(--accent);
    letter-spacing: 6px;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

.header-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 30px;
}

.breadcrumb-noir {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.breadcrumb-noir a {
    color: var(--accent);
    text-decoration: none;
}

.breadcrumb-noir .active {
    color: rgba(255,255,255,0.4);
}

.section-label-noir {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 4px;
    font-weight: 800;
    margin-bottom: 20px;
}

.story-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
}

.story-lead {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.story-text {
    color: rgba(255,255,255,0.4);
    line-height: 1.9;
    font-size: 1rem;
}

.value-card-glass {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 160, 89, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.value-card-glass:hover {
    background: rgba(197, 160, 89, 0.05);
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 25px;
}

.value-card-glass h5 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.value-card-glass p {
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.stats-noir {
    background: #08090b;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.stat-item-premium {
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 15px;
    transition: all 0.5s ease;
}

.stat-item-premium:hover .stat-number {
    color: var(--accent);
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(197, 160, 89, 0.4);
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
}

@media (max-width: 991px) {
    .page-header-noir { padding: 140px 0 80px; min-height: 350px; }
    .header-title { font-size: 3.5rem; }
    .story-title { font-size: 2.2rem; }
    .stats-noir { padding: 60px 0; }
}

/* Service Detail Page - Architectural Noir Special Styles */
.service-detail-noir {
    background: #0a0b0d !important;
    color: #fff !important;
    position: relative;
    overflow: hidden;
}

.page-header-noir {
    background: #0a0b0d !important;
    color: #fff !important;
}

.header-title {
    color: #fff !important;
}

.service-visual-main {
    position: relative;
    padding: 20px;
}

.service-visual-main .main-img {
    border-radius: 4px;
    filter: brightness(0.8) contrast(1.1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.service-title-noir {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff !important;
}

.service-description-premium {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.6) !important;
    letter-spacing: -0.2px;
}

/* Sidebar Styling */
.glass-card-premium {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(197, 160, 89, 0.1) !important;
    backdrop-filter: blur(15px);
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.widget-title {
    font-size: 1rem;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: 2px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2) !important;
}

.sidebar-links li {
    margin-bottom: 10px;
}

.sidebar-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: rgba(255,255,255,0.5) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

.sidebar-link i {
    font-size: 0.8rem;
    color: var(--accent) !important;
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    color: var(--accent) !important;
    padding-left: 10px;
}

.sidebar-link:hover i {
    transform: translateX(0);
    opacity: 1;
}

.sidebar-cta-noir {
    background: rgba(197, 160, 89, 0.05) !important;
    padding: 30px;
    border: 1px dashed rgba(197, 160, 89, 0.3) !important;
    border-radius: 4px;
}

.btn-noir-gold {
    background: var(--accent) !important;
    color: #000 !important;
    font-weight: 900 !important;
    letter-spacing: 1px;
    padding: 15px 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-noir-gold:hover {
    background: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

@media (max-width: 991px) {
    .service-visual-main .main-img { height: 350px; }
    .service-detail-noir { padding-bottom: 80px; }
    .sidebar-widget { margin-top: 60px; position: relative !important; top: 0 !important; }
}
