/* ==========================================================================    
   ABS Businessmen Services - Refined Typography & Background Overlay    
   ========================================================================== */     

*, *::before, *::after {
     margin: 0;     
     padding: 0;     
     box-sizing: border-box; 
}

html {     
     scroll-behavior: smooth;     
     font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;     
     font-size: 16px; 
}

body {     
     background-color: #FFFFFF;     
     color: #171717;     
     line-height: 1.6;     
     font-size: 1rem; 
}

/* Utilities & Containers */ 
.container {     
     max-width: 1300px;     
     margin: 0 auto;     
     padding: 0 14px; 
} 

.container-narrow {     
     max-width: 840px;     
     margin: 0 auto;     
     padding: 0 24px; 
} 

.gold-text {     
     background: linear-gradient(135deg, #E6CA65 0%, #D4AF37 50%, #AA7C11 100%);     
     -webkit-background-clip: text;     
     -webkit-text-fill-color: transparent; 
} 

.gold-icon {     
     color: #D4AF37; 
}

/* Floating Sidebar */ 
.floating-sidebar {     
     position: fixed;     
     right: 0;     
     top: 50%;     
     transform: translateY(-50%);     
     z-index: 1000;     
     display: flex;     
     flex-direction: column;     
     background: #0D0D0D;     
     border-left: 1px solid #262626;     
     border-top: 1px solid #262626;     
     border-bottom: 1px solid #262626;     
     border-top-left-radius: 10px;     
     border-bottom-left-radius: 10px;     
     box-shadow: 0 10px 25px rgba(0,0,0,0.5); 
} 

.floating-sidebar a {     
     padding: 14px 16px;     
     color: #D4AF37;     
     border-bottom: 1px solid #262626;     
     text-align: center;     
     transition: background 0.2s, color 0.2s;     
     font-size: 15px; 
} 

.floating-sidebar a:last-child {     
     border-bottom: none; 
} 

.floating-sidebar a:hover {     
     background: #262626;     
     color: #FFFFFF; 
}

/* Header & Navbar */ 
.site-header {     
     position: sticky;     
     top: 0;     
     z-index: 999;     
     background: #0D0D0D;     
     border-bottom: 1px solid #262626; 
} 

.nav-container {     
     max-width: 1300px;     
     margin: 0 auto;     
     padding: 0 24px;     
     height: 85px;     
     display: flex;     
     align-items: center;     
     justify-content: space-between; 
} 

.logo {          
     display: flex;          
     width: 40px;     
     height: 40px; 
} 

.desktop-nav {     
     display: flex;     
     gap: 36px; 
} 

.desktop-nav a {     
     text-decoration: none;     
     color: #D4D4D4;     
     font-size: 0.95rem;     
     font-weight: 500;     
     transition: color 0.2s; 
} 

.desktop-nav a:hover {     
     color: #D4AF37; 
} 

.call-now-btn {     
     text-decoration: none;     
     padding: 11px 22px;     
     font-size: 0.8rem;     
     font-weight: 700;     
     text-transform: uppercase;     
     letter-spacing: 1px;     
     border: 1px solid #D4AF37;     
     color: #FFFFFF;     
     border-radius: 6px;     
     transition: background 0.2s, color 0.2s; 
} 

.call-now-btn:hover {     
     background: #D4AF37;     
     color: #0D0D0D; 
} 

.menu-toggle {     
     display: none;     
     background: none;     
     border: none;     
     color: #FFFFFF;     
     font-size: 22px;     
     cursor: pointer; 
} 

.mobile-menu {     
     display: none;     
     background: #0D0D0D;     
     border-bottom: 1px solid #262626;     
     padding: 20px 24px; 
} 

.mobile-menu a {     
     display: block;     
     padding: 12px 0;     
     text-decoration: none;     
     color: #D4D4D4;     
     font-size: 1rem; 
} 

.mobile-actions {     
     display: flex;     
     gap: 12px;     
     margin-top: 15px; 
} 

.m-btn {     
     flex: 1;     
     text-align: center;     
     padding: 12px;     
     font-size: 0.85rem;     
     font-weight: 700;     
     border-radius: 6px;     
     text-decoration: none; 
} 

.m-btn.call {     
     border: 1px solid #D4AF37;     
     color: #FFFFFF; 
} 

.m-btn.whatsapp {     
     background: linear-gradient(135deg, #E6CA65 0%, #D4AF37 50%, #AA7C11 100%);     
     color: #0D0D0D; 
}

/* Hero Section with Background Overlay */ 
.hero-section {     
     position: relative;     
     padding: 90px 0;     
     background: linear-gradient(rgba(10, 10, 10, 0.88), rgba(15, 15, 15, 0.92)), url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;     
     color: #FFFFFF; 
} 

.hero-grid {     
     position: relative;     
     z-index: 2;     
     display: grid;     
     grid-template-columns: 7fr 5fr;     
     gap: 50px;     
     align-items: center; 
} 

.badge {     
     display: inline-flex;     
     align-items: center;     
     gap: 8px;     
     padding: 7px 16px;     
     background: rgba(255, 255, 255, 0.08);     
     border: 1px solid rgba(255, 255, 255, 0.15);     
     border-radius: 50px;     
     font-size: 0.75rem;     
     font-weight: 700;     
     text-transform: uppercase;     
     letter-spacing: 1.2px;     
     color: #D4AF37;     
     margin-bottom: 22px;     
     backdrop-filter: blur(5px); 
} 

.dot {     
     width: 8px;     
     height: 8px;     
     background: #D4AF37;     
     border-radius: 50%;     
     animation: pulse 1.5s infinite; 
} 

@keyframes pulse {     
     0% { opacity: 1; }     
     50% { opacity: 0.4; }     
     100% { opacity: 1; } 
} 

.hero-title {     
     font-size: 3.1rem;     
     font-weight: 900;     
     letter-spacing: -1.2px;     
     line-height: 1.12;     
     color: #FFFFFF;     
     margin-bottom: 22px; 
} 

.hero-desc {     
     font-size: 1.1rem;     
     color: #D4D4D4;     
     line-height: 1.65;     
     margin-bottom: 32px; 
} 

.trust-cards-grid {     
     display: grid;     
     grid-template-columns: repeat(3, 1fr);     
     gap: 14px;     
     margin-bottom: 28px; 
} 

.black-card-mini {     
     background: rgba(13, 13, 13, 0.9);     
     border: 1px solid #262626;     
     padding: 14px 12px;     
     border-radius: 10px;     
     display: flex;     
     align-items: center;     
     gap: 10px;     
     color: #FFFFFF;     
     font-size: 0.8rem;     
     font-weight: 300;     
     backdrop-filter: blur(5px); 
} 

.hero-contact-note {     
     font-size: 0.95rem;     
     color: #A3A3A3;     
     display: flex;     
     gap: 8px;     
     align-items: center; 
} 

.hero-contact-note a {     
     color: #D4AF37;     
     font-weight: 700;     
     text-decoration: none; 
} 

.hero-contact-note a:hover {     
     text-decoration: underline; 
}

/* Black Form Card Styling */ 
.black-form-card {     
     background: rgba(13, 13, 13, 0.95);     
     border: 1px solid #262626;     
     padding: 36px;     
     border-radius: 18px;     
     box-shadow: 0 24px 48px rgba(0,0,0,0.5);     
     position: relative;     
     color: #FFFFFF;     
     backdrop-filter: blur(10px); 
} 

.form-tag {     
     position: absolute;     
     top: -13px;     
     right: 28px;     
     background: linear-gradient(135deg, #E6CA65 0%, #D4AF37 50%, #AA7C11 100%);     
     color: #0D0D0D;     
     font-size: 0.65rem;     
     font-weight: 900;     
     text-transform: uppercase;     
     letter-spacing: 1px;     
     padding: 5px 14px;     
     border-radius: 20px; 
} 

.black-form-card h3 {     
     font-size: 1.5rem;     
     font-weight: 800;     
     margin-bottom: 8px; 
} 

.form-sub {     
     font-size: 0.85rem;     
     color: #A3A3A3;     
     margin-bottom: 24px;     
     line-height: 1.5; 
} 

.form-group {     
     margin-bottom: 18px; 
} 

.form-group label {     
     display: block;     
     font-size: 0.75rem;     
     font-weight: 700;     
     text-transform: uppercase;     
     letter-spacing: 1px;     
     color: #D4D4D4;     
     margin-bottom: 7px; 
} 

.form-group input, .form-group select {     
     width: 100%;     
     padding: 13px 16px;     
     background: #171717;     
     border: 1px solid #262626;     
     border-radius: 9px;     
     color: #FFFFFF;     
     font-size: 0.95rem;     
     outline: none;     
     transition: border-color 0.2s; 
} 

.form-group input:focus, .form-group select:focus {     
     border-color: #D4AF37; 
} 

.gold-submit-btn {     
     width: 100%;     
     padding: 15px;     
     background: linear-gradient(135deg, #E6CA65 0%, #D4AF37 50%, #AA7C11 100%);     
     border: none;     
     border-radius: 9px;     
     color: #0D0D0D;     
     font-size: 0.85rem;     
     font-weight: 800;     
     text-transform: uppercase;     
     letter-spacing: 1.2px;     
     cursor: pointer;     
     margin-top: 12px;     
     transition: opacity 0.2s; 
} 

.gold-submit-btn:hover {     
     opacity: 0.9; 
} 

.form-footer-note {     
     font-size: 0.75rem;     
     color: #737373;     
     text-align: center;     
     margin-top: 14px; 
}

/* Sections Common Heading Styles */ 
.section-title-box {     
     text-align: center;     
     max-width: 740px;     
     margin: 0 auto 56px auto; 
} 

.sub-heading {     
     font-size: 0.75rem;     
     font-weight: 800;     
     text-transform: uppercase;     
     letter-spacing: 2.5px;     
     color: #D4AF37;     
     display: block;     
     margin-bottom: 10px; 
} 

.section-title-box h2 {     
     font-size: 2.3rem;     
     font-weight: 900;     
     color: #0A0A0A;     
     letter-spacing: -0.5px; 
} 

.section-title-box p {     
     font-size: 1.05rem;     
     color: #4B5563;     
     margin-top: 12px;     
     line-height: 1.6; 
}

/* Why-Us Services Section */ 
.services-section {     
     padding: 90px 0;     
     background: #FAFAFA;     
     border-top: 1px solid #E5E5E5;     
     border-bottom: 1px solid #E5E5E5; 
} 

.services-grid {     
     display: grid;     
     grid-template-columns: repeat(3, 1fr);     
     gap: 30px;     
     max-width: 1040px;     
     margin: 0 auto; 
} 

.black-service-card {     
     background: #0D0D0D;     
     border: 1px solid #262626;     
     padding: 36px 30px;     
     border-radius: 18px;     
     display: flex;     
     flex-direction: column;     
     color: #FFFFFF;     
     transition: border-color 0.2s; 
} 

.black-service-card:hover {     
     border-color: rgba(212, 175, 55, 0.5); 
} 

.service-icon {     
     width: 52px;     
     height: 52px;     
     background: #171717;     
     border: 1px solid #262626;     
     border-radius: 10px;     
     display: flex;     
     align-items: center;     
     justify-content: center;     
     color: #D4AF37;     
     font-size: 20px;     
     margin-bottom: 22px; 
} 

.black-service-card h3 {     
     font-size: 1.25rem;     
     font-weight: 700;     
     margin-bottom: 12px; 
} 

.black-service-card p {     
     font-size: 0.92rem;     
     color: #A3A3A3;     
     line-height: 1.65; 
}

/* Packages Section - 3 Columns on Desktop filling screen width */ 
.packages-section {     
     padding: 90px 0;     
     background: #FFFFFF; 
} 

.packages-grid {     
     display: grid;     
     grid-template-columns: repeat(3, 1fr);     
     gap: 24px;     
     width: 100%; 
} 

.black-package-card {     
     background: #0D0D0D;     
     border: 1px solid #262626;     
     padding: 36px 28px;     
     border-radius: 18px;     
     color: #FFFFFF;     
     display: flex;     
     flex-direction: column;     
     justify-content: space-between;     
     position: relative; 
} 

.popular-border {     
     border: 2px solid #D4AF37; 
} 

.popular-tag {     
     position: absolute;     
     top: -13px;     
     right: 28px;     
     background: linear-gradient(135deg, #E6CA65 0%, #D4AF37 50%, #AA7C11 100%);     
     color: #0D0D0D;     
     font-size: 0.65rem;     
     font-weight: 900;     
     text-transform: uppercase;     
     letter-spacing: 1px;     
     padding: 5px 14px;     
     border-radius: 20px; 
} 

.package-badge {     
     display: inline-block;     
     padding: 5px 14px;     
     background: #171717;     
     border: 1px solid #262626;     
     color: #D4AF37;     
     font-size: 0.75rem;     
     font-weight: 700;     
     text-transform: uppercase;     
     border-radius: 20px;     
     margin-bottom: 18px; 
} 

.package-header {     
     display: flex;     
     justify-content: space-between;     
     align-items: flex-start;     
     margin-bottom: 14px; 
} 

.package-header h3 {     
     font-size: 1.35rem;     
     font-weight: 800; 
} 

.price {     
     font-size: 1.35rem;     
     font-weight: 900;     
     color: #FFFFFF; 
} 

.package-sub {     
     font-size: 0.9rem;     
     color: #A3A3A3;     
     margin-bottom: 24px;     
     line-height: 1.6; 
} 

.package-list {     
     list-style: none;     
     margin-bottom: 30px; 
} 

.package-list li {     
     font-size: 0.9rem;     
     color: #D4D4D4;     
     margin-bottom: 12px;     
     display: flex;     
     align-items: center;     
     gap: 10px; 
} 

.package-list li i {     
     color: #D4AF37;     
     font-size: 0.85rem; 
} 

.package-btn {     
     display: block;     
     text-align: center;     
     padding: 14px;     
     border-radius: 9px;     
     text-decoration: none;     
     font-size: 0.82rem;     
     font-weight: 800;     
     text-transform: uppercase;     
     letter-spacing: 1.2px;     
     transition: all 0.2s; 
} 

.package-btn.outline {     
     border: 2px solid #D4AF37;     
     color: #FFFFFF; 
} 

.package-btn.outline:hover {     
     background: #D4AF37;     
     color: #0D0D0D; 
} 

.package-btn.solid-gold {     
     background: linear-gradient(135deg, #E6CA65 0%, #D4AF37 50%, #AA7C11 100%);     
     color: #0D0D0D; 
} 

.package-btn.solid-gold:hover {     
     opacity: 0.9; 
}

/* Reviews & Testimonials Section */ 
.reviews-section {     
     padding: 90px 0;     
     background: #171717;     
     border-top: 1px solid #262626;     
     border-bottom: 1px solid #262626;     
     color: #FFFFFF; 
} 

.reviews-section .section-title-box h2 {     
     color: #FFFFFF; 
} 

.reviews-section .section-title-box p {     
     color: #A3A3A3; 
} 

.google-reviews-grid {     
     display: grid;     
     grid-template-columns: repeat(3, 1fr);     
     gap: 24px; 
} 

.review-top {     
     display: flex;     
     justify-content: space-between;     
     align-items: center;     
     margin-bottom: 16px; 
} 

.reviewer-info {     
     display: flex;     
     align-items: center;     
     gap: 12px; 
} 

.avatar-initials {     
     width: 40px;     
     height: 40px;     
     background: #171717;     
     border: 1px solid #262626;     
     color: #D4AF37;     
     font-size: 0.85rem;     
     font-weight: 700;     
     border-radius: 50%;     
     display: flex;     
     align-items: center;     
     justify-content: center; 
} 

.reviewer-info h4 {     
     font-size: 0.95rem;     
     font-weight: 700; 
} 

.review-time {     
     font-size: 0.75rem;     
     color: #737373; 
} 

.google-icon {     
     color: #737373;     
     font-size: 15px; 
} 

.stars {     
     color: #F59E0B;     
     font-size: 0.8rem;     
     margin-bottom: 12px;     
     display: flex;     
     gap: 3px; 
}

/* FAQ Section */ 
.faq-section {     
     padding: 90px 0;     
     background: #FFFFFF; 
} 

.faq-list {     
     display: flex;     
     flex-direction: column;     
     gap: 18px; 
} 

.faq-card h3 {     
     font-size: 1.05rem;     
     font-weight: 700;     
     margin-bottom: 10px;     
     color: #FFFFFF; 
} 

.faq-card p {     
     font-size: 0.9rem;     
     color: #A3A3A3;     
     line-height: 1.6; 
}

/* Footer */ 
.site-footer {     
     background: #0D0D0D;     
     color: #A3A3A3;     
     padding: 70px 0 35px 0;     
     border-top: 1px solid #262626; 
} 

.footer-grid {     
     display: grid;     
     grid-template-columns: 2fr 1fr 1fr;     
     gap: 45px;     
     margin-bottom: 45px; 
} 

.footer-about {     
     font-size: 0.9rem;     
     line-height: 1.65;     
     max-width: 340px; 
} 

.site-footer h4 {     
     font-size: 0.8rem;     
     font-weight: 800;     
     text-transform: uppercase;     
     letter-spacing: 1.2px;     
     color: #D4AF37;     
     margin-bottom: 18px; 
} 

.footer-links {     
     list-style: none; 
} 

.footer-links li {     
     margin-bottom: 10px; 
} 

.footer-links a {     
     text-decoration: none;     
     font-size: 0.9rem;     
     color: #D4D4D4;     
     transition: color 0.2s; 
} 

.footer-links a:hover {     
     color: #D4AF37; 
} 

.footer-phone {     
     font-size: 0.9rem;     
     color: #D4D4D4;     
     margin-bottom: 18px; 
} 

.social-icons {     
     display: flex;     
     gap: 14px; 
} 

.social-icons a {     
     width: 36px;     
     height: 36px;     
     background: #171717;     
     border: 1px solid #262626;     
     border-radius: 50%;     
     display: flex;     
     align-items: center;     
     justify-content: center;     
     color: #D4D4D4;     
     font-size: 13px;     
     text-decoration: none;     
     transition: all 0.2s; 
} 

.social-icons a:hover {     
     border-color: #D4AF37;     
     color: #D4AF37; 
} 

.footer-bottom {     
     border-top: 1px solid #262626;     
     padding-top: 30px;     
     text-align: center;     
     font-size: 0.8rem;     
     color: #737373; 
}


/* Footer Logo Image Sizing */
.footer-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
}

/* Footer Map Box Container */
.footer-map-box {
    width: 100%;
    max-width: 360px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #262626;
    margin-top: 15px;
}

.footer-map-box iframe {
    width: 100%;
    height: 160px;
    display: block;
    border: 0;
}

/* Footer Bottom Flex & Legal Links Alignment */
.footer-bottom {
    border-top: 1px solid #262626;
    padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    color: #737373;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: #A3A3A3;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: #D4AF37;
}




/* =========================
   BUSINESS SETUP PROCESS
========================= */

.business-process {
    background: #0b0b0b;
    padding: 110px 30px;
    color: #ffffff;
}

.process-heading {
    max-width: 850px;
    margin: 0 auto 95px;
    text-align: center;
}

.process-heading span {
    color: #d4af37;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}

.process-heading h2 {
    margin: 14px 0 20px;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
}

.process-heading p {
    max-width: 700px;
    margin: auto;
    color: #aaaaaa;
    font-size: 17px;
    line-height: 1.8;
}


/* =========================
   TIMELINE
========================= */

.process-timeline {
    position: relative;
    max-width: 1100px;
    margin: auto;
    padding: 10px 0;
}


/* Main gold line */

.process-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent,
        #d4af37 5%,
        #d4af37 95%,
        transparent
    );
    transform: translateX(-50%);
}


/* =========================
   STEP
========================= */

.process-step {
    position: relative;
    width: 50%;
    min-height: 155px;
    padding: 25px 70px;
    display: flex;
    align-items: flex-start;
}


/* Left */

.process-step:nth-child(odd) {
    left: 0;
    text-align: right;
    justify-content: flex-end;
}


/* Right */

.process-step:nth-child(even) {
    left: 50%;
    text-align: left;
}


/* =========================
   ICON CIRCLE
========================= */

.step-icon {
    position: absolute;
    top: 22px;

    width: 64px;
    height: 64px;

    border: 2px solid #d4af37;
    border-radius: 50%;

    background: #0b0b0b;
    color: #d4af37;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 23px;

    z-index: 2;

    transition: all 0.3s ease;
}


/* Left icon */

.process-step:nth-child(odd) .step-icon {
    right: -32px;
}


/* Right icon */

.process-step:nth-child(even) .step-icon {
    left: -32px;
}


/* =========================
   CONTENT
========================= */

.step-content {
    max-width: 390px;
}

.step-content h3 {
    margin: 2px 0 12px;

    color: #ffffff;

    font-size: 24px;
    line-height: 1.35;

    font-weight: 600;
}

.step-content p {
    margin: 0;

    color: #9d9d9d;

    font-size: 16px;
    line-height: 1.75;
}


/* =========================
   NUMBER
========================= */

.step-number {
    color: #d4af37;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-right: 10px;
}


/* =========================
   HOVER
========================= */

.process-step:hover .step-icon {
    background: #d4af37;
    color: #0b0b0b;

    transform: scale(1.08);
}

.process-step:hover h3 {
    color: #d4af37;
}

.process-step:hover .step-number {
    color: #ffffff;
}


/* =========================
   LARGE DESKTOP
========================= */

@media (min-width: 1400px) {

    .process-timeline {
        max-width: 1200px;
    }

    .process-step {
        min-height: 175px;
        padding-left: 90px;
        padding-right: 90px;
    }

    .step-content {
        max-width: 440px;
    }

    .step-content h3 {
        font-size: 26px;
    }

    .step-content p {
        font-size: 17px;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 25px;
    }

    .process-step:nth-child(odd) .step-icon {
        right: -35px;
    }

    .process-step:nth-child(even) .step-icon {
        left: -35px;
    }
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .business-process {
        padding: 90px 25px;
    }

    .process-heading h2 {
        font-size: 40px;
    }

    .process-step {
        padding-left: 55px;
        padding-right: 55px;
    }

    .step-content h3 {
        font-size: 21px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .business-process {
        padding: 70px 20px;
    }

    .process-heading {
        margin-bottom: 55px;
    }

    .process-heading span {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .process-heading h2 {
        font-size: 32px;
    }

    .process-heading p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* Move timeline to left */

    .process-timeline::before {
        left: 30px;
    }


    /* All steps full width */

    .process-step,
    .process-step:nth-child(odd),
    .process-step:nth-child(even) {

        width: 100%;
        left: 0;

        min-height: auto;

        padding: 20px 10px 35px 85px;

        text-align: left;
        justify-content: flex-start;
    }


    /* Icon */

    .process-step:nth-child(odd) .step-icon,
    .process-step:nth-child(even) .step-icon {

        left: 0;
        right: auto;

        width: 60px;
        height: 60px;

        font-size: 20px;
    }


    /* Content */

    .step-content {
        max-width: 100%;
    }

    .step-content h3 {
        font-size: 20px;
        margin-top: 2px;
    }

    .step-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .step-number {
        font-size: 12px;
        margin-right: 8px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .business-process {
        padding: 60px 15px;
    }

    .process-heading h2 {
        font-size: 29px;
    }

    .process-step,
    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        padding-left: 75px;
    }

    .process-step:nth-child(odd) .step-icon,
    .process-step:nth-child(even) .step-icon {
        width: 56px;
        height: 56px;
    }

    .process-timeline::before {
        left: 28px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    .step-content p {
        font-size: 13px;
    }
}





.testimonials-section {
    padding: 90px 0;
    background: #0D0D0D;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}

.testimonials-header {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 45px;
    border-bottom: 1px solid #262626;
    padding-bottom: 20px;

}

.testimonials-subtitle {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
     /* Clean professional blue accent matching Google branding style */
    display: flex;
    justify-content: center;
    margin-bottom: 6px;
    
}

.spn{
   text-align: center;
  
}

.testimonials-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.scroll-navigation-buttons {
    display: flex;
    gap: 10px;
    padding-left: 15px;
}

.scroll-btn {
    width: 42px;
    height: 42px;
    background: #171717;
    border: 1px solid #262626;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.scroll-btn:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #0D0D0D;
}

/* Horizontal Scroll Track */
.reviews-scroll-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
    padding-bottom: 15px;
}

.reviews-scroll-track::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

/* Individual Google Review Card */
.google-review-card {
    background: #141414;
    border: 1px solid #262626;
    padding: 28px;
    border-radius: 16px;
    min-width: 30px;
    max-width: 380px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: border-color 0.2s, transform 0.2s;
}

.google-review-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.google-avatar {
    width: 44px;
    height: 44px;
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.2);
}

.reviewer-meta h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2px;
}

.reviewer-meta p {
    font-size: 0.75rem;
    color: #A3A3A3;
}

.google-colored-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    color: #F59E0B; /* Golden Star */
    font-size: 0.85rem;
    display: flex;
    gap: 3px;
}

.verified-badge {
    color: #3B82F6; /* Verified blue checkmark matching Google reference style */
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.9rem;
    color: #D4D4D4;
    line-height: 1.6;
}

.read-more {
    color: #9CA3AF;
    font-weight: 600;
    cursor: pointer;
}

.read-more:hover {
    color: #D4AF37;
}






/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .scroll-navigation-buttons {
        align-self: flex-end;
    }
    .google-review-card {
        min-width: 300px;
    }
}




/* Mobile Adjustments for Footer Bottom */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal-links {
        justify-content: center;
    }
}




/* Responsive Media Queries */ 
@keyframes fadeIn {     
     from { opacity: 0; transform: translateY(-5px); }     
     to { opacity: 1; transform: translateY(0); } 
} 

@media (max-width: 1024px) {     
     .services-grid {         
          grid-template-columns: repeat(2, 1fr);     
     }     
     .google-reviews-grid {         
          grid-template-columns: repeat(2, 1fr);     
     } 
} 

@media (max-width: 768px) {     
     .desktop-nav, .header-action {         
          display: none;     }     
     .menu-toggle {         
          display: block;     }     
     .mobile-menu.active {         
          display: block;         
          animation: fadeIn 0.3s ease forwards;     
     }     
     .hero-grid, .video-grid, .google-reviews-grid, .footer-grid {         
          grid-template-columns: 1fr;     
     }     

     /* Packages Grid set to Flex Wrap behavior on Mobile */     
     .packages-grid {         
          display: flex;         
          flex-wrap: wrap;         
          justify-content: center;         
          gap: 18px;     
     }     
     .packages-grid .black-package-card {         
          flex: 1 1 100%;         
          max-width: 100%;     }     

     .hero-title {         
          font-size: 2.3rem;     
     }     
     .floating-sidebar {         
          display: none;     }     
     .services-grid {         
          grid-template-columns: 1fr;     
     } 
}