body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #181d23;
    color: #f4f4f4;
    line-height: 1.6;
}

*, *:before, *:after { 
    box-sizing: border-box; 
}

a {
    color: #3b82f6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    background: #111827; /* Darker, more neutral background */
    padding-bottom: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 24px 0 24px;
}

.logo {
    display: block;
    max-width: 220px;
    width: 55%;
    margin: 8px auto 12px auto;
}

.logo img {
    display: block;
    width: 100%;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0 0 12px 0;
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li a {
    color: #f4f4f4;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}

nav ul li a:hover {
    color: #3b82f6;
}

.hero {
    text-align: center;
    padding: 60px 24px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Specific styling for the homepage hero background */
body.home .hero {
    background: linear-gradient(rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.8)), url('https://placehold.co/1920x600/1e293b/3b82f6?text=Drone+Shot') no-repeat center center;
    background-size: cover;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: #fff;
}

.hero h2 {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-location {
    font-size: 1.1rem;
    color: #9ca3af; /* Lighter gray */
    margin-bottom: 24px;
}

.cta {
    background: #3b82f6;
    color: #fff;
    padding: 14px 32px;
    border-radius: 32px;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(59,130,246,0.2);
    transition: background 0.2s;
    margin: 0 8px;
    border: 2px solid transparent;
    cursor: pointer;
}

.cta:hover {
    background: #2563eb;
    text-decoration: none;
}

.cta.cta--secondary {
    background: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
}

.cta.cta--secondary:hover {
    background: #3b82f6;
    color: #fff;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px;
}

.page-content {
    background: #23272f;
    padding: 32px;
    border-radius: 16px;
}

.page-content h3 {
    font-size: 1.8rem;
    color: #3b82f6;
    margin-top: 1.5em;
}

.page-content ul {
    list-style: none;
    padding-left: 0;
}

.page-content ul li {
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.page-content ul li::before {
    content: '✓';
    color: #3b82f6;
    position: absolute;
    left: 0;
}

.feature-section {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.feature-section.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 16px;
}

.feature-text p {
    color: #cbd5e1;
    margin-bottom: 16px;
}

.feature-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.feature-text ul li {
    color: #cbd5e1;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.feature-text ul li::before {
    content: '✓';
    color: #3b82f6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.cta-link {
    display: inline-block;
    color: #3b82f6;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 0;
}

.cta-link:hover {
    text-decoration: underline;
}

.cta-section {
    text-align: center;
    margin: 32px 0;
}

.usp-section {
    text-align: center;
    padding: 48px 16px;
    background: #071126;
    border-radius: 16px;
    margin-top: 64px;
}

.usp-section h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 32px;
}

.usp-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 16px;
}

.usp-card {
    background: #181d23;
    border-radius: 12px;
    padding: 24px;
    max-width: 320px;
    flex: 1;
    text-align: left;
}

.usp-card h3 {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-top: 0;
    margin-bottom: 8px;
}

.usp-card p {
    color: #cbd5e1;
}

/* Gallery Styles */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.gallery-item a {
    display: block;
    text-decoration: none;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 32px 16px 16px;
    text-align: left;
}

.gallery-item-overlay h3 {
    margin: 0;
    font-size: 1.4rem;
}

/* Testimonials */
.testimonials-section {
    padding: 48px 0;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 32px;
}

.testimonial-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    background: #23272f;
    border-radius: 12px;
    padding: 24px;
    max-width: 480px;
    flex: 1;
    border-left: 4px solid #3b82f6;
}

.testimonial-card p {
    margin: 0 0 16px 0;
    font-style: italic;
    color: #cbd5e1;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: bold;
    color: #fff;
}


/* Service Tabs & Pricing Cards */
.service-tabs {
    margin: 48px auto;
    max-width: 1100px;
    background: #23272f;
    border-radius: 18px;
    box-shadow: 0 2px 24px rgba(59,130,246,0.08);
    padding: 32px 24px;
}
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.tab-btn {
    background: #23272f;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    border-radius: 32px;
    padding: 12px 32px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.tab-btn.active, .tab-btn:hover {
    background: #3b82f6;
    color: #fff;
}
.tab-content { display: none; animation: fadeIn 0.8s; }
.tab-content.active { display: block; }

.pricing-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 28px 0;
}
.pricing-card {
    background: #181d23;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(59,130,246,0.10);
    padding: 28px 20px;
    width: 300px;
    text-align: left;
    margin-bottom: 24px;
    transition: transform 0.2s;
    position: relative;
}
.pricing-card .view-sample {
    display: inline-block;
    margin: 6px 0 10px 0;
    padding: 8px 14px;
    background: transparent;
    color: #cfe8ff;
    border: 1px solid rgba(207,232,255,0.18);
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.95rem;
}
.pricing-card .view-sample:hover {
    background: rgba(255,255,255,0.03);
    border-color: rgba(207,232,255,0.28);
}
.pricing-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px rgba(59,130,246,0.18);
}
.pricing-card h3 {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-bottom: 8px;
}
.pricing-card .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #38bdf8;
    margin-bottom: 12px;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 12px;
}
.pricing-card ul li {
    margin-bottom: 6px;
    font-size: 1rem;
}
.pricing-card ul li.addon-small {
    font-size: 0.9rem;
    color: #cbd5e1; /* slightly muted */
}
.add-ons {
    margin-top: 24px;
    background: #23272f;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(59,130,246,0.08);
}
.add-ons h4 { color: #3b82f6; margin-bottom: 8px; }
.add-ons ul { list-style: none; padding: 0; }
.add-ons ul li { margin-bottom: 6px; font-size: 1rem; }

.add-on-note {
    max-width: 900px;
    margin: 12px auto 28px auto;
    color: #cbd5e1;
    text-align: center;
    background: #0f1724;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.add-on-note p {
    margin: 0;
}

.global-terms {
    max-width: 1100px;
    margin: 48px auto 0;
    padding: 24px;
    background: #23272f;
    border-radius: 18px;
    color: #cbd5e1;
}
.global-terms h3 {
    text-align: center;
    color: #fff;
    margin-top: 0;
    margin-bottom: 24px;
}
.global-terms ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}
.global-terms ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}
.global-terms ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
}

/* Modal / contact form styles */
.acp-modal { display: none; position: fixed; inset: 0; align-items: center; justify-content: center; z-index: 1200; background: rgba(10, 20, 40, 0.8); backdrop-filter: blur(8px); }
.acp-modal .acp-modal-content { background: #0b1220; color: #e6eefc; border-radius: 12px; padding: 22px; width: 96%; max-width: 820px; box-shadow: 0 12px 48px rgba(0,0,0,0.6); position: relative; }
.acp-video-content { max-width: 960px; }
.acp-modal .acp-modal-close { position: absolute; right: 12px; top: 8px; background: transparent; color: #cbd5e1; border: none; font-size: 1.8rem; cursor: pointer; }
.acp-modal h3 { margin-top: 4px; margin-bottom: 8px; color: #cfe8ff; }
.acp-modal label { display:block; margin-top:8px; font-size:0.95rem; color:#cbd5e1; }
.acp-modal input[type="text"], .acp-modal input[type="email"], .acp-modal textarea { width:100%; padding:10px 12px; margin-top:6px; border-radius:8px; border:1px solid rgba(207,232,255,0.06); background:#07101a; color:#e6eefc; }
.acp-modal textarea { min-height:100px; }
.acp-form-actions { margin-top:12px; display:flex; gap:12px; align-items:center; }
.acp-form-status { margin-top:8px; color:#9fe3ff; }
.acp-modal .acp-modal-cancel { background: transparent; color: #cfe8ff; border: 1px solid rgba(207,232,255,0.12); padding:10px 16px; border-radius:12px; cursor:pointer; }
.acp-modal .acp-modal-cancel:hover { background: rgba(255,255,255,0.02); }
.open-contact, .open-contact.button { display:inline-block; padding:8px 14px; border-radius:12px; border:1px solid rgba(207,232,255,0.12); background:transparent; color:#e6eefc; text-decoration:none; cursor:pointer; }
.open-contact.cta { background:#3b82f6; color:#fff; border-color:transparent; }
.project-select { padding:8px 12px; border-radius:10px; border:1px solid rgba(207,232,255,0.08); background:#07101a; color:#e6eefc; margin-right:10px; }
.acp-video-wrap { position:relative; padding-top:56.25%; }
.acp-video-wrap iframe { position:absolute; top:0; left:0; width:100%; height:100%; border-radius:8px; }

.site-footer {
  background: #071126;
  color: #cbd5e1;
  padding: 28px 16px;
  text-align: center;
  font-size: 0.95rem;
  margin-top: 48px;
}

.site-footer .footer-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.site-footer .footer-contact a {
  color: #9fe3ff;
  text-decoration: none;
  font-weight: 600;
}

.site-footer .footer-legal a {
  color: #cbd5e1;
  text-decoration: underline;
  margin: 0 8px;
}

@media (min-width: 700px) {
  .site-footer .footer-inner { flex-direction: row; justify-content: space-between; }
  .site-footer .footer-contact { text-align: left; }
  .site-footer .footer-legal { text-align: right; }
}

@media (max-width: 900px) {
    .hero h1 { font-size: 2.2rem; }
    .hero h2 { font-size: 1.1rem; }

    .feature-section, .feature-section.reverse {
        flex-direction: column;
    }

    .feature-text h2, .usp-section h2 {
        font-size: 1.8rem;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    .service-tabs {
        padding: 16px 4px;
    }
    .pricing-card {
        width: 95%;
    }
}

@media (max-width: 600px) {
    .tab-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .tab-btn {
        width: 100%;
        border-radius: 8px; /* More rectangular */
        padding: 14px 24px; /* Adjust padding for new shape */
    }
}

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