/* Global Reset */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    color: #fff;
    background-color: #000;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #0B1D2E;
    /* Dark blue from reference */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container .logo {
    height: 40px;
    /* Adjust based on actual logo size */
    width: auto;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    /* Light blue/grey text */
    font-size: 0.75rem;
    /* 12px */
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    opacity: 0.7;
}

.nav-links li a:hover {
    color: #fff;
    opacity: 1;
}

/* Hero Styles */
.hero {
    height: 80vh;
    background-color: #000;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 140px;
    padding-left: 120px;
    text-align: left;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero-bg-gif {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.pricing-bar {
    background-color: #fff;
    color: #0B1D2E;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #eee;
}

.pricing-left {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.pricing-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 4px;
}

.pricing-value {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #0B1D2E;
}

.pricing-right {
    text-align: right;
}

.pricing-text {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    color: #0B1D2E;
}

/* About Section Styles */
.about-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    /* Make sure it's tall enough */
    background-image: url('img/drone%20photo%201.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-end;
    /* Align to right */
    align-items: center;
    /* Center vertically */
    padding: 60px 80px;
    /* Add more side padding */
}

/* Optional overlay to darken the bg image slightly for readability if needed */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: right;
    color: #fff;
    padding: 20px;
}

.about-title {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 1px;
}

.about-content p {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 300;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    /* 64px roughly */
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-description {
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #C5A059;
    /* Gold/Khaki color */
    color: #000;
    /* Dark text on button */
    font-family: "Inter", sans-serif;
    font-weight: 600;
    text-decoration: none;
    border-radius: 9.32px;
    /* Slight rounding or 0 */
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #dcb363;
}

/* Location Section Styles */
.location-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    background-image: url('img/drone%20photo%202.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    border: none;
    /* Explicitly remove border */
    margin: 0;
    /* Ensure no gaps */
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Much lighter overlay to match design */
    z-index: 1;
}

.location-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    flex-wrap: wrap;
    /* Responsive wrap */
}

.location-text {
    flex: 1;
    min-width: 300px;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    /* Ensure readability on lighter bg */
}

.location-title {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.location-desc {
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
}

.location-list {
    list-style: none;
    font-family: "Inter", sans-serif;
}

.location-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 300;
}

.location-list li .bullet {
    color: #fff;
    /* White bullet */
    margin-right: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    content: "•";
    /* Use bullet instead of checkmark */
}

.location-map {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.location-map img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

/* Gallery Section Styles */
.gallery-section {
    position: relative;
    width: 100%;
    /* min-height: 100vh;  Let content dictate height */
    background-image: url('img/drone%20photo%201.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
    z-index: 1;
}

.gallery-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

.gallery-title {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.gallery-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 299.7px);
    gap: 20px;
    margin: 20px auto 0;
    margin-left: 13%;
}

.gallery-grid img {
    width: 100%;
    max-width: 299.7px;
    height: 199px;
    object-fit: cover;
    border-radius: 9.32px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

/* CTA Section Styles */
.cta-section {
    position: relative;
    width: 100%;
    /* No min-height for compact look */
    background-image: url('img/footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 100px 20px;
    /* Increased padding */
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Lighter overlay (Low Opacity) */
    z-index: 1;
}

.cta-content {
    position: relative;
    margin-left: 23%;
    z-index: 2;
    max-width: 800px;
    color: #fff;
}

.cta-title {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.cta-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #0B1D2E;
    /* Dark Blue */
    color: #fff;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #152a40;
}

/* Footer Styles */
.footer {
    background-color: #fff;
    color: #000;
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #eee;
}

.footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center align text */
    margin: 10px;
    text-align: center;
    min-width: 150px;
}

.footer-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 5px;
    font-weight: 600;
}

.footer-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0B1D2E;
}

/* =====================
   MOBILE RESPONSIVE
   ===================== */
@media (max-width: 768px) {

    /* --- Navbar --- */
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 20px;
        gap: 12px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 14px;
    }

    .nav-links li a {
        font-size: 0.7rem;
    }

    /* --- Hero --- */
    .hero {
        height: 70vh;
        padding-top: 60px;
        padding-left: 24px;
        padding-right: 24px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.4rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 28px;
    }

    .btn-primary {
        padding: 10px 24px;
        font-size: 0.8rem;
    }

    /* --- Pricing Bar --- */
    .pricing-bar {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 16px 20px;
        text-align: center;
    }

    .pricing-right {
        text-align: center;
    }

    /* --- About Section --- */
    .about-section {
        justify-content: center;
        padding: 50px 24px;
        min-height: unset;
    }

    .about-content {
        text-align: center;
        max-width: 100%;
    }

    .about-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .about-content p {
        font-size: 0.9rem;
    }

    /* --- Location Section --- */
    .location-section {
        padding: 50px 24px;
        min-height: unset;
    }

    .location-container {
        flex-direction: column;
        gap: 30px;
    }

    .location-text {
        min-width: unset;
        width: 100%;
    }

    .location-title {
        font-size: 1.8rem;
    }

    .location-desc {
        font-size: 0.85rem;
    }

    .location-map {
        min-width: unset;
        width: 100%;
        justify-content: center;
    }

    .location-map img {
        max-width: 100%;
    }

    /* --- Gallery Section --- */
    .gallery-section {
        padding: 50px 16px;
        justify-content: center;
    }

    .gallery-content {
        width: 100%;
    }

    .gallery-title {
        font-size: 1.8rem;
    }

    .gallery-subtitle {
        font-size: 0.85rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        margin-left: 0;
        gap: 12px;
        width: 100%;
    }

    .gallery-grid img {
        width: 100%;
        max-width: 100%;
        height: 130px;
    }

    /* --- CTA Section --- */
    .cta-section {
        padding: 70px 24px;
        justify-content: center;
        text-align: center;
    }

    .cta-content {
        margin-left: 0;
        max-width: 100%;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-subtitle {
        font-size: 0.85rem;
    }

    .cta-btn {
        padding: 12px 28px;
        font-size: 0.8rem;
    }

    /* --- Footer --- */
    .footer {
        flex-direction: column;
        align-items: center;
        padding: 20px 16px;
        gap: 4px;
    }

    .footer-item {
        min-width: unset;
        margin: 6px 0;
    }
}