/* --- CSS VARIABLES --- */
:root {
    --primary-dark: #1a1a1a;
    --accent-color: #f59e0b; /* Gold/Yellow */
    --text-main: #374151;
    --text-light: #6b7280;
    --bg-light: #f3f4f6;
    --white: #ffffff;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --contact-bg: #111827;
    --contact-card: #1f2937;
    --contact-text: #f9fafb;
    --contact-accent: #0ea5e9;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background-color: var(--white); color: var(--text-main); overflow-x: hidden; scroll-behavior: smooth; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- PILL NAVBAR --- */
.pill-nav-container { padding: 1.5rem 5%; position: sticky; top: 0; z-index: 1000; pointer-events: none; }
.pill-nav {
    background-color: #111; color: white; border-radius: 50px;
    padding: 0.5rem 1.5rem; display: flex; justify-content: space-between;
    align-items: center; box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    max-width: 1300px; margin: 0 auto; pointer-events: auto;
}
.logo { font-size: 1.1rem; font-weight: 800; display: flex; align-items: center; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; }
.logo-img { height: 40px; width: auto; margin-right: 12px; }

.nav-links {
    display: flex; gap: 1.5rem; align-items: center; margin-left: auto; margin-right: 0.5rem;
}
.nav-links a { font-size: 0.95rem; color: #e5e7eb; font-weight: 500; transition: color 0.3s; padding: 10px 0; }
.nav-links a:hover { color: var(--accent-color); }

/* ORDER PRINT BUTTON */
.nav-btn-item { display: flex; align-items: center; }
.btn-pill {
    background-color: var(--accent-color); color: #000 !important;
    padding: 0.7rem 1.5rem; border-radius: 30px; font-weight: 700 !important;
    transition: transform 0.2s; text-transform: capitalize;
    white-space: nowrap; min-width: 130px; text-align: center;
}
.btn-pill:hover { transform: scale(1.05); opacity: 0.9; }

/* MEGA MENU STYLING (FIXED) */
.dropdown-parent { position: relative; padding: 10px 0; }
.dropdown-toggle { display: flex; align-items: center; gap: 5px; cursor: pointer; }

/* This centers the menu properly */
.dropdown-menu.mega-menu {
    position: absolute; 
    top: 100%; 
    right: -100px; /* Anchors slightly to the right of the link */
    left: auto;    /* Overrides default left alignment */
    background: white;
    width: 750px;  /* Wider for 3 columns */
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 12px; 
    display: none; 
    flex-direction: row; 
    justify-content: space-between;
    overflow: visible; 
    z-index: 1001; 
    padding: 2rem;
    gap: 2rem;
}

.menu-column { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.menu-column h4 { 
    font-size: 0.95rem; font-weight: 800; color: var(--accent-color); 
    text-transform: uppercase; margin-bottom: 10px; letter-spacing: 0.5px; 
    border-bottom: 2px solid #eee; padding-bottom: 8px; 
}
.menu-column a {
    display: block; padding: 5px 0; color: #333 !important; 
    font-size: 0.9rem; transition: all 0.2s; font-weight: 500;
}
.menu-column a:hover { color: var(--accent-color) !important; padding-left: 5px; background: none; }

/* Show on hover (Desktop) */
@media (min-width: 900px) {
    .dropdown-parent:hover .dropdown-menu { display: flex; }
}

/* --- HERO SECTION --- */
.hero { display: flex; align-items: center; justify-content: space-between; padding: 2rem 10% 4rem 10%; max-width: 1400px; margin: 0 auto; }
.hero-text { width: 45%; }
.hero-tag { background: #fffbeb; color: #b45309; padding: 5px 12px; border-radius: 6px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; margin-bottom: 1rem; display: inline-block; }
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.5rem; color: var(--primary-dark); font-weight: 800; }
.hero p { color: var(--text-light); font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.6; max-width: 90%; }
.btn-group { display: flex; gap: 1rem; }
.btn-primary { background-color: var(--primary-dark); color: var(--white); padding: 1rem 2rem; border-radius: 8px; font-weight: 600; transition: 0.3s; }
.btn-primary:hover { background-color: var(--accent-color); color: black; }
.btn-secondary { padding: 1rem 2rem; border: 1px solid #ddd; border-radius: 8px; font-weight: 600; color: var(--primary-dark); transition: 0.3s; }
.btn-secondary:hover { background: var(--bg-light); }
.hero-img-container { width: 50%; display: flex; justify-content: flex-end; }
.hero-main-img { width: 100%; max-width: 650px; border-radius: 20px; box-shadow: 20px 20px 0px var(--bg-light); object-fit: cover; }

/* --- SERVICES & CARDS --- */
.services-strip { display: flex; justify-content: center; gap: 3rem; padding: 4rem 10%; background: white; border-bottom: 1px solid #eee; flex-wrap: wrap; }
.service-item { text-align: center; color: var(--text-light); transition: 0.3s; display: flex; flex-direction: column; align-items: center; gap: 15px; text-decoration: none; }
.service-item:hover { color: var(--accent-color); transform: translateY(-5px); }
.service-item i { font-size: 2.5rem; color: var(--accent-color); display: block; }
.service-item span { font-weight: 600; font-size: 1.1rem; }

.cards-section { padding: 6rem 10%; background-color: var(--bg-light); }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-size: 2.5rem; color: var(--primary-dark); font-weight: 800; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.info-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--card-shadow); transition: 0.3s; position: relative; height: 100%; display: flex; flex-direction: column; }
.info-card:hover { transform: translateY(-10px); }
.card-image { height: 220px; width: 100%; object-fit: cover; border-bottom: 4px solid var(--accent-color); }
.card-content { padding: 2rem; padding-top: 3rem; flex-grow: 1; display: flex; flex-direction: column; }
.card-icon-overlay { width: 64px; height: 64px; background: var(--primary-dark); color: var(--accent-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; position: absolute; top: 188px; right: 2rem; border: 4px solid var(--white); }
.info-card h3 { margin: 0 0 1rem 0; color: var(--primary-dark); font-size: 1.4rem; font-weight: 700; }
.info-card p { margin-bottom: 1.5rem; flex-grow: 1; }
.card-action { display: inline-block; font-weight: 700; color: var(--accent-color); font-size: 0.9rem; text-transform: uppercase; }

/* --- REVIEWS SECTION --- */
.testimonials-section { padding: 5rem 10%; background: white; border-top: 1px solid #ddd; }
.reviews-layout { display: flex; gap: 3rem; align-items: flex-start; }

.review-summary-card {
    min-width: 300px; background: white; padding: 2rem; border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); display: flex; flex-direction: column; align-items: flex-start;
}
.summary-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.summary-logo { width: 50px; height: 50px; border-radius: 50%; object-fit: contain; }
.summary-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 5px; }
.rating-number { font-size: 1.2rem; font-weight: bold; }
.rating-stars { color: #f59e0b; font-size: 1.1rem; }
.review-count { color: #666; font-size: 0.9rem; margin-bottom: 5px; }
.powered-by { font-size: 0.8rem; color: #888; margin-bottom: 1.5rem; }
.btn-review-google {
    background-color: #3b82f6; color: white; padding: 0.6rem 1.5rem;
    border-radius: 50px; font-size: 0.9rem; font-weight: 600; display: inline-flex;
    align-items: center; gap: 8px; text-transform: lowercase; text-decoration: none;
}
.g-icon { font-family: sans-serif; font-weight: 900; font-size: 1.1rem; }

.reviews-list {
    display: flex; gap: 20px; overflow-x: auto; padding-bottom: 20px; scroll-behavior: smooth; flex: 1;
}
.reviews-list::-webkit-scrollbar { height: 6px; }
.reviews-list::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }
.review-item-link { text-decoration: none; color: inherit; min-width: 300px; max-width: 350px; flex: 0 0 auto; }
.review-item {
    background: white; border: 1px solid #eee; border-radius: 12px; padding: 1.5rem; height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); transition: transform 0.2s; display: flex; flex-direction: column;
}
.review-item:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.reviewer-info { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; position: relative; }
.reviewer-info .avatar { width: 40px; height: 40px; border-radius: 50%; color: white; display: flex; align-items: center; justify-content: center; font-weight: bold; }
.reviewer-info h4 { font-size: 0.95rem; font-weight: 700; color: #333; }
.reviewer-info .time { font-size: 0.8rem; color: #888; }
.google-mini-icon { width: 18px; position: absolute; top: 0; right: 0; }
.item-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 10px; }
.review-item p { font-size: 0.9rem; line-height: 1.5; color: #555; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; }

/* --- OTHER SECTIONS --- */
.clients-strip { padding: 4rem 10%; background: #fafafa; border-top: 1px solid #eee; }
.clients-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 4rem; opacity: 0.5; }
.client-logo { display: flex; align-items: center; gap: 10px; font-size: 1.8rem; color: #333; }

.location-section { padding: 6rem 10%; background: white; }
.location-content { display: flex; gap: 4rem; max-width: 1200px; margin: 0 auto; }
.location-text { flex: 1; }
.divider-line { width: 70px; height: 5px; background: var(--accent-color); margin-bottom: 2.5rem; border-radius: 5px; }
.location-map { flex: 1.2; height: 450px; border-radius: 20px; overflow: hidden; }

.contact-section { background: var(--contact-bg); padding: 6rem 10%; color: white; }
.contact-header { text-align: center; margin-bottom: 4rem; }
.contact-form-wrapper { width: 100%; max-width: 650px; background: rgba(31,41,55,0.95); padding: 3rem; border-radius: 20px; }
.form-control { width: 100%; padding: 1.2rem; background: rgba(55,65,81,0.8); border: none; border-radius: 12px; color: white; }
.btn-submit { width: 100%; padding: 1.2rem; background: var(--accent-color); border: none; border-radius: 12px; font-weight: 800; cursor: pointer; text-transform: uppercase; }

.copyright-footer { background: #111; color: #888; text-align: center; padding: 2rem; }
.float-wa { position: fixed; bottom: 30px; right: 30px; width: 65px; height: 65px; background: #25d366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; z-index: 2000; }

/* MOBILE RESPONSIVE FIXES */
@media (max-width: 1024px) {
    .dropdown-menu.mega-menu {
        width: 100%;
        left: 0;
        right: 0;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .reviews-layout { flex-direction: column; }
    .review-summary-card { width: 100%; }
    .hero { flex-direction: column; text-align: center; }
    .hero-text, .hero-img-container { width: 100%; }
    .location-content { flex-direction: column; }
    
    .mobile-menu-btn { display: block; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 80%; height: 100vh; background: #111; flex-direction: column; transition: 0.3s; padding-top: 60px; align-items: flex-start; padding-left: 20px; }
    .nav-links.active { right: 0; }
    .mobile-close { display: block; position: absolute; top: 20px; right: 20px; color: white; font-size: 1.5rem; }
    
    /* Mobile Mega Menu Stack */
    .dropdown-menu.mega-menu {
        position: static;
        box-shadow: none;
        padding-left: 15px;
        border-left: 2px solid #333;
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
    }
    .menu-column { gap: 5px; }
    .nav-btn-item { margin-top: 1rem; }
}
/* --- Desktop Layout (PC) --- */
.hero {
    display: flex;
    align-items: center;       /* Vertically centers text and image */
    justify-content: space-between;
    gap: 40px;                 /* Space between text and image */
    padding: 60px 5%;          /* Adds breathing room around the section */
    max-width: 1200px;         /* Prevents it from stretching too wide on huge screens */
    margin: 0 auto;            /* Centers the section container */
}

.hero-text {
    flex: 1;                   /* Takes up 50% width */
}

.hero-img-container {
    flex: 1;                   /* Takes up 50% width */
    display: flex;
    justify-content: center;   /* Centers image inside its half */
}

/* --- Dynamic Image Styling --- */
.hero-img-container img {
    width: 100%;               /* Fills the container width */
    max-width: 500px;          /* Stops it from getting too massive on large screens */
    height: auto;              /* Maintains aspect ratio (no stretching) */
    border-radius: 12px;       /* Optional: Modern rounded corners */
    object-fit: cover;         /* Ensures image fills space without distortion */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Optional: Nice shadow */
}

/* --- Mobile Layout (Phone) --- */
@media (max-width: 768px) {
    .hero {
        flex-direction: column; /* Stacks text on top of image */
        text-align: center;     /* Centers text */
        padding: 40px 20px;
    }

    .hero-text {
        width: 100%;
        margin-bottom: 30px;    /* Adds space between text and image */
    }

    .hero-img-container {
        width: 100%;
    }

    .hero-img-container img {
        max-width: 100%;        /* Allows full width on mobile */
    }
    
    /* Centers the buttons on mobile */
    .btn-group {
        justify-content: center;
    }
}
/* =========================================
   MAIN FULL FOOTER
   ========================================= */
.main-footer {
    background-color: var(--primary-dark, #1a1a1a); /* Matches your dark theme */
    color: #d1d5db;
    padding-top: 4rem;
    margin-top: 4rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 3rem;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 200px; /* Ensures columns stack neatly on mobile */
}

.brand-col {
    min-width: 280px; /* Gives the brand description slightly more room */
}

.brand-col h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #9ca3af;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    font-size: 0.95rem;
}

/* Hover effect on links */
.footer-col ul li a:hover {
    color: var(--accent-color, #f59e0b);
    padding-left: 5px; 
}

/* Specific styling for the contact list to align icons with text */
.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-info li i {
    color: var(--accent-color, #f59e0b);
    margin-top: 4px;
}

/* Social Media Circles */
.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-color, #f59e0b);
    color: #1a1a1a;
    transform: translateY(-3px);
}

/* Bottom Copyright Bar */
.copyright-footer {
    background-color: #0b0f19; /* Slightly darker than main footer */
    color: #6b7280;
    text-align: center;
    padding: 1.5rem 5%;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile responsiveness for footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
}