/* 
   NO DOUBT CARGO MOVERS - Master Stylesheet
   Theme: Professional, Premium, Corporate, Trustworthy
   Colors: Primary (#0B3C91), Secondary (#FF6B00), Light (#F4F7FC)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary-color: #0B3C91;
    --primary-dark: #072a66;
    --primary-light: #e6eefc;
    --secondary-color: #FF6B00;
    --secondary-hover: #e05e00;
    --secondary-light: #fff0e6;
    --text-color: #2D3748;
    --text-light: #718096;
    --bg-white: #FFFFFF;
    --bg-light: #F4F7FC;
    --bg-dark: #0c1a30;
    --border-color: #E2E8F0;
    --success-color: #48BB78;
    
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 25px -5px rgba(11, 60, 145, 0.1), 0 10px 10px -5px rgba(11, 60, 145, 0.04);
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Base Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-bg {
    background-color: var(--bg-light);
}

.section-title-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-xl);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title span {
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    font-family: var(--font-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 8px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(11, 60, 145, 0.3);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(11, 60, 145, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Header & Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 8px 0;
    font-size: 0.85rem;
    font-family: var(--font-secondary);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-item svg {
    width: 14px;
    height: 14px;
    fill: var(--secondary-color);
}

.top-bar-socials {
    display: flex;
    gap: 15px;
}

.top-bar-socials a:hover {
    color: var(--secondary-color);
}

header {
    background-color: var(--bg-white);
    position: relative;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.03);
}

header.sticky .logo-img {
    height: 55px;
}

@media (max-width: 768px) {
    .logo-img {
        height: 48px;
    }
    header.sticky .logo-img {
        height: 45px;
    }
}

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

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

.nav-link {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Sticky Header Triggered via JS */
header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: var(--shadow-lg);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle svg {
    width: 28px;
    height: 28px;
    fill: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(11, 60, 145, 0.95) 0%, rgba(7, 42, 102, 0.9) 100%), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 80px 0 100px;
    color: var(--bg-white);
    overflow: hidden;
}

/* Dynamic grid for conversion: Headline on left, Quick Form on right */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 107, 0, 0.2);
    border: 1px solid rgba(255, 107, 0, 0.4);
    padding: 6px 16px;
    border-radius: var(--border-radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    font-family: var(--font-secondary);
}

.hero-ctas {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
}

.hero-stat-item h4 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.hero-stat-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Quote Form Container */
.quote-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    color: var(--text-color);
    animation: fadeInUp 1s ease-out;
}

.quote-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    text-align: center;
}

.quote-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 25px;
}

/* Premium Form Elements */
.form-group {
    margin-bottom: 18px;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 60, 145, 0.1);
}

.form-btn {
    width: 100%;
    margin-top: 10px;
}

/* Why Choose Us Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 30px 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    transform: rotate(360deg);
}

.feature-icon-wrapper svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-img-container {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-img-container img {
    transform: scale(1.1);
}

.service-icon-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.service-icon-badge svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.service-body {
    padding: 30px 25px 25px;
}

.service-card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card-link:hover {
    color: var(--primary-color);
}

/* Process Section */
.process-flow {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    position: relative;
    padding-top: 20px;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-step-num {
    width: 55px;
    height: 55px;
    background-color: var(--bg-white);
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.process-step:hover .process-step-num {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--bg-white);
    transform: scale(1.1);
}

.process-step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.process-step-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Connecting Dotted Line for Process */
.process-flow::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 4%;
    right: 4%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--border-color) 0, var(--border-color) 8px, transparent 8px, transparent 16px);
    z-index: 1;
}

/* Trust Stats (Counters) */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-family: var(--font-primary);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Google Reviews Summary */
.google-reviews-badge {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto 50px;
    gap: 20px;
}

.google-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.google-logo svg {
    width: 40px;
    height: 40px;
}

.google-rating-text h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 3px;
}

.google-rating-text p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.stars {
    color: #FBBF24;
    display: flex;
    gap: 2px;
}

.stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.google-rating-score {
    text-align: right;
}

.rating-num {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

/* Testimonial Slider */
.slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.testimonial-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 25px;
    font-size: 8rem;
    color: rgba(11, 60, 145, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-color);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

.user-meta h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.user-meta p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 10;
    transition: var(--transition);
}

.slider-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.slider-btn.prev {
    left: -60px;
}

.slider-btn.next {
    right: -60px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--secondary-color);
    width: 25px;
    border-radius: 5px;
}

/* FAQ Accordion */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-light);
}

.faq-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    outline: none;
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

.faq-icon {
    transition: var(--transition);
    color: var(--secondary-color);
}

.faq-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 25px;
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-body {
    padding: 0 25px 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Shared CTA Banner Section */
.cta-banner {
    background: linear-gradient(135deg, rgba(11, 60, 145, 0.95) 0%, rgba(7, 42, 102, 0.9) 100%), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
    text-align: center;
    padding: 70px 0;
}

.cta-banner-content h2 {
    font-size: 2.25rem;
    color: var(--bg-white);
    margin-bottom: 15px;
}

.cta-banner-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
}

.cta-banner-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer Section */
footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 20px;
    font-size: 0.9rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo-badge {
    background-color: var(--bg-white);
    padding: 10px 15px;
    border-radius: var(--border-radius-md);
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.footer-logo-badge img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-desc {
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-heading {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    color: var(--secondary-color);
    font-weight: bold;
    transition: var(--transition);
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    color: var(--secondary-color);
    flex-shrink: 0;
}

.footer-contact-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-contact-text h5 {
    color: var(--bg-white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: var(--bg-white);
}

/* Floating Actions & Sticky Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-whatsapp {
    left: 30px;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@keyframes pulseWhatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-controls {
    right: 30px;
}

.back-to-top {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Mobile Sticky Call Button */
.mobile-sticky-call {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-align: center;
    z-index: 998;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
}

.mobile-sticky-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
}

.mobile-sticky-call-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Breadcrumbs Section */
.breadcrumbs {
    background-color: var(--primary-light);
    padding: 15px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumbs-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
}

.breadcrumbs-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumbs-item a:hover {
    color: var(--secondary-color);
}

.breadcrumbs-item::after {
    content: '/';
    color: var(--text-light);
}

.breadcrumbs-item:last-child::after {
    display: none;
}

/* Subpage Hero Banner */
.page-banner {
    background: linear-gradient(135deg, rgba(11, 60, 145, 0.95) 0%, rgba(7, 42, 102, 0.9) 100%), url('https://images.unsplash.com/photo-1516216628859-9bccecab13ca?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: var(--bg-white);
    text-align: center;
}

.page-banner-title {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 10px;
}

.page-banner-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img-frame {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-experience-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 20px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-experience-badge h3 {
    font-size: 2rem;
    color: var(--bg-white);
    line-height: 1;
}

.about-experience-badge p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.about-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.value-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
}

.value-icon svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Service Detail Page Layout */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
}

.service-main-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-main-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1rem;
}

.service-benefits {
    margin: 40px 0;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    gap: 12px;
}

.benefit-icon {
    color: var(--success-color);
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.benefit-text h4 {
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.benefit-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--secondary-color);
}

.sidebar-services-list li {
    margin-bottom: 10px;
}

.sidebar-services-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 0.95rem;
}

.sidebar-services-list a:hover, .sidebar-services-list a.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.sidebar-contact-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.sidebar-contact-card h3 {
    color: var(--bg-white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.sidebar-contact-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.sidebar-contact-phone {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 5px;
    display: block;
}

/* Branches Page Cards */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.branch-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.branch-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.branch-icon {
    color: var(--secondary-color);
}

.branch-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.branch-name {
    font-size: 1.3rem;
    font-weight: 700;
}

.branch-detail {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.branch-detail-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.branch-detail-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.branch-cta {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.branch-cta .btn {
    flex: 1;
    padding: 10px 15px;
    font-size: 0.85rem;
}

/* Contact Page Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.contact-info-column h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-intro-text {
    color: var(--text-light);
    margin-bottom: 35px;
}

.contact-details-box {
    margin-bottom: 35px;
}

.contact-card-item {
    display: flex;
    gap: 15px;
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
}

.contact-card-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.contact-card-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-card-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-card-content a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-card-content a:hover {
    color: var(--secondary-color);
}

/* Embedded map wrapper */
.map-container {
    width: 100%;
    height: 250px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.contact-form-column {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-column h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

/* Policy Pages Layout */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 15px;
}

.policy-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.policy-content ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.policy-content li {
    margin-bottom: 8px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive Breakpoints */
@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-flow {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-flow::before {
        display: none;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar-sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .top-bar {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        gap: 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 1.15rem;
        display: block;
        width: 100%;
    }
    
    .header-btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .google-reviews-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .google-rating-score {
        text-align: center;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .mobile-sticky-call {
        display: block;
    }
    
    .floating-actions {
        bottom: 80px;
    }
    
    .floating-whatsapp {
        left: 20px;
    }
    
    .floating-controls {
        right: 20px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
}
