/* ============================================
   SALTSCAPES NWA - Main Stylesheet
   Colors: Navy #1a2a6c | Cyan #00aeef | Gold #f5a623 | White #ffffff
   ============================================ */

:root {
    --navy: #1a2a6c;
    --navy-dark: #111d4e;
    --cyan: #00aeef;
    --cyan-light: #33c0f5;
    --gold: #f5a623;
    --white: #ffffff;
    --light-bg: #f4f8fc;
    --text-dark: #1a1a2e;
    --text-mid: #4a5568;
    --text-light: #718096;
    --border: #e2e8f0;
    --shadow: 0 4px 24px rgba(26, 42, 108, 0.10);
    --shadow-lg: 0 8px 40px rgba(26, 42, 108, 0.18);
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.03em;
    line-height: 1.1;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 12px;
    display: block;
}

.accent {
    color: var(--cyan);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-block;
    background: var(--cyan);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    border: 2px solid var(--cyan);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.6);
}

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

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--navy);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    border: 2px solid var(--navy);
}

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

.btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--navy);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    border: 2px solid var(--white);
}

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

.btn-full {
    width: 100%;
    text-align: center;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--navy);
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyan);
}

.nav-cta {
    color: var(--white);
    background: var(--cyan);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 50px;
    transition: var(--transition);
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--gold);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a4a8a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/DC_PHOTOGRAPHY-1.jpg') center/cover no-repeat;
    opacity: 0.2;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(26,42,108,0.8), transparent);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,42,108,0.85) 0%, rgba(0,174,239,0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    color: var(--white);
}

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-title {
    color: var(--white);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-sub {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 1s forwards;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.badge-icon {
    color: var(--gold);
    font-weight: 900;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 1.5s ease infinite;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    min-height: 45vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/DC_PHOTOGRAPHY-7.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,42,108,0.9), rgba(0,174,239,0.2));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 24px 80px;
    color: var(--white);
}

.page-hero-content h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    max-width: 500px;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro {
    padding: 100px 0;
    background: var(--white);
}

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

.intro-text h2 {
    color: var(--navy);
    margin-bottom: 20px;
}

.intro-text p {
    color: var(--text-mid);
    margin-bottom: 16px;
    font-size: 0.97rem;
}

.intro-text .btn-primary {
    margin-top: 12px;
}

.intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: var(--navy);
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-preview {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.section-header h2 {
    color: var(--navy);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--navy);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-mid);
    font-size: 0.9rem;
    line-height: 1.7;
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   GALLERY PREVIEW
   ============================================ */
.gallery-preview {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

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

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,42,108,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 2px solid var(--white);
    padding: 8px 20px;
    border-radius: 50px;
}

.gallery-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   FULL GALLERY PAGE
   ============================================ */
.gallery-full {
    padding: 80px 0 100px;
    background: var(--white);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item-full {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-full:hover img {
    transform: scale(1.07);
}

.gallery-item-full:hover .gallery-overlay {
    opacity: 1;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--cyan);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 8px;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--cyan);
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.why-text h2 {
    color: var(--navy);
    margin-bottom: 32px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-check {
    width: 28px;
    height: 28px;
    background: var(--cyan);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-list strong {
    display: block;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 4px;
}

.why-list p {
    color: var(--text-mid);
    font-size: 0.9rem;
    margin: 0;
}

.why-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.why-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--navy);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
    border-left: 4px solid var(--cyan);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #1a4a8a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/DC_PHOTOGRAPHY-8.jpg') center/cover no-repeat;
    opacity: 0.08;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   SERVICES DETAIL PAGE
   ============================================ */
.services-main {
    padding: 80px 0 100px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: start;
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.service-detail-card:last-child {
    border-bottom: none;
}

.service-detail-card.reverse {
    background: var(--light-bg);
    margin: 0 -24px;
    padding: 60px 24px;
    grid-template-columns: auto 1fr;
}

.service-detail-icon {
    font-size: 4rem;
    line-height: 1;
    padding-top: 8px;
}

.service-detail-content h2 {
    color: var(--navy);
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--text-mid);
    margin-bottom: 16px;
    font-size: 0.97rem;
}

.service-list {
    margin: 16px 0;
    padding-left: 0;
}

.service-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-mid);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: 700;
}

.disclaimer-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.disclaimer-box {
    background: var(--white);
    border-left: 4px solid var(--navy);
    border-radius: var(--radius);
    padding: 32px 40px;
    box-shadow: var(--shadow);
}

.disclaimer-box h3 {
    color: var(--navy);
    margin-bottom: 12px;
}

.disclaimer-box p {
    color: var(--text-mid);
    font-size: 0.97rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 80px 0 100px;
}

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

.contact-info h2 {
    color: var(--navy);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-mid);
    margin-bottom: 36px;
    font-size: 0.97rem;
}

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

.contact-icon {
    font-size: 1.4rem;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    color: var(--navy);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
    color: var(--text-mid);
    font-size: 0.97rem;
}

.contact-item a:hover {
    color: var(--cyan);
}

.contact-license {
    margin-top: 36px;
    padding: 16px 20px;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 3px solid var(--navy);
}

.contact-license p {
    font-size: 0.85rem;
    color: var(--text-mid);
    font-weight: 600;
}

/* FORM */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.contact-form-wrap h2 {
    color: var(--navy);
    margin-bottom: 32px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0,174,239,0.1);
}

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-mid);
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--cyan);
}

.form-note {
    text-align: center;
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thankyou-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--light-bg);
}

.thankyou-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thankyou-icon {
    font-size: 5rem;
    margin-bottom: 24px;
}

.thankyou-content h1 {
    color: var(--navy);
    margin-bottom: 20px;
}

.thankyou-content p {
    color: var(--text-mid);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.thankyou-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 80px 0 0;
}

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

.footer-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--cyan);
    padding-left: 6px;
}

.footer-contact p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--cyan);
}

.footer-contact .license {
    margin-top: 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

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

    .intro-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

    .footer-brand {
        grid-column: span 2;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 999;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1000;
        position: relative;
    }

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

    .gallery-grid-preview {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item.large {
        grid-column: span 2;
    }

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

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

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

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

    .footer-brand {
        grid-column: span 1;
    }

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

    .contact-form-wrap {
        padding: 32px 24px;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-detail-card.reverse {
        grid-template-columns: 1fr;
    }

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

    .why-image img {
        height: 300px;
    }

    .lightbox-prev { left: 8px; font-size: 2rem; padding: 8px 12px; }
    .lightbox-next { right: 8px; font-size: 2rem; padding: 8px 12px; }
}

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

    .gallery-grid-preview {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
    }
}
