/*
Theme Name: New City Construction
Theme URI: https://newcityconstruction.com
Author: New City Construction
Author URI: https://newcityconstruction.com
Description: Custom theme for New City Construction - A modern construction company website optimized for Elementor page builder.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: newcity
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: construction, business, elementor, one-page, custom-colors, custom-menu
*/

/* ============================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================ */
:root {
    /* Brand Colors */
    --nc-black: #000000;
    --nc-yellow: #FFD200;
    --nc-yellow-dark: #E6BD00;
    --nc-yellow-light: #FFE04D;
    --nc-white: #FFFFFF;
    --nc-gray-light: #B0B0B0;
    --nc-gray: #888888;
    --nc-gray-dark: #333333;
    --nc-charcoal: #1A1A1A;
    --nc-surface: #111111;
    --nc-surface-light: #1E1E1E;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent: 'Outfit', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-yellow: 0 4px 20px rgba(255, 210, 0, 0.3);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--nc-black);
    color: var(--nc-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: var(--nc-yellow);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--nc-yellow-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--nc-white);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-2xl) 0;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--nc-charcoal);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 210, 0, 0.15);
    font-size: 0.875rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar__links {
    display: flex;
    gap: var(--space-md);
    list-style: none;
}

.top-bar__links a {
    color: var(--nc-gray-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition-fast);
}

.top-bar__links a:hover {
    color: var(--nc-yellow);
}

.top-bar__phone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar__phone a {
    color: var(--nc-yellow);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-accent);
    letter-spacing: 0.5px;
}

.top-bar__phone-icon {
    width: 18px;
    height: 18px;
    fill: var(--nc-yellow);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 2px solid var(--nc-yellow);
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.navbar__logo img {
    height: 50px;
    width: auto;
}

.navbar__logo-text {
    display: flex;
    flex-direction: column;
}

.navbar__logo-text .brand-name {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--nc-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
}

.navbar__logo-text .brand-tagline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--nc-gray-light);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Navigation Menu */
.navbar__menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.navbar__menu > li {
    position: relative;
}

.navbar__menu > li > a {
    display: block;
    padding: 10px 16px;
    color: var(--nc-white);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color var(--transition-fast);
    position: relative;
}

.navbar__menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--nc-yellow);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.navbar__menu > li > a:hover,
.navbar__menu > li.active > a {
    color: var(--nc-yellow);
}

.navbar__menu > li > a:hover::after,
.navbar__menu > li.active > a::after {
    width: 80%;
}

/* Dropdown */
.navbar__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--nc-charcoal);
    border: 1px solid rgba(255, 210, 0, 0.2);
    border-top: 2px solid var(--nc-yellow);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    list-style: none;
    box-shadow: var(--shadow-lg);
}

.navbar__menu > li:hover .navbar__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar__dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--nc-gray-light);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.navbar__dropdown li a:hover {
    color: var(--nc-yellow);
    background: rgba(255, 210, 0, 0.05);
    padding-left: 28px;
}

/* CTA Button in Nav */
.navbar__cta {
    margin-left: 16px;
}

.navbar__cta a {
    display: inline-block;
    background: var(--nc-yellow);
    color: var(--nc-black) !important;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-yellow);
}

.navbar__cta a:hover {
    background: var(--nc-yellow-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 210, 0, 0.4);
}

.navbar__cta a::after {
    display: none !important;
}

/* Hamburger */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.navbar__hamburger span {
    width: 28px;
    height: 3px;
    background: var(--nc-white);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.navbar__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(26, 26, 26, 0.8) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: var(--space-lg);
    animation: fadeInUp 1s ease forwards;
}

.hero__badge {
    display: inline-block;
    background: rgba(255, 210, 0, 0.15);
    border: 1px solid rgba(255, 210, 0, 0.4);
    color: var(--nc-yellow);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero__title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin-bottom: var(--space-md);
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero__title span {
    color: var(--nc-yellow);
    position: relative;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--nc-gray-light);
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.hero__buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s forwards;
    opacity: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn--primary {
    background: var(--nc-yellow);
    color: var(--nc-black);
    border-color: var(--nc-yellow);
    box-shadow: var(--shadow-yellow);
}

.btn--primary:hover {
    background: var(--nc-yellow-light);
    color: var(--nc-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 210, 0, 0.5);
}

.btn--outline {
    background: transparent;
    color: var(--nc-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    border-color: var(--nc-yellow);
    color: var(--nc-yellow);
    transform: translateY(-3px);
}

.btn--dark {
    background: var(--nc-charcoal);
    color: var(--nc-white);
    border-color: var(--nc-charcoal);
}

.btn--dark:hover {
    background: var(--nc-surface-light);
    transform: translateY(-3px);
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header__label {
    display: inline-block;
    color: var(--nc-yellow);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--space-xs);
}

.section-header__title {
    margin-bottom: var(--space-sm);
}

.section-header__title span {
    color: var(--nc-yellow);
}

.section-header__divider {
    width: 60px;
    height: 4px;
    background: var(--nc-yellow);
    margin: var(--space-sm) auto;
    border-radius: 2px;
}

.section-header__description {
    color: var(--nc-gray-light);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--nc-surface);
    padding: var(--space-3xl) 0;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 380px;
    cursor: pointer;
    transition: all var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.service-card__image {
    position: absolute;
    inset: 0;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    transition: background var(--transition-normal);
}

.service-card:hover .service-card__overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.service-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    z-index: 2;
    transform: translateY(60px);
    transition: transform var(--transition-normal);
}

.service-card:hover .service-card__content {
    transform: translateY(0);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    background: var(--nc-yellow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    transition: transform var(--transition-bounce);
}

.service-card:hover .service-card__icon {
    transform: scale(1.1);
}

.service-card__icon svg {
    width: 24px;
    height: 24px;
    fill: var(--nc-black);
}

.service-card__title {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.service-card__desc {
    color: var(--nc-gray-light);
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0;
    transition: opacity var(--transition-normal);
    margin-bottom: var(--space-sm);
}

.service-card:hover .service-card__desc {
    opacity: 1;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--nc-yellow);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover .service-card__link {
    opacity: 1;
}

.service-card__link svg {
    width: 16px;
    height: 16px;
    fill: var(--nc-yellow);
    transition: transform var(--transition-fast);
}

.service-card__link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--space-3xl) 0;
    background: var(--nc-black);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 210, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about__image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about__image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 4px solid var(--nc-yellow);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about__experience {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--nc-yellow);
    color: var(--nc-black);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about__experience-number {
    font-family: var(--font-accent);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.about__experience-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about__content {
    padding-left: var(--space-md);
}

.about__label {
    display: inline-block;
    color: var(--nc-yellow);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--space-sm);
}

.about__title {
    margin-bottom: var(--space-md);
}

.about__title span {
    color: var(--nc-yellow);
}

.about__text {
    color: var(--nc-gray-light);
    margin-bottom: var(--space-md);
    font-size: 1.05rem;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--nc-surface);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--nc-yellow);
    transition: all var(--transition-normal);
}

.about__feature:hover {
    background: var(--nc-surface-light);
    transform: translateX(4px);
}

.about__feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(255, 210, 0, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__feature-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--nc-yellow);
}

.about__feature-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--nc-surface);
}

.gallery__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.gallery__tab {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--nc-gray-light);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery__tab:hover {
    border-color: var(--nc-yellow);
    color: var(--nc-yellow);
}

.gallery__tab.active {
    background: var(--nc-yellow);
    color: var(--nc-black);
    border-color: var(--nc-yellow);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.gallery__item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

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

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-label {
    color: var(--nc-white);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--nc-black);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: 40px;
    left: 10%;
    font-size: 20rem;
    font-family: var(--font-heading);
    color: rgba(255, 210, 0, 0.03);
    line-height: 1;
    pointer-events: none;
}

.testimonials__carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials__track {
    display: flex;
    transition: transform 0.6s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 0 var(--space-md);
}

.testimonial-card__inner {
    background: var(--nc-surface);
    border: 1px solid rgba(255, 210, 0, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    position: relative;
}

.testimonial-card__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--nc-yellow);
    border-radius: 0 0 3px 3px;
}

.testimonial-card__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--space-md);
}

.testimonial-card__stars svg {
    width: 20px;
    height: 20px;
    fill: var(--nc-yellow);
}

.testimonial-card__quote {
    font-size: 1.1rem;
    color: var(--nc-gray-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-card__author {
    font-weight: 700;
    color: var(--nc-yellow);
    font-size: 1rem;
}

.testimonial-card__role {
    font-size: 0.85rem;
    color: var(--nc-gray);
}

/* Carousel Controls */
.testimonials__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.testimonials__arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--nc-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.testimonials__arrow:hover {
    border-color: var(--nc-yellow);
    color: var(--nc-yellow);
    background: rgba(255, 210, 0, 0.1);
}

.testimonials__arrow svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.testimonials__dots {
    display: flex;
    gap: 8px;
}

.testimonials__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
}

.testimonials__dot.active {
    background: var(--nc-yellow);
    transform: scale(1.2);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--nc-yellow) 0%, var(--nc-yellow-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
}

.cta-banner::before {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.cta-banner::after {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -50px;
}

.cta-banner__content {
    position: relative;
    z-index: 2;
}

.cta-banner__title {
    color: var(--nc-black);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
}

.cta-banner__text {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--nc-charcoal);
    padding: var(--space-2xl) 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand-desc {
    color: var(--nc-gray-light);
    margin-top: var(--space-sm);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: var(--space-md);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.footer__social-link:hover {
    border-color: var(--nc-yellow);
    background: rgba(255, 210, 0, 0.1);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--nc-gray-light);
    transition: fill var(--transition-fast);
}

.footer__social-link:hover svg {
    fill: var(--nc-yellow);
}

.footer__heading {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
    color: var(--nc-yellow);
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: var(--nc-gray-light);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer__links a:hover {
    color: var(--nc-yellow);
    transform: translateX(4px);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: var(--space-sm);
}

.footer__contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(255, 210, 0, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.footer__contact-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--nc-yellow);
}

.footer__contact-text {
    font-size: 0.9rem;
    color: var(--nc-gray-light);
}

.footer__contact-text a {
    color: var(--nc-gray-light);
}

.footer__contact-text a:hover {
    color: var(--nc-yellow);
}

.footer__bottom {
    padding: var(--space-md) 0;
    text-align: center;
    color: var(--nc-gray);
    font-size: 0.85rem;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about__content {
        padding-left: 0;
    }

    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .top-bar__links {
        display: none;
    }

    .navbar__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--nc-charcoal);
        flex-direction: column;
        padding: 80px var(--space-md) var(--space-md);
        transition: right var(--transition-normal);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        gap: 0;
        align-items: stretch;
    }

    .navbar__menu.open {
        right: 0;
    }

    .navbar__menu > li > a {
        padding: 14px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar__dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        border-top: none;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.3);
        box-shadow: none;
        display: none;
    }

    .navbar__menu > li.dropdown-open .navbar__dropdown {
        display: block;
    }

    .navbar__hamburger {
        display: flex;
    }

    .navbar__cta {
        margin-left: 0;
        margin-top: var(--space-sm);
        text-align: center;
    }

    .navbar__cta a {
        display: block;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: 300px;
    }

    .service-card__content {
        transform: translateY(0);
    }

    .service-card__desc {
        opacity: 1;
    }

    .service-card__link {
        opacity: 1;
    }

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

    .gallery__item {
        height: 200px;
    }

    .about__features {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 70vh;
    }

    .hero__title {
        font-size: 2.2rem;
    }
}

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

    .gallery__item {
        height: 240px;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   WORDPRESS / ELEMENTOR COMPATIBILITY
   ============================================ */
.elementor-page .site-header,
.elementor-page .site-footer {
    /* Allow Elementor to control these */
}

.wp-block-group {
    margin-bottom: var(--space-md);
}

/* Ensure WordPress admin bar doesn't break sticky nav */
body.admin-bar .navbar {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .navbar {
        top: 46px;
    }
}

/* Mobile menu backdrop */
.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

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