/* ==========================================
   ROTOR RANGER REWORKED SYSTEM STYLESHEET 
   ========================================== */

:root {
    --primary: #008000;         /* Theme Brand Green */
    --primary-dark: #006400;    /* Deep Forest Green */
    --accent: #FFD700;          /* High-Vis Aviation Gold */
    --dark: #111111;            /* Deep Space Onyx */
    --light: #f9f9f9;           /* Clean Page Background */
    --text: #333333;            /* High Contrast Charcoal */
    --white: #ffffff;
}

/* Reset Basics */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* ==========================================
   SUPER-SIZED NAVIGATION BANNER STYLING 
   ========================================== */
.top-banner {
    background-color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem; 
    border-bottom: 4px solid var(--accent);
}

.logo-brand-combined {
    display: flex;
    align-items: center;
    gap: 1.5rem; 
    background-color: transparent; 
    padding: 0.5rem 0;
    height: 190px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px; 
    width: 180px;  
}

.logo-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.brand-graphic-container {
    display: flex;
    align-items: center;
    height: 180px; 
}

.brand-graphic-img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

/* ==========================================
   HERO SECTION STYLING
   ========================================== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.5)), 
                /*<!--url('https://img1.wsimg.com/isteam/getty/2278089160') no-repeat center center/cover; --> */
				url('../../assets/images/DronePilot_jpg.jpg') no-repeat center center/cover;
				
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    border-bottom: 5px solid var(--accent);
}

.hero-content {
    padding: 0 1.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8); 
}

.hero-tagline {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #f0f0f0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);  
}

.construction-alert {
    color: yellow;
    font-weight: bold;
    font-size: calc(1.1rem + 1vw) !important;
    margin-top: 40px; /* Replaces the unstable <br> tags safely */
}

.cta-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.8rem 2.5rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.cta-btn:hover {
    background: var(--primary-dark);
	
}

/* ==========================================
   SERVICES GATEWAY & GRID STYLING
   ========================================== */
.services-gateway {
    text-align: center;
    margin-bottom: 5rem;
}

.services-gateway h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.gateway-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.gateway-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gateway-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.gateway-card h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
}

.gateway-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.gateway-link {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 0.6rem 1rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: background 0.2s ease;
    width: 100%;
}

.gateway-link:hover {
    background: var(--primary-dark);
}

.card-thumbnail {
    width: 100%;
    height: 180px;
    background-color: #222;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    margin-bottom: 1.25rem;
    border: 1px solid #ddd;
}

.pkg-info {
    font-size: 0.85rem;
    color: var(--text);
    margin: 0.75rem 0 1.25rem 0;
    background: #f5f5f5;
    padding: 0.5rem;
    border-left: 3px solid #ccc;
    border-radius: 2px;
}

/* ==========================================
   MEET THE OWNERS DESIGN STYLE
   ========================================== */
.owners-section {
    margin-top: 5rem;
    margin-bottom: 5rem;
    text-align: center;
}

.owners-section h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.owners-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 3px;
    background-color: var(--accent);
}

.owners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.owner-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary);
    text-align: left;
}

.owner-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.owner-title {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================
   CONTACT FORM & LABELS STYLING
   ========================================== */
.contact-section {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 8px;
    border: 2px solid var(--accent);
    max-width: 750px; 
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-section h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.contact-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    white-space: nowrap; 
}

.required-asterisk {
    color: #ff0000;
    margin-left: 0.15rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="date"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    background: var(--white);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input[readonly] {
    background-color: #f0f0f0;
    color: #777;
    cursor: not-allowed;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.submit-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
    width: auto;
    align-self: center;
    padding-left: 3rem;
    padding-right: 3rem;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

/* ==========================================
   FOOTER STYLING
   ========================================== */
footer {
    background: #0a0a0a;
    color: #666;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    border-top: 1px solid #222;
    margin-top: 5rem;
}

/* ==========================================
   RESPONSIVE STRUCTURAL BREAKPOINTS
   ========================================== */
@media (max-width: 992px) {
    .gateway-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .owners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .top-banner {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    .gateway-grid {
        grid-template-columns: 1fr;
    }
    .form-row, .form-row.three-cols {
        flex-direction: column;
        gap: 1.5rem;
    }
    .contact-section {
        padding: 2rem 1rem;
    }
    .hero-content h1 {
        font-size: 2.3rem;
    }
    .hero-tagline {
        font-size: 1.1rem;
    }
    .hero-description {
        font-size: 1rem;
    }
}