/* =====================================================
   1. GENERAL STYLES & RESET 
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #ffffff;
    color: #333333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Common Buttons */
.btn {
    background-color: #d4a017 !important;
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #b88614 !important;
}


/* =====================================================
   2. HEADER & NAVIGATION 
===================================================== */
.header {
    width: 100%;
    background-color: #0a2342; /* Premium Dark Blue */
    padding: 15px 0;
    position: relative;
    z-index: 1000;
}

.header .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.header .logo img {
    height: 50px !important;
    width: auto !important;
    display: block;
}

.header .navbar {
    display: block;
}

.header .navbar ul {
    display: flex !important;
    list-style: none !important;
    gap: 30px !important;
    margin: 0;
    padding: 0;
}

.header .navbar ul li a {
    text-decoration: none;
    color: #ffffff !important;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
}

.header .navbar ul li a:hover,
.header .navbar ul li a.active {
    color: #d4a017 !important;
}


/* =====================================================
   3. INDEX/HOME HERO SECTION 
===================================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content span {
    color: #d4a017;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}


/* =====================================================
   4. ABOUT PAGE HERO & SECTIONS
===================================================== */
.about-hero {
    background-color: #0a2342; 
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
}

.about-hero h5 {
    color: #d4a017;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-hero h1 {
    font-size: 42px;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.3;
}

.about-hero p {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 20px auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Our Story (Two Column Grid) */
.our-story {
    padding: 80px 0;
    background-color: #ffffff;
}

.our-story .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-image, .story-content {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.story-content h2 {
    font-size: 14px;
    color: #d4a017;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.story-content h3 {
    font-size: 28px;
    color: #0a2342;
    margin-bottom: 15px;
}

.story-content p {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Shooting Services Section */
.shooting-services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.shooting-services .container {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.shooting-content {
    flex: 1.2;
}

.shooting-image {
    flex: 0.8;
}

.shooting-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.shooting-content h2 {
    font-size: 28px;
    color: #0a2342;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #d4a017;
    display: inline-block;
    padding-bottom: 5px;
}

.shooting-content h2:first-of-type {
    margin-top: 0;
}

.shooting-content p {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.shooting-content ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 25px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.shooting-content ul li {
    font-size: 15px;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Why Choose Us (About) */
.why-about {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.why-about h2 {
    font-size: 32px;
    color: #0a2342;
    margin-bottom: 40px;
}

.why-about .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-about .why-card {
    background: #fdfdfd;
    padding: 30px 20px;
    border-radius: 8px;
    border: 1px solid #eeeeee;
    transition: 0.3s;
}

.why-about .why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: #d4a017;
}

.why-about .why-card h3 {
    font-size: 20px;
    color: #0a2342;
    margin-bottom: 12px;
}

.why-about .why-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

/* Statistics */
.statistics {
    background-color: #0a2342;
    padding: 60px 0;
    color: #ffffff;
    text-align: center;
}

.statistics .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-box h2 {
    font-size: 45px;
    color: #d4a017;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 16px;
    opacity: 0.8;
}


/* =====================================================
   5. PACKAGES GRID SECTION
===================================================== */
.packages {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.packages h2 {
    font-size: 36px;
    color: #0a2342;
    margin-bottom: 40px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    padding-bottom: 25px;
    text-align: center;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.package-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.package-card h3 {
    font-size: 22px;
    color: #0a2342;
    margin: 20px 0 10px 0;
    padding: 0 15px;
}

.package-card p {
    font-size: 15px;
    color: #777777;
    margin-bottom: 10px;
}

.package-card h4 {
    font-size: 18px;
    color: #d4a017;
    margin-bottom: 20px;
}


/* =====================================================
   6. FOOTER
===================================================== */
.footer {
    background-color: #0a2342;
    color: #ffffff;
    padding: 60px 0 20px 0;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-logo h2 {
    color: #d4a017;
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-logo p, .footer-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 10px;
}

.footer-links h3, .footer-box h3, .footer-social h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    border-bottom: 2px solid #d4a017;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #d4a017;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 13px;
    color: #999999;
}


/* =====================================================
   7. RESPONSIVE DESIGN (Media Queries)
===================================================== */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .our-story .container, .shooting-services .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .shooting-content ul {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 38px;
    }
    
    .about-hero h1 {
        font-size: 30px;
    }
}

/* =====================================================
   SECTIONS & COUNTERS SPACING FIX
===================================================== */
.counters-section,
section[class*="counter"],
.counter-section,
div[class*="counter"] {
    padding: 80px 0 !important;
    margin: 40px 0 !important;
}

.counter-box p,
.counter p,
div[class*="counter"] p {
    color: #e0e0e0 !important;
    margin-top: 10px !important;
    font-size: 16px !important;
    }

.features-section,
.services-section,
section[class*="feature"] {
    padding-bottom: 60px !important;
}

footer,
.footer,
div[class*="footer"] {
    padding: 60px 0 30px 0 !important;
    margin-top: 40px !important;
    }

footer h3,
.footer h3,
.footer h4 {
    margin-bottom: 20px !important;
}

/* =====================================================
   SPACING & COLOR FIX 
===================================================== */

.counter,
.counters, 
.counter-section, 
section[class*="counter"], 
div[class*="counter"] {
    padding: 80px 0 !important;
    margin-top: 40px !important;
    margin-bottom: 40px !important;
    display: block !important;
}

.counter p, 
.counter-box p, 
div[class*="counter"] p, 
div[class*="counter"] h5 {
    color: #e0e0e0 !important;
    font-size: 16px !important;
    margin-top: 10px !important;
    font-weight: 500 !important;
    }

    footer, 
.footer, 
div[class*="footer"] {
    padding: 60px 20px 30px 20px !important;
    margin-top: 60px !important;
    display: block !important;
    }

    footer .container, 
.footer .container {
    display: flex !important;
    gap: 40px !important;
}

/* =====================================================
   CLEAN & COMPACT FOOTER DESIGN 
===================================================== */

footer, 
.footer, 
div[class*="footer"] {
    background-color: #071c35 !important;
    padding: 40px 0 20px 0 !important;
    color: #ffffff !important;
}

footer p, 
.footer p,
footer a, 
.footer a,
footer span,
.footer span,
footer li,
.footer li {
    color: #ffffff !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    text-decoration: none !important;
    transition: 0.3s !important;
}

footer a:hover, 
.footer a:hover {
    color: #f3c137 !important;
}

footer h3, 
.footer h3, 
footer h4, 
.footer h4 {
    color: #f3c137 !important;
    font-size: 18px !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
}

.footer-bottom, 
footer .bottom,
div[class*="footer"] div:last-child {
    margin-top: 30px !important;
    padding-top: 15px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    font-size: 12px !important;
    color: #aaaaaa !important;
}

footer, 
.footer, 
div[class*="footer"] {
    background-color: #071c35 !important; 
    padding: 20px 0 10px 0 !important;
    color: #ffffff !important;           
}

footer p, 
.footer p,
footer a, 
.footer a,
footer li, 
.footer li {
    font-size: 13.5px !important;
    margin-bottom: 8px !important;
    line-height: 1.4 !important;
}

footer h3, 
.footer h3, 
footer h4, 
.footer h4 {
    font-size: 16px !important;
    margin-bottom: 10px !important;
}

.footer-bottom, 
footer .bottom,
div[class*="footer"] div:last-child {
    margin-top: 15px !important;
    padding-top: 10px !important;
}

.counters-section .counter p,
.counters-section .counter span,
.counter-box p,
.counter-box span,
.counter p,
.counter span,
div[class*="counter"] p,
div[class*="counter"] span,
div[class*="counter"] h3,
div[class*="counter"] h4,
div[class*="counter"] h5 {
    color: #ffffff !important;
    opacity: 1 !important;
    font-weight: 500 !important;
}

/* =====================================================
   HERO / WELCOME SECTION
===================================================== */

.hero, 
section[class*="hero"], 
.welcome-section {
    background-color: #00539C !important;
    padding: 60px 0 !important;
}

.hero h1, 
.hero h2, 
section[class*="hero"] h1, 
section[class*="hero"] h2 {
    font-size: 38px !important;  
    margin-bottom: 20px !important;
    line-height: 1.3 !important;
}

.hero p, 
section[class*="hero"] p, 
.welcome-section p {
    color: #ffffff !important;
    font-size: 15px !important;   
    line-height: 1.6 !important;  
    max-width: 800px !important;  
    margin: 0 auto 20px auto !important; 
    opacity: 0.95 !important;
}

.features-section h3, 
.services-section h3,
div[class*="card"] h3,
div[class*="box"] h3 {
    font-size: 18px !important;
    line-height: 1.2 !important;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-btn{

    position:fixed;

    bottom:25px;

    right:25px;

    width:65px;

    height:65px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:9999;

    transition:.3s;

}

.whatsapp-btn img{

    width:35px;

    height:35px;

}

.whatsapp-btn:hover{

    transform:scale(1.1);

}

#backToTop{

    position:fixed;

    bottom:25px;

    left:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#ffb703;

    color:#fff;

    font-size:24px;

    cursor:pointer;

    display:none;

    z-index:9999;

    transition:.3s;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

}

#backToTop:hover{

    background:#ffb703;

    color:#000;

    transform:translateY(-5px);

}

.about-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.75), rgba(0, 51, 102, 0.75)), url('../images/about-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    color: #ffffff;
    text-align: center;
}

@media screen and (max-width: 768px) {

    footer, 
    section[style*="width: 100vw"] {
        width: 100% !important;
        position: static !important;
        left: auto !important;
        right: auto !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    footer > div, 
    .footer-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 25px !important;
        padding: 30px 15px !important;
    }

    footer > div > div, 
    .footer-column {
        width: 100% !important;
        max-width: 100% !important;
    }

    .navbar {
        flex-direction: column !important;
        padding: 10px !important;
    }

    .navbar ul, 
    .nav-links {
        padding: 0 !important;
        margin: 10px 0 !important;
        gap: 8px !important;
    }

    .social-links {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .social-links a {
        width: 90% !important;
    }

    section form {
        flex-direction: column !important;
        width: 90% !important;
    }

    section form input, 
    section form button {
        width: 100% !important;
    }
}