/* ============================================
   SOLAR LEGENDS PAKISTAN - COMPLETE STYLESHEET
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-blue: #0a1a3a;
    --navy: #0a1a3a;
    --yellow: #ffd700;
    --orange: #ff8c00;
    --golden: #daa520;
    --primary-gradient: linear-gradient(135deg, #ffd700 0%, #ff8c00 50%, #daa520 100%);
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --gray: #6c757d;
    --dark: #212529;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== NAVBAR - LIGHT BACKGROUND SO LOGO IS VISIBLE ========== */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #ffffff;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #e5e7eb;
}

.navbar.scrolled {
    padding: 0.3rem 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Section - LARGE SIZE, CLEARLY VISIBLE */
.nav-brand {
    display: flex;
    align-items: center;
}

.logo-container {
    height: 65px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Hide text completely */
.brand-text {
    display: none;
}

/* Navigation Menu - Dark text for light navbar */
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--orange);
}

/* Quote Button - Orange background */
.btn-quote {
    background: var(--orange);
    color: #ffffff !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    transition: all 0.3s !important;
    font-weight: 700;
    font-size: 0.9rem !important;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
    background: #e67e00 !important;
    color: #ffffff !important;
}

.btn-quote::after {
    display: none;
}

/* Mobile Menu */
.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1a1a2e;
    background: none;
    border: none;
}

/* ========== WHATSAPP FLOAT BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #1a1a2e;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    font-weight: 500;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    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); }
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a1a3a 0%, #0d1f44 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 85px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-badge span {
    color: var(--golden);
    font-weight: 500;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 2rem;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 500;
}

.hero-feature i {
    color: var(--golden);
}

.hero-button-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-gradient);
    color: #0a1a3a;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    gap: 15px;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid var(--golden);
    color: var(--golden);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.hero-btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: linear-gradient(135deg, #0a1a3a, #0d1f44);
    color: var(--white);
    text-align: center;
    padding: 130px 0 70px;
    margin-top: 0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ========== PROJECTS HERO ========== */
.projects-hero {
    position: relative;
    min-height: 350px;
    background: linear-gradient(135deg, #0a1a3a, #0d1f44);
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 0;
    padding-top: 85px;
}

.projects-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.projects-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.projects-hero-content h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.moving-text-container {
    overflow: hidden;
    height: 40px;
    margin: 1rem 0;
}

.moving-text {
    animation: moveText 9s infinite;
    color: var(--golden);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 40px;
}

@keyframes moveText {
    0%, 33% { transform: translateY(0); }
    34%, 66% { transform: translateY(-40px); }
    67%, 100% { transform: translateY(-80px); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .nav-menu {
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-main-title {
        font-size: 1.8rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-button-group {
        flex-direction: column;
        align-items: center;
    }
    
    .logo-container {
        height: 50px;
    }
    
    .page-header h1,
    .projects-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .nav-menu a {
        color: #1a1a2e;
    }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    color: #0a1a3a;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    font-weight: bold;
    box-shadow: var(--shadow-md);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* ========== FOOTER ========== */
.footer {
    background: #0a1a3a;
    color: var(--white);
    padding: 50px 0 20px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo .logo-container {
    height: 45px;
    width: auto;
}

.footer-logo h3 {
    font-size: 1.2rem;
    color: var(--white);
}

.footer-logo h3 span {
    color: var(--golden);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--golden);
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--golden);
}

.contact-info li {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--golden);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* ========== OTHER SECTIONS ========== */
.why-choose-us,
.expertise-section,
.best-company,
.customer-reviews,
.ready-section-wrapper {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    color: var(--orange);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #0a1a3a;
}

.wow-factors-grid,
.expertise-grid,
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.wow-factor-card,
.expertise-card,
.review-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.wow-factor-card:hover,
.expertise-card:hover,
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--golden);
}

.wow-icon,
.expertise-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wow-icon i,
.expertise-icon i {
    font-size: 1.8rem;
    color: #0a1a3a;
}

.wow-factor-card h3,
.expertise-card h3 {
    margin-bottom: 0.5rem;
    color: #0a1a3a;
}

.review-stars {
    color: var(--golden);
    margin-bottom: 1rem;
}

.review-text {
    color: var(--gray);
    margin-bottom: 1rem;
    font-style: italic;
}

.reviewer-info h4 {
    color: #0a1a3a;
    font-size: 1rem;
}

.verified-badge {
    font-size: 0.7rem;
    color: #28a745;
}

.stats-section {
    background: linear-gradient(135deg, #0a1a3a, #0d1f44);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--golden);
}

.stat-card p {
    color: var(--white);
    margin-top: 0.5rem;
}

.best-company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.benefits-list {
    margin: 1.5rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.benefit-item i {
    color: var(--orange);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.badge {
    background: rgba(255, 215, 0, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.slideshow-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.slideshow-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: none;
}

.slideshow-image.active {
    display: block;
    animation: fadeSlide 0.8s ease;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: scale(1.05); }
    to { opacity: 1; transform: scale(1); }
}

.ready-section {
    background: linear-gradient(135deg, #0a1a3a, #0d1f44);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
}

.ready-section h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.ready-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.ready-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #0a1a3a;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: #0a1a3a;
}

.average-rating {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 20px;
}

.big-rating {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
}

/* Project Categories */
.project-categories {
    padding: 30px 0;
    background: var(--light-bg);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 8px 22px;
    border: 2px solid var(--orange);
    background: transparent;
    color: var(--orange);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.category-btn.active,
.category-btn:hover {
    background: var(--orange);
    color: var(--white);
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: 40px 0;
}

.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    position: relative;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--orange);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.project-details {
    padding: 1rem;
}

.project-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #0a1a3a;
}

.project-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.project-info-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--gray);
}

.project-info-item i {
    color: var(--orange);
    font-size: 0.7rem;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-box,
.contact-info-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--orange);
    width: 35px;
}

.contact-item h4 {
    color: #0a1a3a;
    margin-bottom: 0.25rem;
}

/* Quote Page */
.quote-section {
    padding: 60px 0;
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.quote-form-box,
.quote-info-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* About Page Tabs */
.about-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: -25px;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 10px 28px;
    background: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.tab-btn.active {
    background: var(--orange);
    color: var(--white);
}

.tab-content {
    display: none;
}

.tab-content.active-tab {
    display: block;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2,
.about-text h3 {
    color: #0a1a3a;
    margin-bottom: 1rem;
}

.stats-mini {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-mini span {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
}

.values-grid,
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card,
.achievement-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.value-card i,
.achievement-card i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.ceo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.ceo-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--orange);
    border-left: 3px solid var(--orange);
    padding-left: 1rem;
    margin: 1.5rem 0;
}

.ceo-signature {
    margin-top: 1.5rem;
    font-family: cursive;
    font-size: 1.1rem;
}

.ceo-img-container {
    position: relative;
}

.ceo-img-container img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.ceo-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--orange);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
}

.quote-result {
    margin-top: 2rem;
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
}

.quote-preview {
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
}

.quote-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--orange);
}

.quote-title {
    text-align: center;
    margin: 1rem 0;
}

.quote-title h2 {
    color: var(--orange);
    font-size: 1.3rem;
}

.quote-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.9rem;
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

.trust-item i {
    color: var(--golden);
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-right {
        order: -1;
    }
    
    .savings-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .live-savings {
        display: none;
    }
}


/* Section Separation - Fix Merging Issue */
.why-choose-us {
    padding: 80px 0 60px 0;
    background: #ffffff;
    border-bottom: 2px solid #e5e7eb;
}

.expertise-section {
    padding: 60px 0 80px 0;
    background: #f8f9fa;
    border-top: 2px solid #e5e7eb;
    border-bottom: 2px solid #e5e7eb;
}

/* Card enhancements */
.wow-factor-card,
.expertise-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.wow-factor-card:hover,
.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #ff8c00;
}

/* Grid spacing */
.wow-factors-grid,
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}