/* Flying Gang Aerial Services - Main Stylesheet */
/* Brand Colors:
   Deep Charcoal: #1A1A1A
   Signal Orange: #FF6B35
   Electric Teal: #00B4D8
   White: #FFFFFF
   Light Gray: #F5F5F5
   Medium Gray: #6B7280
*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Jim+Nightshade&family=Bebas+Neue&display=swap');

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1A1A1A;
    background-color: #FFFFFF;
}

a {
    color: #FF6B35;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00B4D8;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.2;
    color: #1A1A1A;
}

h1 { font-size: 3.5rem; letter-spacing: 2px; }
h2 { font-size: 2.5rem; letter-spacing: 1px; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

.script-heading {
    font-family: 'Jim Nightshade', cursive;
    font-size: 4rem;
    font-weight: 400;
}

.section-subtitle {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 1.25rem;
    color: #FF6B35;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-dark {
    background-color: #1A1A1A;
    color: #FFFFFF;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
    color: #FFFFFF;
}

.section-light {
    background-color: #F5F5F5;
}

/* Credibility Strip */
.credibility-strip {
    background-color: #1A1A1A;
    padding: 12px 0;
    margin-top: 80px; /* Account for fixed header */
    border-bottom: 2px solid #FF6B35;
}

.credibility-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
}

.credibility-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.credibility-list svg {
    color: #00B4D8;
    flex-shrink: 0;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

.logo-text {
    font-family: 'Jim Nightshade', cursive;
    font-size: 1.75rem;
    color: #FFFFFF;
    margin-left: 10px;
}

.logo-text span {
    color: #FF6B35;
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    display: block;
    margin-top: -5px;
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: #FFFFFF;
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF6B35;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover {
    color: #FF6B35;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1A1A1A;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
}

.hero-logo {
    max-width: 550px;
    margin: 0 auto 20px;
}

.hero h1 {
    font-family: 'Jim Nightshade', cursive;
    font-size: 5rem;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.hero h1 span {
    color: #FF6B35;
}

.hero-tagline {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 1.5rem;
    color: #00B4D8;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.15rem;
    color: #CCCCCC;
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #FF6B35;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #e55a2b;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    color: #1A1A1A;
}

.btn-outline {
    background-color: transparent;
    color: #FF6B35;
    border: 2px solid #FF6B35;
}

.btn-outline:hover {
    background-color: #FF6B35;
    color: #FFFFFF;
}

/* Benefits Grid (Why Choose Us) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: #FF6B35;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.benefit-card p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: #FFFFFF;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #FF6B35;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #FF6B35;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #1A1A1A;
}

.service-card p {
    color: #6B7280;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: #F5F5F5;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #FF6B35;
}

.testimonial-content p {
    font-style: italic;
    color: #1A1A1A;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    color: #1A1A1A;
    font-size: 0.95rem;
}

.testimonial-author span {
    color: #6B7280;
    font-size: 0.85rem;
}

/* Locations Grid */
.locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.locations-grid span {
    background-color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #1A1A1A;
    border: 1px solid #E5E5E5;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid #FF6B35;
    border-radius: 8px;
    z-index: -1;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #6B7280;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 3rem;
    color: #FF6B35;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Portfolio/Gallery */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16/10;
}

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

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.9));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    color: #FFFFFF;
    margin-bottom: 5px;
}

.portfolio-overlay p {
    color: #CCCCCC;
    font-size: 0.9rem;
}

/* Deliverables Section */
.deliverables-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.deliverable-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.deliverable-icon {
    width: 24px;
    height: 24px;
    color: #00B4D8;
    flex-shrink: 0;
    margin-top: 2px;
}

.deliverable-item h4 {
    color: #FFFFFF;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.deliverable-item p {
    color: #AAAAAA;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%);
}

.cta-section h2 {
    color: #FFFFFF;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 20px auto 30px;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info p {
    color: #6B7280;
    margin-bottom: 30px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #1A1A1A;
}

.contact-details svg {
    width: 24px;
    height: 24px;
    color: #FF6B35;
}

.contact-form {
    background-color: #F5F5F5;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1A1A1A;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #E5E5E5;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF6B35;
}

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

/* Footer */
.site-footer {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #AAAAAA;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    color: #FF6B35;
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #AAAAAA;
}

.footer-links a:hover {
    color: #FF6B35;
}

.footer-contact p {
    color: #AAAAAA;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #6B7280;
    font-size: 0.9rem;
}

.footer-certifications {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-certifications span {
    font-size: 0.85rem;
    color: #6B7280;
    padding: 5px 15px;
    border: 1px solid #333;
    border-radius: 4px;
}

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

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #1A1A1A;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .credibility-strip {
        padding: 15px 0;
    }
    
    .credibility-list {
        gap: 15px;
    }
    
    .credibility-list li {
        font-size: 0.8rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .section {
        padding: 60px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }

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

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

/* Utility Classes */
.text-center { text-align: center; }
.text-orange { color: #FF6B35; }
.text-teal { color: #00B4D8; }
.text-gray { color: #6B7280; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
