body {
    background-image: url('dooodle.png'); 
    background-size: cover;                        
    background-position: center;                  
    background-repeat: no-repeat;                 
    background-attachment: fixed;                 
    background-color: #0b0f19;                    
    color: #f1f5f9;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    overflow-x: hidden;
}

.site-header {
    width: 100%;
    background: #ffffff;
    padding: 12px 6%; 
    position: absolute; 
    top: 0;
    left: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px; 
    margin: 0 auto;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    background: transparent;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
   text-decoration: none;
   color: #1a1a1a;
   font-weight: 600;
   font-size: 15px;
   transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a, .btn-book-call {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px; 
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 15px;
    overflow: hidden; 
    border-radius: 30px; 
    z-index: 1;
    transition: color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.link-text {
    position: relative;
    z-index: 2;
    pointer-events: none; 
}

.link-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%; 
    aspect-ratio: 1 / 1;
    background: #f27508;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.hover-target:hover .link-bg {
    transform: translate(-50%, -50%) scale(1);
}

.hover-target:hover {
    color: #ffffff; 
}

.btn-book-call {
    display: inline-flex ;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    width: auto;
    min-width: 140px; 
    height: 40px;    
    padding: 0 20px;
    border: 2px solid #ff6a00;
    border-radius: 50px;
    background: transparent;
    color: #111111;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-sizing: border-box;
}

.btn-book-call .link-bg {
    background: #f27508; 
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
}

.header-logo-img {
    height: 38px; 
    width: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-bold {
    font-size: 16px; 
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 9px; 
    color: #888888;
    text-transform: uppercase;
    margin-top: 1px;
}




.success-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 20px 80px;
}


.premium-hero {
    text-align: center;
    margin-bottom: 70px;
}

.hero-badge {
    background: rgba(255, 106, 0, 0.15);
    border: 1px solid rgba(255, 106, 0, 0.4);
    color: #ff6a00;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.premium-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    color: #111111; 
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6a00 0%, #ff7a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    color: #444446; 
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}


.stories-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-row {
    display: flex;
    background: #141519; 
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}


.graph-box {
    position: relative;
    flex: 1.2;
    min-height: 320px;
    background: #0d0e12;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.graph-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.metric-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
}

.badge-pill {
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid #34c759;
    color: #34c759;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 30px;
}

.badge-pill.orange {
    color: #ff6a00;
    border-color: #ff6a00;
}


.review-box {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-tag {
    color: #ff6a00;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.review-box h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff ; 
    margin: 0 0 16px;
}

.review-quote {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #e5e5ea ; 
    font-style: italic;
    margin: 0 0 24px;
}


.client-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.15);
    color: #ff6a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 1px solid rgba(255, 106, 0, 0.3);
}

.client-info h4 {
    font-size: 1rem;
    color: #ffffff ;
    margin: 0 0 2px;
}

.client-info span {
    font-size: 0.8rem;
    color: #a1a1aa;
}

.stars {
    margin-left: auto;
    color: #ffb100;
    font-size: 0.9rem;
}


.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}



@media (max-width: 992px) {
    .story-row {
        flex-direction: column; 
    }
    .graph-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        min-height: 260px;
    }
    .review-box {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .premium-hero h1 {
        font-size: 2.3rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .review-box h3 {
        font-size: 1.4rem;
    }
    .review-quote {
        font-size: 0.95rem;
    }
    .client-meta {
        gap: 8px;
    }
    .stars {
        font-size: 0.75rem;
    }
}



.google-reviews-section {
    margin-top: 80px;
    background: #141519;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.google-header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 28px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 20px;
}

.google-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.google-rating-summary h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-bar .score {
    font-weight: 800;
    color: #ffffff;
    font-size: 1.1rem;
}

.stars-gold {
    color: #ffb100;
    letter-spacing: 2px;
}

.rating-bar .count {
    color: #a1a1aa;
    font-size: 0.9rem;
}

.btn-google-verify {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-google-verify:hover {
    background: #ffffff;
    color: #000000;
}


.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.google-card {
    background: #0d0e12;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.google-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 106, 0, 0.4);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6a00, #ff9500);
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.reviewer-profile h4 {
    margin: 0;
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 700;
}

.review-date {
    font-size: 0.75rem;
    color: #71717a;
}

.g-check {
    font-weight: 900;
    color: #4285F4;
    background: rgba(66, 133, 244, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.card-stars {
    color: #ffb100;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.review-text {
    color: #d1d1d6;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}


@media (max-width: 992px) {
    .google-reviews-grid {
        grid-template-columns: 1fr;
    }
    .google-reviews-section {
        padding: 24px;
    }
}

.main-footer {
    background-color: #030337;
    color: #ffffff;
    padding: 80px 6% 30px 6%;
    font-family: 'Segoe UI', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    position: relative;
    clear: both;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px ;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 220px;
    text-align: left;
}

.footer-column h3 {
    font-size: 18px ;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px; 
    color: #f27508;
}

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

.footer-column ul li {
    font-size: 14px ;
    line-height: 1.6;
    margin-bottom: 12px ;
    color: #cccccc;
}

.footer-column ul li a {
    color: #cccccc; 
    text-decoration: none; 
    transition: color 0.2s ease-in-out; 
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #f27508 ; 
}

.location-bold-title {
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-brand-column{
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 320px;
}

.footer-logo-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo-img{
    height: 120px;
    width: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-logo-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-brand-title{
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-brand-subtitle{
    font-size: 16px;
    font-weight: 800;
    color: #f27508;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-bottom {
    max-width: 1400px;
    margin: 60px auto 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
}

.footer-bottom p {
    color: #888888;
    font-size: 13px ;
    margin: 0;
}

@media (max-width: 992px){
    .footer-container{
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-brand-column{
        justify-content: flex-start;
        width: 100%;
        margin-top: 20px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-visual-showcase {
        height: 520px;
    }
}

.contact-hero-wrapper {
    margin-top: 100px; 
    min-height: calc(100vh - 100px);
}

@media (max-width: 992px) {
    .site-header {
        padding: 15px 5%;
    }

    .mobile-toggle-btn,
    .mobile-close-btn {
        display: block;
    }

    /* Mobile Nav Drawer */
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%; /* Full screen width for perfect centering */
        max-width: 380px; /* Constrain width on larger mobile screens */
        height: 100vh;
        background: #ffffff;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        padding: 60px 20px 40px 20px;
        flex-direction: column;
        align-items: center; /* Centers menu items */
        transition: right 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }

    .navbar.active {
        right: 0;
    }

    /* Navigation Links Container */
    .nav-links {
        flex-direction: column;
        align-items: center; /* Center-align all main links */
        width: 100%;
        gap: 12px;
        text-align: center;
    }

    .nav-links li {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-links a.nav-link {
        width: auto;
        justify-content: center;
        text-align: center;
        padding: 10px 20px;
    }

    /* Centered Services Header Button */
    .mobile-dropdown-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        position: relative;
    }

    .mobile-arrow {
        background: transparent;
        border: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 6px;
        cursor: pointer;
        color: #1e293b;
    }

    .chevron-icon {
        transition: transform 0.3s ease;
    }

    /* Centered Dropdown Sub-menu */
    .mega-dropdown {
        position: static !important;
        transform: none !important;
        left: auto !important;
        box-shadow: none !important;
        width: 100% !important;
        max-width: 320px;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        padding: 0;
        margin: 0 auto; /* Center dropdown container */
        transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
        background: #f8fafc;
        border-radius: 14px;
        box-sizing: border-box;
    }

    /* Active Expanded State */
    .mobile-dropdown.open .mega-dropdown {
        max-height: 1200px;
        opacity: 1;
        visibility: visible;
        padding: 16px;
        margin-top: 10px;
    }

    .mobile-dropdown.open .chevron-icon {
        transform: rotate(180deg);
    }

    .mega-dropdown-container {
        flex-direction: column;
        gap: 18px;
        width: 100%;
        text-align: center;
    }

    .mega-column {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .column-title {
        text-align: center;
        width: 100%;
    }

    .service-list {
        width: 100%;
        align-items: center;
    }

    .service-item {
        justify-content: center;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .service-text {
        text-align: center;
    }

    .btn-book-call {
        width: 100%;
        max-width: 260px;
        margin-top: 15px;
    }
}

/*=============== RESPONSIVE SITE HEADER FIX ===============*/
.site-header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    box-sizing: border-box;
}

.header-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .site-header {
        padding: 15px 20px;
    }

    .header-container {
        padding: 0;
    }

    /* Force mobile navigation off-screen drawer */
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 360px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        padding: 60px 20px 40px 20px;
        flex-direction: column;
        align-items: center;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
        box-sizing: border-box;
    }

    .navbar.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
        padding: 0;
        margin: 0;
    }

    .nav-links li {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Override link text colors inside the white drawer on dark pages */
    .navbar .nav-links a.nav-link,
    .navbar .nav-links li > a {
        color: #1e293b !important;
        width: auto;
        text-align: center;
    }

    /* Centered Services Submenu */
    .mobile-dropdown-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }

    .mega-dropdown {
        position: static !important;
        transform: none !important;
        left: auto !important;
        box-shadow: none !important;
        width: 100% !important;
        max-width: 320px;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        padding: 0;
        margin: 0 auto;
        transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
        background: #f8fafc;
        border-radius: 12px;
        box-sizing: border-box;
    }

    .mobile-dropdown.open .mega-dropdown {
        max-height: 1000px;
        opacity: 1;
        visibility: visible;
        padding: 15px 10px;
        margin-top: 8px;
    }

    .mega-dropdown-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .service-item {
        justify-content: center;
        text-align: center;
    }

    .service-text strong,
    .service-text span {
        text-align: center;
    }
}