/*
Theme Name: Drone Pro Media
Theme URI: https://hiredronepro.com
Author: Drone Pro Media
Author URI: https://hiredronepro.com
Description: Premium aerial photography & video production theme for Drone Pro Media. High-end cinematic brand focused on aerial and ground-level photo/video services across Colorado.
Version: 1.0.0
License: Proprietary
Text Domain: dronepromedia
*/

/* ===================================================================
   CSS CUSTOM PROPERTIES
   =================================================================== */
:root {
    /* Brand Palette */
    --dpm-blue:        #0ea5e9;
    --dpm-blue-dark:   #0284c7;
    --dpm-blue-light:  #38bdf8;
    --dpm-blue-bg:     rgba(14,165,233,0.08);
    --dpm-gold:        #f59e0b;
    --dpm-gold-light:  #fbbf24;
    --dpm-gold-bg:     rgba(245,158,11,0.08);
    --dpm-teal:        #14b8a6;
    --dpm-teal-bg:     rgba(20,184,166,0.08);
    --dpm-navy:        #0b1120;
    --dpm-navy-light:  #1e293b;

    /* Neutrals */
    --dpm-white:       #ffffff;
    --dpm-gray-50:     #f8fafc;
    --dpm-gray-100:    #f1f5f9;
    --dpm-gray-200:    #e2e8f0;
    --dpm-gray-300:    #cbd5e1;
    --dpm-gray-400:    #94a3b8;
    --dpm-gray-500:    #64748b;
    --dpm-gray-600:    #475569;
    --dpm-gray-700:    #334155;
    --dpm-gray-800:    #1e293b;
    --dpm-gray-900:    #0f172a;

    /* Typography */
    --dpm-font-body:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --dpm-font-display:'Playfair Display', Georgia, 'Times New Roman', serif;

    /* Layout */
    --dpm-radius:      12px;
    --dpm-radius-sm:   8px;
    --dpm-max-width:   1200px;
    --dpm-section-pad: 80px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--dpm-font-body);
    color: var(--dpm-gray-800);
    background: var(--dpm-white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--dpm-blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--dpm-blue-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--dpm-font-display);
    line-height: 1.2;
    color: var(--dpm-gray-900);
}

.container { max-width: var(--dpm-max-width); margin: 0 auto; padding: 0 24px; }

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--dpm-radius-sm);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all .25s ease;
    border: 2px solid transparent;
    text-decoration: none;
    font-family: var(--dpm-font-body);
}

.btn--primary {
    background: var(--dpm-blue);
    color: var(--dpm-white);
    border-color: var(--dpm-blue);
}
.btn--primary:hover {
    background: var(--dpm-blue-dark);
    border-color: var(--dpm-blue-dark);
    color: var(--dpm-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(14,165,233,0.35);
}

.btn--secondary {
    background: transparent;
    color: var(--dpm-white);
    border-color: rgba(255,255,255,0.3);
}
.btn--secondary:hover {
    border-color: var(--dpm-white);
    color: var(--dpm-white);
    background: rgba(255,255,255,0.08);
}

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

.btn--gold {
    background: var(--dpm-gold);
    color: var(--dpm-navy);
    border-color: var(--dpm-gold);
    font-weight: 700;
}
.btn--gold:hover {
    background: var(--dpm-gold-light);
    border-color: var(--dpm-gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(245,158,11,0.35);
}

/* ===================================================================
   HEADER / NAV
   =================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11,17,32,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0 32px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header__logo {
    font-family: var(--dpm-font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--dpm-white);
    text-decoration: none;
}
.site-header__logo span { color: var(--dpm-blue); }

.site-header__nav { display: flex; align-items: center; gap: 32px; }
.site-header__nav a {
    color: var(--dpm-gray-300);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color .2s;
}
.site-header__nav a:hover { color: var(--dpm-white); }
.site-header__nav .btn { padding: 10px 20px; font-size: 13px; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; color: var(--dpm-white); font-size: 24px; cursor: pointer; }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--dpm-navy);
}

.hero__video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__video-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,17,32,0.6) 0%, rgba(11,17,32,0.85) 100%);
    z-index: 1;
}
.hero__video-bg video,
.hero__video-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.hero__badge {
    display: inline-block;
    background: rgba(14,165,233,0.15);
    color: var(--dpm-blue-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(14,165,233,0.25);
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(36px, 5.5vw, 64px);
    color: var(--dpm-white);
    margin-bottom: 20px;
    font-weight: 700;
}
.hero__title span {
    background: linear-gradient(135deg, var(--dpm-blue-light), var(--dpm-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--dpm-gray-400);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

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

/* ===================================================================
   STATS BAR
   =================================================================== */
.stats-bar {
    background: var(--dpm-navy);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 32px 24px;
}
.stats-bar__grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    max-width: var(--dpm-max-width);
    margin: 0 auto;
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat__number {
    font-family: var(--dpm-font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--dpm-blue-light);
}
.stat__label {
    font-size: 13px;
    color: var(--dpm-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

/* ===================================================================
   GENERIC SECTION
   =================================================================== */
.section {
    padding: var(--dpm-section-pad) 24px;
}
.section--dark {
    background: var(--dpm-navy);
    color: var(--dpm-white);
}
.section--dark .section__title { color: var(--dpm-white); }
.section--dark .section__subtitle { color: var(--dpm-gray-400); }

.section--gray {
    background: var(--dpm-gray-50);
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}
.section__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dpm-blue);
    margin-bottom: 12px;
}
.section__title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
}
.section__subtitle {
    font-size: 17px;
    color: var(--dpm-gray-500);
    line-height: 1.7;
}

/* ===================================================================
   SERVICE CARDS (4-grid)
   =================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: var(--dpm-max-width);
    margin: 0 auto;
}

.service-card {
    background: var(--dpm-white);
    border: 1px solid var(--dpm-gray-200);
    border-radius: var(--dpm-radius);
    padding: 40px 28px;
    text-align: center;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: var(--dpm-blue);
}
.service-card__icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}
.service-card__title {
    font-family: var(--dpm-font-display);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dpm-gray-900);
}
.service-card__desc {
    font-size: 14px;
    color: var(--dpm-gray-500);
    line-height: 1.7;
}
.service-card__link {
    display: inline-block;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dpm-blue);
}
.service-card__link:hover { color: var(--dpm-blue-dark); }

/* ===================================================================
   INDUSTRIES GRID (6-grid)
   =================================================================== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--dpm-max-width);
    margin: 0 auto;
}
.industry-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--dpm-radius);
    padding: 32px 24px;
    text-align: center;
    transition: all .3s ease;
}
.industry-card:hover {
    background: rgba(14,165,233,0.06);
    border-color: rgba(14,165,233,0.2);
    transform: translateY(-2px);
}
.industry-card__icon { font-size: 40px; margin-bottom: 12px; }
.industry-card__title {
    font-family: var(--dpm-font-display);
    font-size: 18px;
    color: var(--dpm-white);
    margin-bottom: 8px;
}
.industry-card__desc {
    font-size: 14px;
    color: var(--dpm-gray-400);
    line-height: 1.6;
}

/* ===================================================================
   STEPS (How It Works)
   =================================================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: var(--dpm-max-width);
    margin: 0 auto;
}
.step { text-align: center; }
.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--dpm-blue-bg);
    color: var(--dpm-blue);
    font-family: var(--dpm-font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    border: 2px solid rgba(14,165,233,0.2);
}
.step__title {
    font-family: var(--dpm-font-display);
    font-size: 18px;
    margin-bottom: 8px;
}
.step__desc {
    font-size: 14px;
    color: var(--dpm-gray-500);
    line-height: 1.7;
}

/* ===================================================================
   GALLERY / PORTFOLIO
   =================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: var(--dpm-max-width);
    margin: 0 auto;
}
.gallery-item {
    position: relative;
    border-radius: var(--dpm-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11,17,32,0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity .3s ease;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__title {
    color: var(--dpm-white);
    font-family: var(--dpm-font-display);
    font-size: 16px;
    font-weight: 600;
}

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: var(--dpm-max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.testimonial {
    background: var(--dpm-gray-50);
    border: 1px solid var(--dpm-gray-200);
    border-radius: var(--dpm-radius);
    padding: 32px;
}
.testimonial__stars { color: var(--dpm-gold); font-size: 18px; margin-bottom: 16px; }
.testimonial__quote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dpm-gray-700);
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial__author {
    font-weight: 600;
    color: var(--dpm-gray-900);
    font-size: 15px;
}
.testimonial__company {
    font-size: 13px;
    color: var(--dpm-gray-500);
    margin-top: 2px;
}

/* ===================================================================
   PRESS / AS SEEN IN
   =================================================================== */
.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 0 24px;
}

/* ===================================================================
   FAQ ACCORDION
   =================================================================== */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 24px;
}
.faq-item {
    border-bottom: 1px solid var(--dpm-gray-200);
}
.faq-item__question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--dpm-gray-900);
    text-align: left;
    cursor: pointer;
    font-family: var(--dpm-font-body);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color .2s;
}
.faq-item__question:hover { color: var(--dpm-blue); }
.faq-item__question::after { content: '+'; font-size: 22px; color: var(--dpm-blue); transition: transform .2s; }
.faq-item.active .faq-item__question::after { transform: rotate(45deg); }
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.faq-item.active .faq-item__answer { max-height: 500px; }
.faq-item__answer p {
    padding: 0 0 20px;
    color: var(--dpm-gray-600);
    font-size: 15px;
    line-height: 1.7;
}

/* ===================================================================
   LOCATION GRID
   =================================================================== */
.locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.location-link {
    display: inline-block;
    padding: 8px 18px;
    background: var(--dpm-white);
    border: 1px solid var(--dpm-gray-200);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dpm-gray-700);
    text-decoration: none;
    transition: all .2s;
}
.location-link:hover {
    border-color: var(--dpm-blue);
    color: var(--dpm-blue);
    background: var(--dpm-blue-bg);
}

/* ===================================================================
   BOOKING / CTA SECTION
   =================================================================== */
.booking-section {
    padding: var(--dpm-section-pad) 24px;
    background: linear-gradient(135deg, var(--dpm-navy) 0%, #0c2340 50%, var(--dpm-navy-light) 100%);
    text-align: center;
}

.quote-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.quote-form .full-width { grid-column: 1 / -1; }

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--dpm-radius-sm);
    color: var(--dpm-white);
    font-size: 15px;
    font-family: var(--dpm-font-body);
    transition: border-color .2s;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--dpm-blue);
    background: rgba(14,165,233,0.06);
}
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: var(--dpm-gray-500); }
.quote-form select { appearance: none; }
.quote-form select option { background: var(--dpm-navy); color: var(--dpm-white); }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
    background: var(--dpm-navy);
    color: var(--dpm-gray-400);
    padding: 60px 24px 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: var(--dpm-max-width);
    margin: 0 auto 40px;
}
.site-footer__brand {
    font-family: var(--dpm-font-display);
    font-size: 20px;
    color: var(--dpm-white);
    margin-bottom: 12px;
}
.site-footer__brand span { color: var(--dpm-blue); }
.site-footer h4 {
    color: var(--dpm-white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    font-family: var(--dpm-font-body);
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul a {
    color: var(--dpm-gray-400);
    font-size: 14px;
    text-decoration: none;
    transition: color .2s;
}
.site-footer ul a:hover { color: var(--dpm-white); }

.site-footer__bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 13px;
    max-width: var(--dpm-max-width);
    margin: 0 auto;
}

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

@media (max-width: 768px) {
    :root { --dpm-section-pad: 56px; }

    .site-header__nav { display: none; }
    .site-header__nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--dpm-navy);
        padding: 24px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav-toggle { display: block; }

    .services-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 24px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-slider { grid-template-columns: 1fr; }
    .quote-form { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .stats-bar__grid { gap: 24px; }

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

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .stats-bar__grid { gap: 16px; }
    .stat__number { font-size: 24px; }
    .press-logos { gap: 24px; }
}
