/*
Theme Name: AVKAS Construction
Theme URI: https://avkas.com
Author: AVKAS Construction
Author URI: https://avkas.com
Description: A modern, minimal WordPress theme for AVKAS Construction - Building Growth. Creating Prosperity.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: avkas-construction
Tags: construction, architecture, business, black, gold, minimal
*/

:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #141414;
    --gold-primary: #D4AF37;
    --gold-light: #E8D48B;
    --gold-dark: #B8941F;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
}

/* Design Badge */
.design-badge {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--gold-primary);
    color: var(--bg-primary);
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 1000;
}

/* Navigation */
.main-nav,
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    backdrop-filter: blur(0);
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

/* Scrolled state */
.main-nav.scrolled,
nav.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
}

.main-nav .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 30px;
}

/* Logo sizing */
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--text-primary);
}

.logo img,
.logo .custom-logo,
.custom-logo-link img {
    max-height: 50px;
    width: auto;
    display: block;
}

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

.logo span,
.logo-text span {
    color: var(--gold-primary);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--text-primary);
    text-decoration: none;
}

/* WordPress nav menu styles */
.nav-links,
.main-nav ul.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0 auto 0 40px;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links .current-menu-item a {
    color: var(--gold-primary);
}

.nav-cta {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gold-primary);
    border: none;
    color: var(--bg-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-cta:hover {
    background: var(--gold-light);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 35px;
    height: 35px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 99;
    padding: 120px 30px 50px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

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

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: 30px;
}

.mobile-nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--gold-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px) 0 0 / 100px 100px,
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px) 0 0 / 100px 100px;
    pointer-events: none;
    z-index: 1;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.55) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    box-shadow: inset 0 0 200px 80px rgba(0, 0, 0, 0.9);
}

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

.hero-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero h1 span {
    display: block;
    color: var(--gold-primary);
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    padding: 18px 48px;
    background: var(--gold-primary);
    border: none;
    color: var(--bg-primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 18px 48px;
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--gold-primary), transparent);
}

/* Section Styles */
section {
    padding: 60px 80px;
}

.section-header {
    margin-bottom: 30px;
}

.section-header.center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
}

/* About Section */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    height: 600px;
    background: var(--bg-tertiary);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--gold-primary);
    z-index: -1;
}

.about-image::after {
    content: '🏗️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    opacity: 0.2;
    z-index: 0;
}

.about-image[style*="background-image"]::after {
    display: none;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.about-feature span {
    width: 24px;
    height: 24px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.about-feature p {
    margin-bottom: 0 !important;
    font-size: 0.95rem !important;
    color: var(--text-secondary);
}

/* Services */
.services {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-secondary);
    padding: 60px 40px;
    transition: all 0.4s ease;
}

.service-card:hover {
    background: var(--bg-tertiary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-card .arrow {
    margin-top: 30px;
    color: var(--gold-primary);
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-card:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Service Card Link Styling */
a.service-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.service-card h3 {
    color: var(--text-primary);
    text-decoration: none;
}

a.service-card p {
    color: var(--text-secondary);
}

a.service-card:hover h3 {
    color: var(--gold-primary);
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.project-card {
    aspect-ratio: 1;
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
}

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

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

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

/* Why Choose Us (Features) */
.features {
    background: var(--bg-primary);
    position: relative;
    padding: 120px 80px;
}

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

.feature-item {
    background: var(--bg-secondary);
    padding: 50px 40px;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: var(--bg-tertiary);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

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

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

    .feature-item {
        padding: 40px 30px;
    }
}

/* Testimonials */
.testimonials-wrapper {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.testimonial-card {
    min-width: 400px;
    background: var(--bg-secondary);
    padding: 50px;
    border-left: 2px solid var(--gold-primary);
}

/* FAQ */
.faq {
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #111;
    padding: 25px 30px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-item.active {
    border-color: var(--gold-primary);
    background: #151515;
}

.faq-item h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-item h4 span {
    color: var(--gold-primary);
    font-size: 1.2rem;
    font-weight: 300;
}

.faq-item p {
    display: none;
    margin-top: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-item.active p {
    display: block;
}

/* CTA */
.cta {
    text-align: center;
    background: #000;
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    position: relative;
    border-top: 1px solid var(--gold-primary);
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.cta h2 span {
    display: block;
    color: var(--gold-primary);
}

.cta p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.cta-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .cta h2 {
        font-size: 2.5rem;
    }
}

/* Footer */
footer {
    background: #000;
    padding: 40px 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}


/* Responsive Styles */
@media (max-width: 1024px) {

    .services-grid,
    .features-grid,
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .main-nav .container {
        padding: 0 20px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

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

    .hero h1 {
        font-size: 3rem;
    }

    .about,
    .faq-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* Page Hero */
.page-hero {
    padding: 180px 0 100px;
    background: var(--bg-secondary);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.page-hero p {
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* About Split */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 40px;
}

.about-split-image {
    position: relative;
}

.about-split-image img {
    width: 100%;
    height: auto;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

/* Values Split */
.values-section {
    background: var(--bg-tertiary);
    padding: 120px 80px;
}

.values-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
}

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

.value-item-mini {
    display: flex;
    gap: 20px;
}

.values-split-image img {
    width: 100%;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

/* WordPress Block Styles */
.page-content,
.about-page-content,
.contact-page-content {
    padding: 100px 0;
    min-height: 50vh;
}

.wp-block-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.wp-block-button__link {
    background-color: #D4AF37 !important;
    color: #000000 !important;
    padding: 18px 48px !important;
    border-radius: 0 !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    display: inline-block;
    text-decoration: none;
}

.wp-block-image img {
    border: 1px solid rgba(212, 175, 55, 0.2);
    max-width: 100%;
    height: auto;
}

.page-content h2,
.about-page-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.page-content p,
.about-page-content p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* About Fallback */
.about-fallback {
    max-width: 800px;
}

.fallback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fallback-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fallback-item span {
    width: 24px;
    height: 24px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.fallback-item p {
    margin-bottom: 0 !important;
    font-size: 1rem !important;
}

/* Values Section (About Page) */
.values-section {
    background: var(--bg-secondary);
    padding: 100px 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.values-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.values-grid-mini {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.value-item-mini {
    display: flex;
    gap: 20px;
}

.value-icon {
    color: var(--gold-primary);
    font-size: 1.5rem;
    line-height: 1.2;
}

.value-text h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.value-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.values-split-image img {
    width: 100%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
}

@media (max-width: 991px) {
    .values-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Global Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

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

/* About Story Section */
.about-story {
    background: var(--bg-primary);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.story-image img {
    width: 100%;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Mission & Commitment */
.mission-commitment {
    background: var(--bg-secondary);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.mission-box ul {
    list-style: none;
    margin-top: 30px;
}

.mission-box ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.mission-box ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
}

.commitment-box p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 30px;
    margin-bottom: 20px;
}

.commitment-highlight {
    font-size: 1.3rem !important;
    color: var(--gold-primary) !important;
    font-style: italic;
    font-weight: 500;
}

/* Why Choose & Strengths */
.why-choose-us-about {
    background: var(--bg-primary);
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.icon-list {
    margin-top: 30px;
}

.icon-list-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-list-item .icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.icon-list-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.icon-list-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.stat-list {
    display: flex;
    justify-content: space-between;
    margin: 30px 0 50px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--gold-primary);
}

.stat-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.strength-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.strength-tags span {
    padding: 8px 16px;
    background: var(--bg-tertiary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--gold-primary);
}

/* Team Section */
.team-section {
    background: var(--bg-secondary);
}

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

.team-card {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--gold-primary);
}

.team-image-placeholder {
    height: 400px;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.team-info {
    padding: 30px;
}

.team-info h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.team-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 991px) {

    .about-story-grid,
    .mission-grid,
    .grid-2-col,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* --- About Page V2 Styles --- */

.about-hero-v2 {
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: left;
}

.about-hero-v2 h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -3px;
    margin-top: 20px;
}

.about-story-v2 {
    background: var(--bg-primary);
    padding: 100px 0;
}

.story-grid-v2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

.story-content-v2 h2 {
    font-size: 3.5rem;
    margin-bottom: 40px;
    line-height: 1.2;
}

.content-text-v2 p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

.story-image-v2 img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.about-core-v2 {
    background: var(--bg-secondary);
    padding: 120px 0;
}

.core-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.core-card-v2 {
    background: var(--bg-tertiary);
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.clean-list-v2 {
    list-style: none;
    margin-top: 30px;
}

.clean-list-v2 li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.clean-list-v2 li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 15px;
    height: 1px;
    background: var(--gold-primary);
}

.quote-box-v2 {
    margin-top: 40px;
    font-size: 1.6rem;
    color: var(--gold-primary);
    font-style: italic;
    font-weight: 500;
    line-height: 1.4;
    padding-left: 20px;
    border-left: 3px solid var(--gold-primary);
}

.about-strengths-v2 {
    padding: 120px 0;
}

.strengths-grid-v2 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 120px;
}

.points-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.point-item-v2 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.point-icon-v2 {
    color: var(--gold-primary);
    font-weight: 800;
}

.point-text-v2 {
    font-size: 1.05rem;
    font-weight: 500;
}

.strength-items-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}

.strength-tag-v2 {
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-primary);
    font-size: 0.9rem;
    border-radius: 4px;
}

.about-stats-mini-v2 {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

.stat-mini-v2 h3 {
    font-size: 3.5rem;
    color: var(--gold-primary);
    line-height: 1;
}

.stat-mini-v2 p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.about-team-v2 {
    background: var(--bg-secondary);
    padding: 120px 0;
}

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

.team-card-v2 {
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
}

.team-member-image {
    aspect-ratio: 4/5;
    background: #151515;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
}

.team-member-info {
    padding: 40px;
}

.team-member-info h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-member-info p {
    color: var(--gold-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 1024px) {

    .nav-links,
    .nav-cta {
        display: none !important;
    }

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

    .main-nav .container {
        padding: 0 20px;
    }
}

/* Project Types Grid */
.project-types {
    padding: 100px 0;
    background: #000;
}

.project-types .section-title i {
    font-family: serif;
    font-style: italic;
    font-weight: 400;
}

.project-types-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
    margin-top: 50px;
    padding: 0 40px;
}

.project-type-card {
    position: relative;
    aspect-ratio: 0.8;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.project-type-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.project-type-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    transition: background 0.4s ease;
}

.project-type-card h3 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0 10px;
    margin: 0;
    text-transform: capitalize;
}

.project-type-card:hover .project-type-bg {
    transform: scale(1.1);
}

.project-type-card:hover .project-type-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
}

@media (max-width: 1600px) {
    .project-types-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 1200px) {
    .project-types-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

    .project-types-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
        gap: 10px;
    }

    .project-type-card h3 {
        font-size: 0.8rem;
    }
}

/* ===========================================
   CONTACT PAGE STYLES
   =========================================== */
.contact-page {
    background: #000;
    color: #fff;
}

/* Hero Section */
.contact-hero {
    padding: 150px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

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

.contact-hero .section-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.contact-hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 20px 0;
    letter-spacing: -3px;
    line-height: 1;
}

.contact-hero h1 span {
    color: var(--gold-primary);
}

.contact-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 30px auto 0;
    line-height: 1.6;
}

/* Main Contact Section */
.contact-main {
    padding: 100px 0;
    background: #000;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(145deg, #0d0d0d, #080808);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
}

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

.contact-form .btn-primary {
    margin-top: 10px;
    padding: 18px 40px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

/* Form Messages */
.form-success {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary), #f0c74c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: #000;
    font-weight: bold;
}

.form-success h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.form-success p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.form-error {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    color: #ff6b6b;
    font-size: 0.95rem;
}

/* Contact Info Sidebar */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card,
.cta-card {
    background: linear-gradient(145deg, #0d0d0d, #080808);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
}

.info-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.info-card>p {
    color: var(--text-secondary);
    margin-bottom: 35px;
    font-size: 0.95rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.info-content a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

.info-content p {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border-color: rgba(212, 175, 55, 0.15);
}

.cta-card h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.cta-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-card li {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 20px 40px;
    }

    .contact-hero h1 {
        font-size: 2.8rem;
        letter-spacing: -1.5px;
    }

    .contact-hero p {
        font-size: 1.1rem;
        margin-top: 20px;
    }

    .contact-main {
        padding: 50px 0;
    }

    .contact-main .container {
        padding: 0 20px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 35px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .info-card,
    .cta-card {
        padding: 30px 20px;
    }

    .success-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }

    .form-success h3 {
        font-size: 1.7rem;
    }
}