/* ==========================================
   DOLLAR MART - SIMPLE WEBSITE STYLES
   ========================================== */

:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --secondary: #1e3a5f;
    --accent: #f7931e;
    --dark: #0a1628;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --success: #198754;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--gray-700);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ==========================================
   HEADER
   ========================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar {
    background: var(--secondary);
    padding: 8px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
}

.contact-strip {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-strip .separator {
    margin: 0 15px;
    opacity: 0.5;
}

.social-strip {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.social-strip a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
}

.social-strip a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.main-nav {
    background: var(--white);
    padding: 10px 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    height: 40px;
    transition: transform 0.3s ease;
}

.logo-name {
    height: 25px;
    transition: transform 0.3s ease;
}

.logo-wrapper:hover .logo-icon {
    transform: rotate(-5deg) scale(1.1);
}

.logo-wrapper:hover .logo-name {
    transform: translateX(5px);
}

.navbar-nav .nav-link {
    padding: 10px 15px !important;
    font-weight: 500;
    color: var(--gray-700) !important;
    position: relative;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent), #f15a24);
    color: white !important;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 15px;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247,147,30,0.4);
    color: white;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.9), rgba(13,110,253,0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent), #f15a24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--accent), #f15a24);
    color: white;
    border-radius: 50px;
    font-weight: 600;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(247,147,30,0.5);
    color: white;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    border-radius: 50px;
    font-weight: 600;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary);
}

.hero-indicators {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* ==========================================
   SECTIONS COMMON
   ========================================== */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(13,110,253,0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.section-header {
    margin-bottom: 50px;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    padding: 100px 0;
    background: var(--light);
}

.service-card-link {
    display: block;
    text-decoration: none;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13,110,253,0.1), rgba(13,110,253,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--accent-color, var(--primary));
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    transform: scale(1.1);
}

.service-card h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-card:hover .service-link {
    gap: 10px;
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
}

.stat-number, .stat-number-text {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    display: inline;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    display: inline;
}

.stat-label {
    color: rgba(255,255,255,0.85);
    margin-top: 10px;
}

/* ==========================================
   WHY SECTION
   ========================================== */
.why-section {
    padding: 100px 0;
}

.why-image-wrapper {
    position: relative;
}

.why-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--accent), #f15a24);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(247,147,30,0.4);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-align: center;
}

.why-content {
    padding-left: 40px;
}

.why-desc {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--light);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(13,110,253,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-content h5 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.feature-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 100px 0;
    background: var(--dark);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

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

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--accent), #f15a24);
    color: white;
    border-radius: 50px;
    font-weight: 600;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(247,147,30,0.5);
    color: white;
}

/* ==========================================
   PAGE BANNER
   ========================================== */
.page-banner {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    margin-top: 100px;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.9), rgba(13,110,253,0.7));
}

.banner-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 60px 0;
}

.page-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.15);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ==========================================
   SERVICE PAGES
   ========================================== */
.service-intro {
    background: white;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: var(--light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.intro-illustration {
    padding: 20px;
}

.illustration-img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.detail-service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.detail-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13,110,253,0.1), rgba(13,110,253,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.detail-service-card:hover .service-detail-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    transform: scale(1.1);
}

.detail-service-card h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.detail-service-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li:first-child {
    border-top: none;
}

.service-features li i {
    color: var(--success);
}

/* Process Section */
.process-section {
    background: white;
}

.process-card {
    text-align: center;
    padding: 30px 20px;
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e0e0e0;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.process-card:hover .process-number {
    color: var(--primary);
}

.process-card h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.process-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Tech Stack */
.tech-section {
    background: white;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tech-badge {
    padding: 10px 24px;
    background: var(--light);
    color: var(--gray-700);
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Why Service Section */
.why-service-section {
    background: white;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.why-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-stat-box {
    text-align: center;
    padding: 30px;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.why-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.why-stat-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.why-stat-box p {
    color: var(--gray-600);
    margin: 0;
}

/* Service CTA */
.service-cta {
    background: var(--light);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 60px;
    border-radius: 20px;
}

.cta-card h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

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

.cta-card .btn-cta:hover {
    background: var(--accent);
    color: white;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-intro {
    background: white;
}

.about-image-stack .img-main {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-weight: 500;
}

.mission-card, .vision-card {
    padding: 40px;
    border-radius: 15px;
    color: white;
}

.mission-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.vision-card {
    background: linear-gradient(135deg, var(--accent), #f15a24);
}

.mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mission-card p, .vision-card p {
    opacity: 0.9;
    line-height: 1.8;
}

.stat-card-about {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stat-card-about:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.stat-card-about h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-card-about p {
    color: var(--gray-600);
    margin: 0;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section {
    background: var(--light);
}

.contact-info-wrapper h2 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.contact-intro {
    color: var(--gray-600);
    margin-bottom: 30px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-details h5 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--gray-600);
    margin: 0;
}

.social-follow h5 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

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

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-btn.facebook { background: #1877f2; }
.social-btn.linkedin { background: #0077b5; }

.social-btn:hover {
    transform: translateY(-5px);
    color: white;
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form-card h3 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
}

.contact-form-card .form-label {
    font-weight: 500;
    color: var(--gray-700);
}

.contact-form-card .form-control {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13,110,253,0.1);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13,110,253,0.3);
}

.success-message {
    text-align: center;
    padding: 60px 20px;
}

.success-message i {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 20px;
}

.success-message h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.success-message p {
    color: var(--gray-600);
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    background: var(--dark);
    position: relative;
    padding-top: 60px;
    margin-top: auto;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    color: var(--light);
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 50px;
}

.footer-content {
    padding: 60px 0 40px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    height: 40px;
}

.footer-logo-name {
    height: 25px;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-links h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-contact h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}

.footer-contact .contact-item i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}

.footer-bottom p, .footer-bottom span {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .why-content { padding-left: 0; margin-top: 40px; }
    .experience-badge { right: 10px; bottom: -20px; width: 120px; height: 120px; }
    .top-bar { display: none; }
    .page-banner { margin-top: 70px; }
    .btn-quote { margin: 15px 0 0; width: 100%; justify-content: center; }
}

@media (max-width: 767px) {
    .hero-section { padding-top: 80px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
    .stat-number, .stat-number-text { font-size: 2rem; }
    .banner-content h1 { font-size: 2rem; }
    .page-banner { min-height: 300px; }
    .contact-form-card { padding: 25px; }
    .cta-card { padding: 40px 20px; }
    .why-stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575px) {
    .contact-strip { flex-wrap: wrap; justify-content: center; }
    .contact-strip .separator { display: none; }
    .hero-indicators { bottom: 40px; }
    .section-title { font-size: 1.6rem; }
    .banner-content h1 { font-size: 1.6rem; }
}
