/*
Theme Name: JKC Construction
Theme URI: https://jalalkhanconstruction.com
Designed By: Sehrai Graphics
Description: Custom theme for Jalal Khan Engineering & Construction (Pvt.) Ltd. Fully dynamic with custom post types and theme customizer.
Version: 1.0
License: GPL v2 or later
Text Domain: jkc
*/

/* ============================================
   GLOBAL VARIABLES & RESET
   ============================================ */
:root {
    --gold: #B8972E;
    --gold-light: #D4AF50;
    --gold-pale: #F5EFD8;
    --crimson: #8B1A1A;
    --crimson-dark: #6B1010;
    --black: #1A1209;
    --charcoal: #2D2416;
    --white: #FDFAF3;
    --gray-light: #F7F3E8;
    --gray-mid: #E8E0CC;
    --text-body: #3D3020;
    --text-muted: #7A6845;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--white);
    color: var(--text-body);
    overflow-x: hidden;
}

/* ============================================
   NAVBAR
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 250, 243, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--gold);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    box-shadow: 0 2px 20px rgba(184, 151, 46, 0.15);
    transition: all 0.3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.nav-logo-diamond {
    width: 48px;
    height: 48px;
    background: var(--gold);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(184, 151, 46, 0.4);
}

.nav-logo-diamond span {
    transform: rotate(-45deg);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--black);
    letter-spacing: 0.5px;
}

.nav-logo-diamond span em {
    color: var(--crimson);
    font-style: normal;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-text strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 1px;
    line-height: 1.1;
    text-transform: uppercase;
}

.nav-logo-text span {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 100%;
    height: 2px;
    background: var(--gold);
    transition: right 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}
.nav-links a:hover::after {
    right: 0;
}

.nav-cta {
    background: var(--crimson);
    color: white !important;
    padding: 9px 20px !important;
    border-radius: 2px;
    transition: background 0.3s !important;
}

.nav-cta:hover {
    background: var(--crimson-dark) !important;
    color: white !important;
}
.nav-cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(26, 18, 9, 0.88) 0%, rgba(139, 26, 26, 0.55) 50%, rgba(184, 151, 46, 0.4) 100%),
        url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 120px 2rem 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(184, 151, 46, 0.03) 2px,
            rgba(184, 151, 46, 0.03) 4px);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(184, 151, 46, 0.15);
    border: 1px solid rgba(184, 151, 46, 0.5);
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--gold-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    color: #FDFAF3;
    line-height: 1.05;
    animation: fadeUp 0.8s 0.15s ease both;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold-light);
    display: block;
}

.hero-sub {
    margin-top: 20px;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(253, 250, 243, 0.75);
    font-weight: 300;
    line-height: 1.7;
    max-width: 540px;
    animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.45s ease both;
}

/* Buttons */
.btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 15px 34px;
    border: none;
    border-radius: 2px;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(184, 151, 46, 0.4);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 151, 46, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #FDFAF3;
    padding: 14px 34px;
    border: 2px solid rgba(253, 250, 243, 0.5);
    border-radius: 2px;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 64px;
    border-top: 1px solid rgba(184, 151, 46, 0.3);
    padding-top: 32px;
    animation: fadeUp 0.8s 0.6s ease both;
}

.hero-stat {
    flex: 1;
    padding: 0 28px;
    border-right: 1px solid rgba(184, 151, 46, 0.2);
}

.hero-stat:first-child {
    padding-left: 0;
}
.hero-stat:last-child {
    border-right: none;
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.hero-stat-label {
    font-size: 11px;
    color: rgba(253, 250, 243, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-top: 5px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTION BASE
   ============================================ */
section {
    padding: 100px 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.15;
}

.section-title span {
    color: var(--crimson);
}

/* ============================================
   ABOUT SECTION - FIXED SPACING
   ============================================ */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 2px;
    filter: brightness(0.95) contrast(1.05);
}

.about-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--crimson);
    color: white;
    padding: 24px 30px;
    text-align: center;
}

.about-badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge-text {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 4px;
}

.about-frame {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 120px;
    height: 120px;
    border-top: 4px solid var(--gold);
    border-left: 4px solid var(--gold);
}

.about-content {
    padding: 20px 0;
}

/* ===== FIX: Added spacing after description ===== */
.about-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-body);
    margin: 24px 0 45px;  /* Increased bottom margin for spacing */
    font-weight: 300;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
    margin-top: 10px;  /* Added top margin */
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--gray-light);
    border-left: 3px solid var(--gold);
    border-radius: 0 2px 2px 0;
}

.about-feature-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-size: 16px;
}

.about-feature-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}

.about-feature-text span {
    font-size: 11px;
    color: var(--text-muted);
}

.about-content .btn-primary {
    margin-top: 10px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--gray-light);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    background: var(--gray-mid);
}

.service-card {
    background: var(--white);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 18, 9, 0.12);
}
.service-card:hover::before {
    transform: scaleX(1);
}

.service-num {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--gray-mid);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 24px;
    transition: color 0.4s;
}

.service-card:hover .service-num {
    color: var(--gold-pale);
}

/* ===== FIX: Service icon can be image or emoji ===== */
.service-icon {
    width: 54px;
    height: 54px;
    background: var(--gold-pale);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    border-radius: 2px;
    transition: all 0.4s;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card:hover .service-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.service-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects {
    background: var(--white);
}

.projects-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 50px;
    border-bottom: 2px solid var(--gray-mid);
    overflow-x: auto;
}

.tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: color 0.3s;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.tab-btn.active {
    color: var(--gold);
}
.tab-btn.active::after {
    transform: scaleX(1);
}
.tab-btn:hover {
    color: var(--black);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.project-card {
    background: var(--gray-light);
    border: 1px solid var(--gray-mid);
    padding: 28px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.project-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(184, 151, 46, 0.15);
}

/* ===== FIX: Project icon display ===== */
.project-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 14px;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-pale);
}

.project-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-icon-wrap .emoji-icon {
    font-size: 22px;
}

.project-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 4px 12px;
    border-radius: 30px;
}

.status-ongoing {
    background: rgba(184, 151, 46, 0.15);
    color: var(--gold);
    border: 1px solid rgba(184, 151, 46, 0.3);
}

.status-complete {
    background: rgba(34, 139, 34, 0.1);
    color: #228B22;
    border: 1px solid rgba(34, 139, 34, 0.3);
}

.project-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 11px;
    color: var(--text-muted);
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-meta .meta-icon {
    font-size: 14px;
}

/* ============================================
   STATS BAND (middle section)
   ============================================ */
.stats-band {
    background: var(--black);
    padding: 80px 2rem;
    position: relative;
    overflow: hidden;
}

.stats-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184, 151, 46, 0.1) 0%, transparent 60%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(184, 151, 46, 0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(253, 250, 243, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

/* ============================================
   EQUIPMENT SECTION
   ============================================ */
.equipment {
    background: var(--gray-light);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1px;
    background: var(--gray-mid);
    border: 1px solid var(--gray-mid);
}

.equip-item {
    background: var(--white);
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: background 0.3s;
}

.equip-item:hover {
    background: var(--gold-pale);
}

/* ===== FIX: Equipment icon display ===== */
.equip-icon-wrap {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-pale);
}

.equip-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equip-icon-wrap .emoji-icon {
    font-size: 18px;
}

.equip-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    min-width: 40px;
    text-align: right;
}

.equip-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}

.equip-text span {
    font-size: 11px;
    color: var(--text-muted);
}

/* ============================================
   CLIENTS SLIDER SECTION
   ============================================ */
.clients {
    background: var(--white);
    overflow: hidden;
}

.clients-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Slick slider custom styles */
.clients-slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.clients-slider .slick-slide {
    padding: 0 15px;
}

.clients-slider .slick-dots {
    bottom: -40px;
}

.clients-slider .slick-dots li button:before {
    color: var(--gold);
}

.clients-slider .slick-dots li.slick-active button:before {
    color: var(--crimson);
}

.clients-slider .slick-prev,
.clients-slider .slick-next {
    z-index: 10;
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
}

.clients-slider .slick-prev:hover,
.clients-slider .slick-next:hover {
    background: var(--crimson);
}

.clients-slider .slick-prev::before,
.clients-slider .slick-next::before {
    font-size: 18px;
    color: var(--black);
}

.clients-slider .slick-prev {
    left: -20px;
}

.clients-slider .slick-next {
    right: -20px;
}

.client-slide {
    background: var(--gray-light);
    border: 2px solid var(--gray-mid);
    padding: 28px 30px;
    border-radius: 2px;
    text-align: center;
    min-height: 180px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.client-slide:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(184, 151, 46, 0.15);
    transform: translateY(-3px);
}

.client-slide .client-logo-img {
    max-width: 140px;
    height: auto;
    margin-bottom: 12px;
}

.client-slide .client-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-body);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.client-slide .client-desc {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ============================================
   FEEDBACK SECTION
   ============================================ */
.feedback-section {
    background: var(--gray-light);
    padding: 80px 2rem 100px;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.feedback-card {
    background: var(--white);
    padding: 30px 28px;
    border-radius: 2px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 2px 16px rgba(26, 18, 9, 0.06);
    transition: all 0.3s;
}

.feedback-card:hover {
    box-shadow: 0 8px 30px rgba(26, 18, 9, 0.12);
    transform: translateY(-3px);
}

.feedback-card .feedback-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-body);
    font-style: italic;
    margin-bottom: 16px;
    font-weight: 300;
}

.feedback-card .feedback-text::before {
    content: '"';
    font-size: 2rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.feedback-card .feedback-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.feedback-card .feedback-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feedback-card .feedback-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}

.feedback-card .feedback-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feedback-card .feedback-author-name {
    font-weight: 700;
    color: var(--black);
    font-size: 14px;
}

.feedback-card .feedback-author-role {
    font-size: 11px;
    color: var(--text-muted);
}

/* ============================================
   REGISTRATIONS SECTION
   ============================================ */
.registrations {
    background: var(--charcoal);
    padding: 80px 2rem;
}

.reg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1px;
    background: rgba(184, 151, 46, 0.2);
    max-width: 1200px;
    margin: 40px auto 0;
}

.reg-item {
    background: var(--black);
    padding: 36px 28px;
    text-align: center;
    transition: background 0.3s;
}

.reg-item:hover {
    background: rgba(184, 151, 46, 0.08);
}

/* ===== FIX: Registration icon can be image or emoji ===== */
.reg-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 151, 46, 0.1);
}

.reg-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reg-icon-wrap .emoji-icon {
    font-size: 2rem;
}

.reg-item h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reg-item p {
    font-size: 11px;
    color: rgba(253, 250, 243, 0.5);
    letter-spacing: 1px;
}

.reg-header {
    text-align: center;
}
.reg-header .section-label {
    justify-content: center;
}
.reg-header .section-title {
    color: var(--white);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-info p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--gray-light);
    border-left: 3px solid var(--gold);
}

.contact-item-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--gold-pale);
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 2px;
}

.contact-item-text strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.contact-item-text span {
    font-size: 14px;
    color: var(--black);
    font-weight: 500;
}

.contact-form {
    background: var(--gray-light);
    padding: 48px 40px;
    border-top: 4px solid var(--gold);
}

.contact-form h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--gray-mid);
    background: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: var(--text-body);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    background: var(--crimson);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 2px;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--crimson-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(139, 26, 26, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--black);
    padding: 70px 2rem 0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(184, 151, 46, 0.2);
}

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-diamond {
    width: 48px;
    height: 48px;
    background: var(--gold);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-diamond span {
    transform: rotate(-45deg);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--black);
}

.footer-diamond span em {
    color: var(--crimson);
    font-style: normal;
}

.footer-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
}

.footer-name small {
    display: block;
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 2px;
    font-weight: 500;
}

.footer-desc {
    font-size: 13px;
    color: rgba(253, 250, 243, 0.5);
    line-height: 1.7;
    font-weight: 300;
    max-width: 260px;
}

.footer-col h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    text-decoration: none;
    font-size: 13px;
    color: rgba(253, 250, 243, 0.55);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: rgba(253, 250, 243, 0.55);
}

.footer-contact-item span:first-child {
    flex-shrink: 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(253, 250, 243, 0.3);
    letter-spacing: 0.5px;
}

.footer-bottom span {
    font-size: 12px;
    color: rgba(184, 151, 46, 0.6);
    letter-spacing: 0.5px;
}

/* ============================================
   MOBILE MENU (hidden by default)
   ============================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    border-bottom: 2px solid var(--gold);
    z-index: 999;
    flex-direction: column;
    gap: 0;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-mid);
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--gold);
}
.mobile-menu a:last-child {
    border-bottom: none;
}
/* ============================================
   FOOTER - CUSTOM LOGO STYLES
   ============================================ */

/* Footer logo wrapper */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

/* Custom logo link */
.footer-logo .custom-logo-link {
    display: inline-block;
    flex-shrink: 0;
}

/* Custom logo image */
.footer-logo .custom-logo-link img {
    max-height: 55px;
    width: auto;
    display: block;
}

/* Fallback logo (diamond + text) - keep existing styles */
.footer-diamond {
    width: 48px;
    height: 48px;
    background: var(--gold);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-diamond span {
    transform: rotate(-45deg);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--black);
}

.footer-diamond span em {
    color: var(--crimson);
    font-style: normal;
}

.footer-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
}

.footer-name small {
    display: block;
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 2px;
    font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .footer-logo .custom-logo-link img {
        max-height: 45px;
    }
}
/* ============================================
   NAVBAR - LOGO LEFT | MENU RIGHT
   ============================================ */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 250, 243, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--gold);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Logo left, Menu right */
    height: 80px;
    box-shadow: 0 2px 20px rgba(184, 151, 46, 0.15);
    transition: all 0.3s;
}

/* ==========================================
   LEFT SIDE: LOGO + NAME + TAGLINE
   ========================================== */

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

/* Custom logo (uploaded from Customizer) */
.nav-logo .custom-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo .custom-logo-link img {
    max-height: 50px;
    width: auto;
    display: block;
}

/* Fallback diamond logo */
.nav-logo-diamond {
    width: 48px;
    height: 48px;
    background: var(--gold);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(184, 151, 46, 0.4);
}

.nav-logo-diamond span {
    transform: rotate(-45deg);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--black);
    letter-spacing: 0.5px;
}

.nav-logo-diamond span em {
    color: var(--crimson);
    font-style: normal;
}

/* Company Name + Tagline */
.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-logo-text strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-logo-text span {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ==========================================
   RIGHT SIDE: NAVIGATION MENU
   ========================================== */

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 100%;
    height: 2px;
    background: var(--gold);
    transition: right 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}
.nav-links a:hover::after {
    right: 0;
}

/* Contact Us button (special style) */
.nav-links .nav-cta {
    background: var(--crimson);
    color: white !important;
    padding: 9px 20px !important;
    border-radius: 2px;
    transition: background 0.3s !important;
}

.nav-links .nav-cta:hover {
    background: var(--crimson-dark) !important;
    color: white !important;
}
.nav-links .nav-cta::after {
    display: none !important;
}

/* ==========================================
   HAMBURGER (Hidden on Desktop)
   ========================================== */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ==========================================
   MOBILE MENU (Hidden by default)
   ========================================== */

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    border-bottom: 2px solid var(--gold);
    z-index: 999;
    flex-direction: column;
    gap: 0;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-mid);
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--gold);
}
.mobile-menu a:last-child {
    border-bottom: none;
}

/* ==========================================
   RESPONSIVE - MOBILE
   ========================================== */

@media (max-width: 768px) {
    nav {
        padding: 0 1.2rem;
        height: 70px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-logo .custom-logo-link img {
        max-height: 40px;
    }
    
    .nav-logo-text strong {
        font-size: 16px;
    }
    
    .nav-logo-text span {
        font-size: 9px;
    }
    
    .mobile-menu {
        top: 70px;
    }
}

@media (max-width: 480px) {
    .nav-logo-text strong {
        font-size: 14px;
    }
    
    .nav-logo-text span {
        font-size: 8px;
        letter-spacing: 1px;
    }
    
    .nav-logo-diamond {
        width: 38px;
        height: 38px;
    }
    
    .nav-logo-diamond span {
        font-size: 11px;
    }
}
/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ============================================
   NAVBAR - CUSTOM LOGO STYLES
   ============================================ */

/* Navbar logo wrapper */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

/* Custom logo link */
.nav-logo .custom-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Custom logo image */
.nav-logo .custom-logo-link img {
    max-height: 50px;
    width: auto;
    display: block;
}

/* Fallback logo styles (diamond + text) */
.nav-logo-diamond {
    width: 48px;
    height: 48px;
    background: var(--gold);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(184, 151, 46, 0.4);
}

.nav-logo-diamond span {
    transform: rotate(-45deg);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--black);
    letter-spacing: 0.5px;
}

.nav-logo-diamond span em {
    color: var(--crimson);
    font-style: normal;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-text strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 1px;
    line-height: 1.1;
    text-transform: uppercase;
}

.nav-logo-text span {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .nav-logo .custom-logo-link img {
        max-height: 40px;
    }
}
/* ============================================
   FORM TOAST NOTIFICATION
   ============================================ */
.form-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #228B22;
    color: #fff;
    padding: 16px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    z-index: 9999;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
    pointer-events: none;
    text-align: center;
}

.form-toast.show {
    transform: translateX(-50%) translateY(0);
}

.form-toast.error {
    background: #c0392b;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-badge {
        bottom: 12px;
        right: 12px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 1.2rem;
    }
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }

    section {
        padding: 70px 1.2rem;
    }
    .hero {
        padding: 100px 1.2rem 60px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    .hero-stat {
        border-right: none;
        border-bottom: 1px solid rgba(184, 151, 46, 0.2);
        padding: 16px 0;
    }
    .hero-stat:last-child {
        border-bottom: none;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 30px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .clients-slider .slick-prev {
        left: -5px;
    }
    .clients-slider .slick-next {
        right: -5px;
    }
    .clients-slider .slick-prev::before,
    .clients-slider .slick-next::before {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.4rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .btn-primary,
    .btn-secondary {
        text-align: center;
        justify-content: center;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .reg-grid {
        grid-template-columns: 1fr;
    }
    .feedback-grid {
        grid-template-columns: 1fr;
    }
}