/* Updated Header Styles for CementKart */

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 80px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.floating-btn i {
    font-size: 22px;
    color: #FFFFFF;
}

.floating-call {
    background: #E31E24;
}

.floating-call:hover {
    background: #C8181D;
}

.floating-quote {
    background: #E31E24;
}

.floating-quote:hover {
    background: #C8181D;
}

.floating-whatsapp {
    background: #25D366;
}

.floating-whatsapp:hover {
    background: #1ebc5a;
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 80px;
        right: 16px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-btn i {
        font-size: 20px;
    }
}

/* Enhanced Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 2rem;
    color: #DC2626;
    margin-right: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h2 {
    color: #DC2626;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.trust-line {
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0;
    line-height: 1;
}

/* Updated Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 8px 4px;
}

.nav-menu a:hover {
    color: #DC2626;
}

/* Updated CTA Section */
.cta-buttons-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.cta-text {
    margin-bottom: 0.25rem;
}

.micro-text {
    font-size: 0.7rem;
    color: #6b7280;
    font-style: italic;
    margin: 0;
    white-space: nowrap;
}

/* Primary CTA Button - Get Bulk Quote (Desktop Specs) */
.btn-cta-primary {
    background: #E31E24;
    color: #FFFFFF;
    border: none;
    padding: 0 22px;
    height: 44px;
    min-width: 160px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-cta-primary:hover {
    background: #C8181D;
}

.btn-cta-primary:active {
    transform: scale(0.98);
}

.btn-cta-primary i {
    font-size: 14px;
}

/* Header Phone Display */
.header-phone {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2px;
    letter-spacing: 0.3px;
}

/* Secondary CTA Button - Call for Bulk Price (Desktop Specs) */

.btn-cta-secondary {
    background: transparent;
    color: #E31E24;
    border: 1.5px solid #E31E24;
    padding: 0 20px;
    height: 44px;
    min-width: 180px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-cta-secondary:hover {
    background: #E31E24;
    color: #FFFFFF;
}

.btn-cta-secondary:active {
    transform: scale(0.98);
}

.btn-cta-secondary i {
    font-size: 14px;
}

/* Mobile Responsive Updates */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    /* Tablet button specs */
    .btn-cta-primary {
        height: 42px;
        padding: 0 18px;
        font-size: 13.5px;
        min-width: 150px;
    }
    
    .btn-cta-secondary {
        height: 42px;
        padding: 0 18px;
        font-size: 13.5px;
        min-width: 170px;
    }
    
    .cta-buttons-row {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .header {
        height: 56px;
        background: #FFFFFF;
        border-bottom: 1px solid #EEE;
    }
    
    .nav-container {
        flex-direction: row;
        padding: 0 14px;
        height: 56px;
        gap: 0;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
        background: white;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    /* Mobile logo styling */
    .logo {
        align-self: center;
    }
    
    .logo-name {
        font-size: 18px;
        font-weight: 700;
        color: #2E2E2E;
    }
    
    .logo-kart {
        color: #E31E24;
    }
    
    .logo-tagline {
        display: none;
    }
    
    /* Hide ALL CTA buttons in mobile header */
    .nav-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        top: auto;
        right: auto;
        width: 22px;
        height: 16px;
        padding: 0;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: #2E2E2E;
        border-radius: 1px;
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 480px) {
    .logo-text h2 {
        font-size: 1.5rem;
    }
    
    .trust-line {
        font-size: 0.7rem;
    }
    
    .nav-container {
        padding: 0.5rem 12px;
    }
    
    .btn-cta-primary {
        height: 38px;
        padding: 0 14px;
        font-size: 12px;
    }
    
    .cta-buttons-row {
        gap: 6px;
    }
}

/* ================================
   MOBILE STICKY BOTTOM CTA BAR
   ================================ */

.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: #FFFFFF;
    border-top: 1px solid #EEE;
    padding: 10px 12px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.sticky-mobile-cta.visible {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

/* Call Button - Left */
.sticky-mobile-cta .btn-sticky-call {
    flex: 1;
    height: 44px;
    background: #FFFFFF;
    color: #374151;
    border: 1.5px solid #D1D5DB;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
}

.sticky-mobile-cta .btn-sticky-call i {
    font-size: 16px;
    color: #E31E24;
}

.sticky-mobile-cta .btn-sticky-call:hover {
    background: #F9FAFB;
    border-color: #E31E24;
}

.sticky-mobile-cta .btn-sticky-call:active {
    transform: scale(0.98);
}

/* Quote Button - Center (Primary) */
.sticky-mobile-cta .btn-sticky-quote {
    flex: 1.2;
    height: 44px;
    background: #E31E24;
    color: #FFFFFF;
    border: none;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.sticky-mobile-cta .btn-sticky-quote i {
    font-size: 16px;
}

.sticky-mobile-cta .btn-sticky-quote:hover {
    background: #C8181D;
}

.sticky-mobile-cta .btn-sticky-quote:active {
    transform: scale(0.98);
}

/* WhatsApp Button - Right */
.sticky-mobile-cta .btn-sticky-whatsapp {
    flex: 1;
    height: 44px;
    background: #25D366;
    color: #FFFFFF;
    border: none;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
}

.sticky-mobile-cta .btn-sticky-whatsapp i {
    font-size: 18px;
}

.sticky-mobile-cta .btn-sticky-whatsapp:hover {
    background: #128C7E;
}

.sticky-mobile-cta .btn-sticky-whatsapp:active {
    transform: scale(0.98);
}

/* Show sticky bar on mobile only */
@media (max-width: 768px) {
    /* Add padding to body to prevent content from being hidden behind sticky bar */
    body {
        padding-bottom: 64px;
    }
}

/* ================================
   FLOATING CALL BUTTON
   ================================ */

.floating-call-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #E31E24;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-call-btn:hover {
    background: #C8181D;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(227, 30, 36, 0.5);
}

.floating-call-btn i {
    font-size: 22px;
}

@media (max-width: 768px) {
    .floating-call-btn {
        bottom: 80px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
    
    .floating-call-btn i {
        font-size: 20px;
    }
}

/* ================================
   HERO SECTION STYLES
   ================================ */

.hero-trust-line {
    margin-top: 24px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .hero-trust-line {
        font-size: 0.75rem;
        margin-top: 18px;
    }
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/herobanner.webp') center/cover no-repeat;
    transform: scale(1.05);
    transition: transform 0.8s ease;
    z-index: 0;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 140px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #e5e7eb;
    margin: 0;
    line-height: 1.4;
}

.hero-subtext {
    font-size: 1.1rem;
    color: #d1d5db;
    margin: 0;
    max-width: 700px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Primary Hero Button */
.btn-hero-primary {
    background: #DC2626;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn-hero-primary:hover {
    background: #b91c1c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
}

/* Secondary Hero Button */
.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-secondary:hover {
    background: white;
    color: #DC2626;
    border-color: white;
    transform: translateY(-3px);
}

.btn-hero-primary i,
.btn-hero-secondary i {
    font-size: 1.1rem;
}

/* Responsive Hero Styles */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .hero-subtext {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        height: auto;
        padding: 100px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 1.15rem;
    }
    
    .hero-subtext {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 26px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 1rem;
    }
    
    .hero-subtext {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 0 20px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* Sticky header enhancements */
.header {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

/* Tap-to-call button for mobile */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #DC2626;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.6);
}

@media (max-width: 768px) {
    .mobile-call-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ================================
   TRUST STRIP SECTION
   ================================ */

.trust-strip {
    background: #f9fafb;
    padding: 50px 20px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.trust-strip-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
    background: #DC2626;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.trust-icon i {
    font-size: 1.5rem;
    color: #DC2626;
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon i {
    color: white;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.trust-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.2;
}

/* Mobile Responsive for Trust Strip */
@media (max-width: 1024px) {
    .trust-strip {
        padding: 40px 20px;
    }
    
    .trust-icon {
        width: 50px;
        height: 50px;
    }
    
    .trust-icon i {
        font-size: 1.3rem;
    }
    
    .trust-number {
        font-size: 1rem;
    }
    
    .trust-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .trust-strip-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .trust-item {
        padding: 15px;
    }
    
    .trust-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }
    
    .trust-icon i {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .trust-strip {
        padding: 35px 15px;
    }
    
    .trust-strip-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .trust-item {
        padding: 10px;
    }
    
    .trust-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }
    
    .trust-icon i {
        font-size: 1.2rem;
    }
    
    .trust-number {
        font-size: 0.95rem;
    }
    
    .trust-label {
        font-size: 0.8rem;
    }
}

/* ==============================
   PRODUCTS SECTION STYLES
   ============================== */

.products-section {
    background: #f9fafb;
    padding: 80px 20px;
}

.products-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.products-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.products-header p {
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Info Strip */
.products-info-strip {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    padding: 16px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 auto 50px;
    max-width: 800px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.products-info-strip span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
}

.strip-divider {
    color: #d1d5db !important;
    font-weight: 400 !important;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    background: #f3f4f6;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.brand-name {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
}

.rating {
    color: #facc15;
    font-size: 1rem;
    letter-spacing: 2px;
}

.weight {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.price-section {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 5px 0;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #DC2626;
}

.original-price {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.disclaimer {
    font-size: 0.75rem;
    color: #9ca3af;
    font-style: italic;
    margin: 0;
}

.usage-desc {
    font-size: 0.9rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.4;
}

/* Product Actions - CTA Buttons */
.product-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 15px;
}

.btn-call-primary {
    flex: 1.3;
    background: #DC2626;
    color: white;
    border: none;
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-call-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.btn-view-details {
    flex: 1;
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-view-details:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    transform: translateY(-2px);
}

/* Responsive Products */
@media (max-width: 1024px) {
    .products-section {
        padding: 60px 20px;
    }
    
    .products-header h1 {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 50px 15px;
    }
    
    .products-header h1 {
        font-size: 1.8rem;
    }
    
    .products-header p {
        font-size: 1rem;
    }
    
    .products-info-strip {
        flex-wrap: wrap;
        gap: 12px;
        padding: 14px 20px;
        border-radius: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-info {
        padding: 18px;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .current-price {
        font-size: 1.3rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-call-primary,
    .btn-view-details {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 40px 12px;
    }
    
    .products-header {
        margin-bottom: 25px;
    }
    
    .products-header h1 {
        font-size: 1.5rem;
    }
    
    .products-header p {
        font-size: 0.9rem;
    }
    
    .products-info-strip {
        margin-bottom: 30px;
        padding: 12px 16px;
    }
    
    .products-info-strip span {
        font-size: 0.85rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .product-image {
        height: 160px;
        padding: 20px;
    }
    
    .product-info {
        padding: 16px;
    }
    
    .product-name {
        font-size: 1.05rem;
    }
    
    .brand-name {
        font-size: 0.9rem;
    }
    
    .current-price {
        font-size: 1.2rem;
    }
    
    .usage-desc {
        font-size: 0.85rem;
    }
    
    .btn-call-primary,
    .btn-view-details {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
}

/* ==============================
   ABOUT SECTION STYLES
   ============================== */

.about-section {
    background: white;
    padding: 100px 20px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.about-header p {
    font-size: 1.15rem;
    color: #6b7280;
    margin: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Side - Text Content */
.about-text {
    max-width: 550px;
}

.about-block {
    margin-bottom: 35px;
}

.about-block:last-child {
    margin-bottom: 0;
}

.about-cta {
    margin-top: 25px;
    text-align: left;
}

.btn-about-cta {
    background: #DC2626;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-about-cta:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.cta-subtext {
    margin: 10px 0 0 0;
    font-size: 0.85rem;
    color: #9ca3af;
}

.about-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.about-block p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Bullet List */
.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bullet-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.5;
}

.bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #DC2626;
    border-radius: 50%;
}

/* Right Side - Stats & Image */
.about-stats-container {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.about-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.image-caption {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
    padding: 0 15px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #DC2626;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: #fef2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.stat-icon i {
    font-size: 1.2rem;
    color: #DC2626;
}

.stat-card:hover .stat-icon {
    background: #DC2626;
}

.stat-card:hover .stat-icon i {
    color: white;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Responsive About Section */
@media (max-width: 1024px) {
    .about-section {
        padding: 80px 20px;
    }
    
    .about-header h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-text {
        max-width: 100%;
    }
    
    .about-image img {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 15px;
    }
    
    .about-header {
        margin-bottom: 40px;
    }
    
    .about-header h2 {
        font-size: 1.8rem;
    }
    
    .about-header p {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        order: 1;
    }
    
    .about-stats-container {
        order: 0;
    }
    
    .about-block {
        margin-bottom: 25px;
    }
    
    .about-block h3 {
        font-size: 1.15rem;
    }
    
    .about-image {
        margin-bottom: 20px;
    }
    
    .about-image img {
        height: 200px;
    }
    
    .image-caption {
        font-size: 0.8rem;
        bottom: 10px;
    }
    
    .stats-grid {
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .about-cta {
        margin-top: 20px;
        text-align: center;
    }
    
    .btn-about-cta {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 50px 12px;
    }
    
    .about-header {
        margin-bottom: 30px;
    }
    
    .about-header h2 {
        font-size: 1.5rem;
    }
    
    .about-header p {
        font-size: 0.9rem;
    }
    
    .about-block {
        margin-bottom: 20px;
    }
    
    .about-block h3 {
        font-size: 1.05rem;
    }
    
    .about-block p {
        font-size: 0.9rem;
    }
    
    .bullet-list li {
        font-size: 0.9rem;
        padding-left: 20px;
    }
    
    .bullet-list li::before {
        top: 6px;
        width: 6px;
        height: 6px;
    }
    
    .about-image img {
        height: 180px;
        border-radius: 12px;
    }
    
    .image-caption {
        font-size: 0.75rem;
        padding: 0 10px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stat-card {
        padding: 16px;
        border-radius: 10px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    
    .stat-icon i {
        font-size: 1rem;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .about-cta {
        margin-top: 20px;
    }
    
    .btn-about-cta {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .cta-subtext {
        font-size: 0.8rem;
    }
}

/* ==============================
   HOW IT WORKS SECTION STYLES
   ============================== */

.how-it-works-section {
    background: #f9fafb;
    padding: 100px 20px;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-it-works-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.how-it-works-header p {
    font-size: 1.15rem;
    color: #6b7280;
    margin: 0;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

/* Step Card */
.step-card {
    background: white;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.step-connector {
    position: absolute;
    top: 60px;
    right: -14px;
    width: 14px;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        #d1d5db 0px,
        #d1d5db 4px,
        transparent 4px,
        transparent 8px
    );
    z-index: 1;
}

.step-card:last-child .step-connector {
    display: none;
}

.trust-micro-line {
    margin-top: 12px !important;
    font-size: 0.8rem !important;
    color: #059669 !important;
    font-weight: 500;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 72px;
    height: 72px;
    background: #fef2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: #DC2626;
    transform: scale(1.1);
}

.step-icon i {
    font-size: 1.8rem;
    color: #DC2626;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon i {
    color: white;
}

.step-content {
    text-align: center;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.step-content p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.step-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    background: #DC2626;
    color: white;
}

/* CTA Section */
.how-it-works-cta {
    text-align: center;
}

.btn-steps-cta {
    background: #DC2626;
    color: white;
    border: none;
    padding: 18px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-steps-cta:hover {
    background: #b91c1c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.cta-micro-text {
    margin: 16px 0 0 0;
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Responsive How It Works */
@media (max-width: 1024px) {
    .how-it-works-section {
        padding: 80px 20px;
    }
    
    .how-it-works-header h2 {
        font-size: 2.2rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .step-card {
        padding: 24px 20px;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 15px;
    }
    
    .how-it-works-header {
        margin-bottom: 40px;
    }
    
    .how-it-works-header h2 {
        font-size: 1.8rem;
    }
    
    .how-it-works-header p {
        font-size: 1rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .step-card {
        padding: 20px 16px;
        border-radius: 12px;
    }
    
    .step-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }
    
    .step-icon i {
        font-size: 1.4rem;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
        top: 12px;
        right: 12px;
    }
    
    .btn-steps-cta {
        padding: 16px 40px;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .how-it-works-section {
        padding: 50px 12px;
    }
    
    .how-it-works-header {
        margin-bottom: 30px;
    }
    
    .how-it-works-header h2 {
        font-size: 1.5rem;
    }
    
    .how-it-works-header p {
        font-size: 0.9rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 30px;
    }
    
    .step-card {
        padding: 20px;
        display: flex;
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 16px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .step-icon i {
        font-size: 1.2rem;
    }
    
    .step-content {
        text-align: left;
        flex: 1;
    }
    
    .step-content h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .step-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .step-number {
        position: static;
        width: 22px;
        height: 22px;
        flex-shrink: 0;
        margin-left: auto;
    }
    
    .btn-steps-cta {
        width: 100%;
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .cta-micro-text {
        font-size: 0.8rem;
    }
}

/* ==============================
   INSTANT QUOTE SECTION STYLES
   ============================== */

.instant-quote-section {
    background: #f9fafb;
    padding: 80px 20px;
}

.instant-quote-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.quote-header {
    margin-bottom: 40px;
}

.quote-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.quote-header p {
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0;
}

/* Form Styles */
.quote-form {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    color: #1f2937;
    background: #f9fafb;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #DC2626;
    background: white;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.form-group input::placeholder {
    color: #9ca3af;
}

.btn-quote-submit {
    width: 100%;
    background: #DC2626;
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-quote-submit:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

/* Trust Section */
.quote-trust {
    margin-top: 24px;
}

.response-time {
    font-size: 0.9rem;
    color: #059669;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.trust-badges {
    font-size: 0.85rem;
    color: #9ca3af;
    margin: 0;
}

/* Responsive Instant Quote */
@media (max-width: 768px) {
    .instant-quote-section {
        padding: 60px 15px;
    }
    
    .quote-header h2 {
        font-size: 1.8rem;
    }
    
    .quote-header p {
        font-size: 1rem;
    }
    
    .quote-form {
        padding: 30px 24px;
        border-radius: 12px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-group input {
        padding: 14px 18px;
        font-size: 1rem;
    }
    
    .btn-quote-submit {
        padding: 16px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .instant-quote-section {
        padding: 50px 12px;
    }
    
    .quote-header {
        margin-bottom: 30px;
    }
    
    .quote-header h2 {
        font-size: 1.5rem;
    }
    
    .quote-header p {
        font-size: 0.9rem;
    }
    
    .quote-form {
        padding: 24px 20px;
    }
    
    .form-group input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .btn-quote-submit {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .response-time {
        font-size: 0.85rem;
    }
    
    .trust-badges {
        font-size: 0.8rem;
    }
}

/* ==============================
   WHY CHOOSE SECTION STYLES
   ============================== */

.why-choose-section {
    background: #f9fafb;
    padding: 100px 20px;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.why-choose-header p {
    font-size: 1.15rem;
    color: #6b7280;
    margin: 0;
}

/* Why Choose Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

/* Choose Card */
.choose-card {
    background: white;
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.choose-icon {
    width: 64px;
    height: 64px;
    background: #fef2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.choose-card:hover .choose-icon {
    background: #DC2626;
    transform: scale(1.1);
}

.choose-icon i {
    font-size: 1.6rem;
    color: #DC2626;
    transition: all 0.3s ease;
}

.choose-card:hover .choose-icon i {
    color: white;
}

.choose-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.choose-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* CTA Button */
.why-choose-cta {
    text-align: center;
}

.btn-choose-cta {
    background: #DC2626;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-choose-cta:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

/* Responsive Why Choose */
@media (max-width: 1024px) {
    .why-choose-section {
        padding: 80px 20px;
    }
    
    .why-choose-header h2 {
        font-size: 2.2rem;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .choose-card {
        padding: 28px 24px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 15px;
    }
    
    .why-choose-header {
        margin-bottom: 40px;
    }
    
    .why-choose-header h2 {
        font-size: 1.8rem;
    }
    
    .why-choose-header p {
        font-size: 1rem;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 35px;
    }
    
    .choose-card {
        padding: 24px 20px;
        border-radius: 12px;
    }
    
    .choose-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }
    
    .choose-icon i {
        font-size: 1.4rem;
    }
    
    .choose-card h3 {
        font-size: 1.05rem;
    }
    
    .choose-card p {
        font-size: 0.9rem;
    }
    
    .btn-choose-cta {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 50px 12px;
    }
    
    .why-choose-header {
        margin-bottom: 30px;
    }
    
    .why-choose-header h2 {
        font-size: 1.5rem;
    }
    
    .why-choose-header p {
        font-size: 0.9rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 28px;
    }
    
    .choose-card {
        padding: 20px;
    }
    
    .choose-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 14px;
    }
    
    .choose-icon i {
        font-size: 1.2rem;
    }
    
    .choose-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .choose-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .btn-choose-cta {
        width: 100%;
        max-width: 300px;
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* ==============================
   CEMENT CATEGORIES SECTION
   ============================== */

.cement-categories-section {
    background: white;
    padding: 100px 20px;
}

.cement-categories-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cement-categories-header {
    text-align: center;
    margin-bottom: 50px;
}

.cement-categories-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.cement-categories-header p {
    font-size: 1.15rem;
    color: #6b7280;
    margin: 0;
}

/* Categories Grid */
.cement-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* Category Card */
.category-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 0 0 28px 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Category Image */
.category-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    margin-bottom: 20px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-header,
.category-desc,
.category-grades,
.category-brands,
.btn-category-cta {
    padding: 0 24px;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #DC2626;
}

.category-card-special {
    background: linear-gradient(135deg, #fef2f2 0%, #fff 100%);
    border-color: #fecaca;
}

.category-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.category-icon {
    width: 52px;
    height: 52px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.category-icon i {
    font-size: 1.4rem;
    color: #DC2626;
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.category-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 16px 0;
    flex: 1;
}

/* Grades Tags */
.category-grades {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.grade-tag {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
}

/* Brands */
.category-brands {
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.brands-label {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brands-list {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
    margin: 0;
}

/* Highlights */
.category-highlights {
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid #fecaca;
}

.category-highlights p {
    font-size: 0.9rem;
    color: #059669;
    font-weight: 500;
    margin: 0 0 6px 0;
}

/* CTA Button */
.btn-category-cta {
    width: 100%;
    background: #DC2626;
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-category-cta:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.btn-category-special {
    background: #1f2937;
}

.btn-category-special:hover {
    background: #374151;
}

/* Trust Note */
.category-trust-note {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.category-trust-note p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .cement-categories-section {
        padding: 80px 20px;
    }
    
    .cement-categories-header h2 {
        font-size: 2.2rem;
    }
    
    .cement-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .cement-categories-section {
        padding: 60px 15px;
    }
    
    .cement-categories-header {
        margin-bottom: 35px;
    }
    
    .cement-categories-header h2 {
        font-size: 1.8rem;
    }
    
    .cement-categories-header p {
        font-size: 1rem;
    }
    
    .cement-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 30px;
    }
    
    .category-card {
        padding: 0 0 20px 0;
        border-radius: 12px;
    }
    
    .category-image {
        height: 120px;
    }
    
    .category-header,
    .category-desc,
    .category-grades,
    .category-brands,
    .btn-category-cta {
        padding: 0 16px;
    }
    
    .category-icon {
        width: 46px;
        height: 46px;
    }
    
    .category-icon i {
        font-size: 1.2rem;
    }
    
    .category-card h3 {
        font-size: 1rem;
    }
    
    .category-desc {
        font-size: 0.85rem;
    }
    
    .btn-category-cta {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cement-categories-section {
        padding: 50px 12px;
    }
    
    .cement-categories-header {
        margin-bottom: 28px;
    }
    
    .cement-categories-header h2 {
        font-size: 1.5rem;
    }
    
    .cement-categories-header p {
        font-size: 0.9rem;
    }
    
    .cement-categories-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 24px;
    }
    
    .category-card {
        padding: 0 0 20px 0;
    }
    
    .category-image {
        height: 140px;
    }
    
    .category-header,
    .category-desc,
    .category-grades,
    .category-brands,
    .btn-category-cta {
        padding: 0 20px;
    }
    
    .category-icon {
        width: 44px;
        height: 44px;
    }
    
    .category-icon i {
        font-size: 1.1rem;
    }
    
    .category-card h3 {
        font-size: 0.95rem;
    }
    
    .category-desc {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .category-grades {
        margin-bottom: 12px;
    }
    
    .category-brands {
        margin-bottom: 12px;
        padding-top: 12px;
    }
    
    .category-highlights {
        margin-bottom: 16px;
        padding-top: 12px;
    }
    
    .btn-category-cta {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .category-trust-note p {
        font-size: 0.85rem;
    }
}

/* ==============================
   FAQ SECTION STYLES
   ============================== */

.faq-section {
    background: white;
    padding: 100px 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.faq-header p {
    font-size: 1.15rem;
    color: #6b7280;
    margin: 0;
}

/* FAQ List */
.faq-list {
    margin-bottom: 50px;
}

/* FAQ Item */
.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #DC2626;
}

.faq-item.active {
    border-color: #DC2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

/* FAQ Question */
.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: #f9fafb;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-item.active .faq-question {
    background: #DC2626;
    color: white;
}

.faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    padding-right: 16px;
    line-height: 1.4;
}

.faq-item.active .faq-question span {
    color: white;
}

.faq-question i {
    font-size: 1rem;
    color: #6b7280;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    color: white;
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px 24px;
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

/* CTA Strip */
.faq-cta-strip {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 40px;
    text-align: center;
}

.faq-cta-strip p {
    font-size: 1.1rem;
    color: #1f2937;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.btn-faq-cta {
    background: #DC2626;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-faq-cta:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 15px;
    }
    
    .faq-header {
        margin-bottom: 35px;
    }
    
    .faq-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-header p {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-question span {
        font-size: 0.95rem;
        padding-right: 12px;
    }
    
    .faq-question i {
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        padding: 16px 20px;
        font-size: 0.9rem;
    }
    
    .faq-cta-strip {
        padding: 24px 20px;
        border-radius: 12px;
    }
    
    .faq-cta-strip p {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .btn-faq-cta {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 50px 12px;
    }
    
    .faq-header {
        margin-bottom: 28px;
    }
    
    .faq-header h2 {
        font-size: 1.5rem;
    }
    
    .faq-header p {
        font-size: 0.9rem;
    }
    
    .faq-list {
        margin-bottom: 30px;
    }
    
    .faq-item {
        border-radius: 10px;
        margin-bottom: 10px;
    }
    
    .faq-question {
        padding: 14px 16px;
    }
    
    .faq-question span {
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        padding: 14px 16px;
        font-size: 0.85rem;
    }
    
    .faq-cta-strip {
        padding: 20px 16px;
    }
    
    .faq-cta-strip p {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }
    
    .btn-faq-cta {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* ==============================
   TRUST SECTION STYLES
   ============================== */

.trust-section {
    background: #f9fafb;
    padding: 100px 20px;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.trust-header p {
    font-size: 1.15rem;
    color: #6b7280;
    margin: 0;
}

/* Trust Cards Grid */
.trust-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.trust-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #DC2626;
}

.trust-card-icon {
    width: 64px;
    height: 64px;
    background: #fef2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.trust-card-icon i {
    font-size: 1.5rem;
    color: #DC2626;
    transition: all 0.3s ease;
}

.trust-card:hover .trust-card-icon {
    background: #DC2626;
}

.trust-card:hover .trust-card-icon i {
    color: white;
}

.trust-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.trust-card p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* Trust Stats Strip */
.trust-stats-strip {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
}

.trust-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-stat-item i {
    font-size: 1.2rem;
    color: #DC2626;
}

.trust-stat-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

/* CTA Section */
.trust-cta {
    text-align: center;
}

.trust-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.btn-trust-cta {
    background: #DC2626;
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-trust-cta:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

/* Responsive Trust Section */
@media (max-width: 1024px) {
    .trust-section {
        padding: 80px 20px;
    }
    
    .trust-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .trust-stats-strip {
        flex-wrap: wrap;
        gap: 30px;
        padding: 24px 30px;
    }
    
    .trust-stat-item {
        gap: 10px;
    }
    
    .trust-stat-item span {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 60px 15px;
    }
    
    .trust-header {
        margin-bottom: 40px;
    }
    
    .trust-header h2 {
        font-size: 1.8rem;
    }
    
    .trust-header p {
        font-size: 1rem;
    }
    
    .trust-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 30px;
    }
    
    .trust-card {
        padding: 24px 20px;
        border-radius: 12px;
    }
    
    .trust-card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }
    
    .trust-card-icon i {
        font-size: 1.3rem;
    }
    
    .trust-card h3 {
        font-size: 1.1rem;
    }
    
    .trust-card p {
        font-size: 0.9rem;
    }
    
    .trust-stats-strip {
        flex-direction: column;
        gap: 20px;
        padding: 20px 24px;
        border-radius: 12px;
    }
    
    .trust-stat-item {
        width: 100%;
        justify-content: center;
    }
    
    .trust-cta h3 {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }
    
    .btn-trust-cta {
        padding: 14px 36px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .trust-section {
        padding: 50px 12px;
    }
    
    .trust-header {
        margin-bottom: 30px;
    }
    
    .trust-header h2 {
        font-size: 1.5rem;
    }
    
    .trust-header p {
        font-size: 0.9rem;
    }
    
    .trust-card {
        padding: 20px 16px;
    }
    
    .trust-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }
    
    .trust-card-icon i {
        font-size: 1.1rem;
    }
    
    .trust-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .trust-card p {
        font-size: 0.85rem;
    }
    
    .trust-stats-strip {
        padding: 16px 20px;
        gap: 16px;
    }
    
    .trust-stat-item i {
        font-size: 1rem;
    }
    
    .trust-stat-item span {
        font-size: 0.85rem;
    }
    
    .trust-cta h3 {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }
    
    .btn-trust-cta {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* ==============================
   TEXT LOGO STYLES
   ============================== */

.logo-text {
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    white-space: nowrap;
}

.logo-name {
    font-size: 1.85rem;
    font-weight: 800;
    color: #4b5563;
    letter-spacing: -1px;
    line-height: 1;
}

.logo-kart {
    color: #DC2626;
}

.logo-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    color: #9ca3af;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1.5px solid #d1d5db;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    line-height: 1;
}

/* Responsive Logo */
@media (max-width: 768px) {
    .logo-text {
        font-size: 0.9rem;
    }
    
    .logo-name,
    .logo-kart {
        font-size: 1.5rem;
    }
    
    .logo-tagline {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-name,
    .logo-kart {
        font-size: 1.3rem;
    }
}

.reviews-section {
    background: white;
    padding: 80px 20px;
}

.reviews-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.reviews-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-section .section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 10px 0;
}

.reviews-section .section-header p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: #DC2626;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.review-card .rating {
    font-size: 0.9rem;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.review-card p {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 16px 0;
    font-style: italic;
}

.review-card .reviewer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-card .reviewer span {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

/* Responsive Reviews */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 15px;
    }
    
    .reviews-section .section-header {
        margin-bottom: 35px;
    }
    
    .reviews-section .section-header h2 {
        font-size: 1.6rem;
    }
    
    .reviews-section .section-header p {
        font-size: 0.95rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .review-card {
        padding: 20px;
        border-radius: 10px;
    }
    
    .review-card .rating {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .review-card p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .review-card .reviewer span {
        font-size: 0.8rem;
    }
}

.brand-carousel-section {
    background: #f9fafb;
    padding: 0 20px 60px 20px;
}

.brand-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.brand-carousel-header {
    margin-bottom: 30px;
}

.brand-carousel-header p {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Infinite Scroll Track */
.brand-carousel-track {
    display: flex;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.brand-carousel-track::before,
.brand-carousel-track::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brand-carousel-track::before {
    left: 0;
    background: linear-gradient(to right, #f9fafb, transparent);
}

.brand-carousel-track::after {
    right: 0;
    background: linear-gradient(to left, #f9fafb, transparent);
}

/* Logo Track Animation */
.brand-carousel-logos {
    display: flex;
    gap: 60px;
    animation: scrollLogos 30s linear infinite;
    will-change: transform;
}

.brand-carousel-logos:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Brand Logo Item */
.brand-logo-item {
    flex-shrink: 0;
    width: 140px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brand-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-logo-item span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #6b7280;
    transition: color 0.3s ease;
}

.brand-logo-item:hover span {
    color: #1f2937;
}

/* Responsive Brand Carousel */
@media (max-width: 768px) {
    .brand-carousel-section {
        padding: 0 15px 40px 15px;
    }
    
    .brand-carousel-track {
        padding: 15px 0;
    }
    
    .brand-carousel-track::before,
    .brand-carousel-track::after {
        width: 50px;
    }
    
    .brand-carousel-logos {
        gap: 40px;
        animation-duration: 20s;
    }
    
    .brand-logo-item {
        width: 100px;
        height: 50px;
    }
    
    .brand-logo-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .brand-carousel-section {
        padding: 0 12px 30px 12px;
    }
    
    .brand-carousel-header {
        margin-bottom: 20px;
    }
    
    .brand-carousel-header p {
        font-size: 0.8rem;
    }
    
    .brand-carousel-logos {
        gap: 30px;
        animation-duration: 15s;
    }
    
    .brand-logo-item {
        width: 80px;
        height: 40px;
    }
    
    .brand-logo-item span {
        font-size: 0.75rem;
    }
}

/* ==============================
   FINAL CTA SECTION STYLES
   ============================== */

.final-cta-section {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

/* Optional background image with overlay */
.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/herobanner.webp') center center;
    background-size: cover;
    opacity: 0.08;
    z-index: 0;
}

.final-cta-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.final-cta-header {
    margin-bottom: 40px;
}

.final-cta-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.final-cta-header p {
    font-size: 1.15rem;
    color: #6b7280;
    margin: 0;
}

/* Primary CTA Button */
.final-cta-btn {
    background: #DC2626;
    color: white;
    border: none;
    padding: 20px 60px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35);
    display: inline-block;
    margin-bottom: 24px;
}

.final-cta-btn:hover {
    background: #b91c1c;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.45);
}

/* Secondary CTA - Phone */
.final-cta-phone {
    display: block;
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.final-cta-phone:hover {
    color: #DC2626;
}

.final-cta-phone i {
    color: #DC2626;
    margin-right: 6px;
}

/* Trust Reassurance */
.final-cta-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.final-cta-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #4b5563;
}

.final-cta-trust-item i {
    font-size: 0.75rem;
    color: #10b981;
}

/* Micro-copy */
.final-cta-micro {
    font-size: 0.95rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.final-cta-micro i {
    color: #f59e0b;
}

/* Responsive Final CTA */
@media (max-width: 768px) {
    .final-cta-section {
        padding: 70px 15px;
    }
    
    .final-cta-header {
        margin-bottom: 32px;
    }
    
    .final-cta-header h2 {
        font-size: 1.8rem;
    }
    
    .final-cta-header p {
        font-size: 1rem;
    }
    
    .final-cta-btn {
        padding: 18px 48px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 320px;
    }
    
    .final-cta-phone {
        font-size: 0.95rem;
    }
    
    .final-cta-trust {
        gap: 16px;
        justify-content: center;
    }
    
    .final-cta-trust-item {
        font-size: 0.85rem;
    }
    
    .final-cta-micro {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .final-cta-section {
        padding: 50px 12px;
    }
    
    .final-cta-header {
        margin-bottom: 24px;
    }
    
    .final-cta-header h2 {
        font-size: 1.5rem;
    }
    
    .final-cta-header p {
        font-size: 0.9rem;
    }
    
    .final-cta-btn {
        padding: 16px 32px;
        font-size: 1rem;
        max-width: 100%;
    }
    
    .final-cta-phone {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }
    
    .final-cta-trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .final-cta-trust-item {
        justify-content: center;
    }
    
    .final-cta-micro {
        font-size: 0.8rem;
    }
}
