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

:root {
    --navy: #1a2332;
    --gold: #c9a84c;
    --gold-light: #d4b86a;
    --white: #ffffff;
    --text: #333333;
    --light-bg: #f8f8f8;
    --gray: #666666;
    --border: #e5e5e5;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
}

html {
    scroll-behavior: smooth;
}

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

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

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

/* ===========================
   UTILITY CLASSES
=========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===========================
   SCROLL ANIMATIONS
=========================== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }
.fade-up.delay-6 { transition-delay: 0.6s; }

/* ===========================
   HEADER / NAVIGATION
=========================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    overflow: visible;
}

#header.scrolled {
    background: var(--navy);
    padding: 14px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Header uses full viewport width — logo touches left edge */
#header .container {
    max-width: 100%;
    padding: 0 40px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    overflow: visible;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
    /* scale up visually ~1.9x — layout footprint stays 48px so navbar height is unchanged */
    transform: scale(1.9);
    transform-origin: left center;
    transition: transform 0.4s ease, filter 0.3s ease;
    /* invert black logo to white — avoids the border present in the white PNG variant */
    filter: brightness(0) invert(1);
}

#header.scrolled .logo-img {
    transform: scale(1.7);
    transform-origin: left center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav.open {
    display: flex;
    opacity: 1;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--white);
    transition: color 0.3s ease;
}

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

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}

/* ===========================
   HERO SECTION
=========================== */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('photos/DJI_0021.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-bg.loaded {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 35, 50, 0.82) 0%,
        rgba(26, 35, 50, 0.3) 50%,
        rgba(26, 35, 50, 0.1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    opacity: 0;
    animation: heroFadeIn 1s ease 0.3s forwards;
}

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

.hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    animation: heroFadeIn 1s ease 0.5s forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.8vw, 50px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title em {
    font-style: normal;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    letter-spacing: 2px;
}

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

.hero-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 28px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: heroFadeIn 1s ease 1.2s forwards;
    opacity: 0;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}

/* ===========================
   STATS SECTION
=========================== */
#stats {
    background: var(--navy);
    padding: 80px 0;
}

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

.stat-item {
    text-align: center;
    padding: 32px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-suffix {
    font-size: 0.6em;
    vertical-align: super;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

/* ===========================
   ABOUT SECTION
=========================== */
#despre {
    padding: 120px 0;
    overflow: hidden;
}

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

.about-text .section-tag {
    display: block;
    text-align: left;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 36px 0;
}

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

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.about-feature-icon svg {
    width: 20px;
    height: 20px;
}

.about-feature-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.5px;
}

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

.about-image-main {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 220px;
    height: 160px;
    object-fit: cover;
    border: 6px solid var(--white);
    box-shadow: var(--shadow);
}

.about-badge {
    position: absolute;
    top: 40px;
    right: -20px;
    background: var(--gold);
    color: var(--navy);
    padding: 20px 28px;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-badge-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.about-badge-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ===========================
   SERVICES SECTION
=========================== */
#servicii {
    padding: 120px 0;
    background: var(--light-bg);
}

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

.service-card {
    cursor: pointer;
    background: var(--white);
    padding: 44px 36px;
    border-bottom: 3px solid transparent;
    transition: all 0.35s ease;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--gold);
}

.service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background: rgba(26, 35, 50, 0.05);
    border-left: 3px solid var(--gold);
    transition: background 0.3s ease, color 0.3s ease;
}

.service-icon svg {
    width: 26px;
    height: 26px;
}

.service-card:hover .service-icon {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
}

.service-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    transition: gap 0.3s ease;
}

.service-card:hover .service-link {
    gap: 14px;
}

/* ===========================
   PROJECTS SECTION
=========================== */
#proiecte {
    padding: 120px 0;
}

.projects-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

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

.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

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

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26,35,50,0.9) 0%,
        rgba(26,35,50,0.3) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}

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

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: linear-gradient(to top, rgba(26,35,50,0.85) 0%, transparent 100%);
}

.project-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.project-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

/* ===========================
   TESTIMONIALS SECTION
=========================== */
#testimoniale {
    padding: 120px 0;
    background: var(--light-bg);
}

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

.testimonial-card {
    background: var(--white);
    padding: 44px 36px;
    position: relative;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 32px;
    font-family: var(--font-heading);
    font-size: 80px;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.star {
    color: var(--gold);
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.85;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 4px;
}

.testimonial-project {
    font-size: 12px;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===========================
   CONTACT SECTION
=========================== */
#contact {
    padding: 120px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-tag {
    display: block;
    text-align: left;
}

.contact-info .section-title {
    text-align: left;
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
}

.contact-item-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 15px;
    color: var(--navy);
    font-weight: 500;
}

/* Form */
.contact-form {
    background: var(--light-bg);
    padding: 52px 48px;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 32px;
}

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

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 0;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color 0.3s ease;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e53e3e;
}

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

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a2332' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.error-msg {
    display: none;
    font-size: 11px;
    color: #e53e3e;
    margin-top: 4px;
}

.error-msg.show {
    display: block;
}

.form-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--navy);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.form-submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
    color: var(--navy);
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 12px;
}

/* ===========================
   FOOTER
=========================== */
#footer {
    background: var(--navy);
    padding: 80px 0 0;
    color: rgba(255,255,255,0.7);
}

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

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-flex;
}

.footer-logo-img {
    height: 56px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.6);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.1);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--white);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,168,76,0.4);
    display: inline-block;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    color: var(--gold);
}

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

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-contact-list span:first-child {
    color: var(--gold);
    margin-top: 1px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
    transition: color 0.3s ease;
}

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

.footer-credit {
    font-size: 12px;
    color: rgba(255,255,255,0.22);
    letter-spacing: 0.03em;
}

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

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-wrap {
        max-width: 560px;
        margin: 0 auto;
    }

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

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

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

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

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

    .hamburger {
        display: flex;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-image-accent {
        display: none;
    }

    .about-badge {
        right: 16px;
    }

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

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

    .contact-form {
        padding: 36px 28px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

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

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

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

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-card {
        padding: 32px 24px;
    }
}

/* ===========================
   MODAL SERVICII
=========================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 35, 50, 0.72);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    max-width: 580px;
    width: 100%;
    position: relative;
    transform: translateY(24px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.open .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    color: #9ca3af;
    transition: color 0.2s;
}

.modal-close:hover { color: var(--navy); }

.modal-icon-wrap {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 35, 50, 0.06);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    margin-bottom: 20px;
    color: var(--navy);
}

.modal-icon-wrap svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.modal-divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 20px;
    border-radius: 2px;
}

.modal-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 16px;
}

.modal-details {
    font-size: 14px;
    line-height: 1.8;
    color: #6b7280;
    white-space: pre-line;
    margin-bottom: 28px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.modal-details:empty { display: none; }

.modal-cta {
    display: inline-flex;
    text-decoration: none;
}

@media (max-width: 600px) {
    .modal-box {
        padding: 32px 24px;
    }
    .modal-title { font-size: 22px; }
}

/* ===========================
   NAV DROPDOWN
=========================== */
.nav-has-dropdown {
    position: relative;
}

.nav-has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-has-dropdown > a svg {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.nav-has-dropdown:hover > a svg {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 40px rgba(26,35,50,0.14);
    min-width: 250px;
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 200;
    border-top: 3px solid var(--gold);
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
    display: block;
    padding: 9px 20px;
    font-size: 13.5px;
    font-weight: 400;
    color: var(--navy);
    transition: color 0.18s ease, background 0.18s ease;
}

.nav-dropdown li a:hover {
    background: var(--light-bg);
    color: var(--gold);
}

/* Mobile sub-links */
.mobile-link-group {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    padding: 8px 32px 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 11px;
}

.mobile-link-sub {
    padding-left: 48px !important;
    font-size: 14px !important;
    opacity: 0.85;
}

/* ===========================
   BREADCRUMB
=========================== */
.breadcrumb-nav {
    background: var(--light-bg);
    border-bottom: 1px solid var(--border);
    padding: 13px 0;
    margin-top: 72px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--gray);
}

.breadcrumb li a {
    color: var(--navy);
    transition: color 0.2s;
}

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

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 8px;
    color: var(--border);
    font-size: 14px;
}

.breadcrumb li:last-child {
    color: var(--gray);
    font-weight: 500;
}

/* ===========================
   SERVICE PAGE HERO
=========================== */
.service-hero {
    background: var(--navy);
    padding: 64px 0 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1200&q=60') center/cover no-repeat;
    opacity: 0.08;
}

.service-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.service-hero-icon {
    width: 64px;
    height: 64px;
    background: rgba(201,168,76,0.15);
    border-left: 4px solid var(--gold);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold);
}

.service-hero-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-hero h1 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--white);
}

.service-hero-lead {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.78);
    margin-bottom: 32px;
    max-width: 620px;
}

/* ===========================
   SERVICE PAGE CONTENT
=========================== */
.service-page-content {
    padding: 72px 0 96px;
}

.service-page-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 64px;
    align-items: start;
}

.service-page-main h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin: 48px 0 16px;
}

.service-page-main h2:first-child {
    margin-top: 0;
}

.service-page-main h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin: 28px 0 10px;
}

.service-page-main p {
    font-size: 15.5px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 16px;
}

.service-process {
    list-style: none;
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0 0;
}

.service-process li {
    counter-increment: step;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.service-process li::before {
    content: counter(step);
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-top: 2px;
}

.service-process li div strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 4px;
}

.service-process li div span {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
}

.service-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 16px 0;
}

.service-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #444;
    line-height: 1.65;
}

.service-benefits li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
    margin-top: 2px;
}

.service-cta-block {
    margin-top: 56px;
    background: var(--navy);
    border-radius: 12px;
    padding: 48px;
    text-align: center;
    color: white;
}

.service-cta-block h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: white;
    margin: 0 0 10px;
}

.service-cta-block p {
    color: rgba(255,255,255,0.72);
    margin-bottom: 28px;
}

/* ===========================
   SERVICE PAGE SIDEBAR
=========================== */
.service-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px;
    border-top: 3px solid var(--gold);
}

.sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 18px;
}

.sidebar-services {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-services li a {
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.sidebar-services li a::before {
    content: '›';
    color: var(--gold);
    font-size: 16px;
}

.sidebar-services li a:hover { color: var(--gold); }

.sidebar-services li.active-service a {
    color: var(--gold);
    font-weight: 500;
}

.sidebar-contact-card {
    background: var(--navy);
    border-radius: 10px;
    padding: 28px;
    color: white;
}

.sidebar-contact-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    color: white;
    margin-bottom: 16px;
}

.sidebar-contact-card p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 16px;
}

.sidebar-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 20px;
    text-decoration: none;
}

/* Responsive service page */
@media (max-width: 1024px) {
    .service-page-grid {
        grid-template-columns: 1fr 260px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .service-page-grid {
        grid-template-columns: 1fr;
    }
    .service-sidebar {
        position: static;
    }
    .service-hero h1 {
        font-size: 28px;
    }
    .service-cta-block {
        padding: 36px 24px;
    }
    .service-cta-block h2 {
        font-size: 22px;
    }
    .breadcrumb-nav {
        margin-top: 68px;
    }
}

/* ===========================
   FAQ
=========================== */
#faq {
    padding: 100px 0;
    background: var(--light-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
    transition: color 0.25s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question[aria-expanded="true"] {
    color: var(--gold);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-icon svg {
    width: 18px;
    height: 18px;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding-bottom: 0;
}

.faq-answer.open {
    max-height: 400px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
}

.faq-answer p strong {
    color: var(--navy);
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 15px;
        padding: 20px 0;
    }
}
