/* CementKart Main Stylesheet */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles - Fixed 120px height */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    height: 120px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 0.5rem 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.logo h2 {
    color: #DC2626;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo i {
    margin-right: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #DC2626;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.dropdown-content a:hover {
    background: #f9fafb;
    color: #DC2626;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.btn-call, .btn-get-order {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-call {
    background: #374151;
    color: white;
}

.btn-call:hover {
    background: #1f2937;
}

.btn-get-order {
    background: #DC2626;
    color: white;
}

.btn-get-order:hover {
    background: #b91c1c;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Handled in header-update.css */
.hero,
.hero-overlay,
.hero-content,
.hero h1,
.hero h2,
.hero p,
.hero-buttons,
.btn-primary,
.btn-secondary {
    /* Styles moved to header-update.css */
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h1 {
    font-size: 2.5rem;
    color: #374151;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section */
.products-section {
    background: #f9fafb;
}

/* Product Filter Buttons */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #DC2626;
    background: white;
    color: #DC2626;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #DC2626;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    color: #374151;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.brand {
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.rating {
    margin-bottom: 0.5rem;
}

.weight {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1rem;
}

.offer-price {
    color: #DC2626;
    font-size: 1.3rem;
    font-weight: 700;
}

.description {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-call-small, .btn-details {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-call-small {
    background: #374151;
    color: white;
}

.btn-call-small:hover {
    background: #1f2937;
}

.btn-details {
    background: #DC2626;
    color: white;
}

.btn-details:hover {
    background: #b91c1c;
}

/* About Section */
.about-section {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    color: #374151;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-text p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #DC2626;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-section {
    background: #f9fafb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #DC2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-item h3 {
    color: #374151;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Cement Types Section */
.cement-types-section {
    background: white;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.type-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #DC2626;
}

.type-card h3 {
    color: #374151;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.type-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.type-card ul {
    list-style: none;
    padding-left: 0;
}

.type-card li {
    color: #6b7280;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.type-card li:before {
    content: "✓";
    color: #DC2626;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Reviews Section */
.reviews-section {
    background: #f9fafb;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.review-card .rating {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-card p {
    color: #374151;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.reviewer strong {
    color: #374151;
    font-weight: 600;
}

.reviewer span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Brands Section */
.brands-section {
    background: white;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.brand-logo {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: #374151;
    font-size: 1.2rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    border-color: #DC2626;
    color: #DC2626;
}

/* Contact Section */
.contact-section {
    background: #f9fafb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #374151;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: #DC2626;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #374151;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #6b7280;
    line-height: 1.6;
}

.contact-form h3 {
    color: #374151;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DC2626;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    background: #f9fafb;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-question h3 {
    color: #374151;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: #DC2626;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Business Contact Section */
.footer-contact-section {
    text-align: center;
    margin-bottom: 30px;
}

.footer-contact-section h3 {
    color: #f9fafb;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-contact-section h3 i {
    color: #DC2626;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item i {
    color: #DC2626;
    margin-top: 3px;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.contact-item a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #DC2626;
}

/* Footer Links Section */
.footer-links-section {
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
    padding: 20px 0;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 4px 8px;
}

.footer-links a:hover {
    color: #DC2626;
}

.link-divider {
    color: #4b5563;
    font-size: 0.8rem;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    color: #9ca3af;
    padding-bottom: 20px;
}

.footer-bottom p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #d1d5db;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #DC2626;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 8px;
    font-style: italic;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        padding: 30px 15px;
    }
    
    .footer-contact-section h3 {
        font-size: 1.1rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
        text-align: left;
        justify-content: flex-start;
        padding: 0 10px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 4px;
    }
    
    .link-divider {
        display: none;
    }
    
    .footer-links a {
        padding: 6px 0;
    }
}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #374151;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: #9ca3af;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #DC2626;
}

.bulk-order-form {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DC2626;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.form-actions button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary {
    background: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background: #4b5563;
}

.btn-primary {
    background: #DC2626;
    color: white;
}

.btn-primary:hover {
    background: #b91c1c;
}

/* Product Details Modal */
.product-details-content {
    padding: 2rem;
}

.tabs {
    display: flex;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: #DC2626;
    border-bottom-color: #DC2626;
}

.tab-btn:hover {
    color: #DC2626;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    color: #374151;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tab-content h4 {
    color: #374151;
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.tab-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tab-content ul {
    list-style: none;
    padding-left: 0;
}

.tab-content li {
    color: #6b7280;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.tab-content li:before {
    content: "✓";
    color: #DC2626;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.review-item {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.review-item .rating {
    margin-bottom: 0.5rem;
}

.review-item p {
    margin: 0;
    font-style: italic;
}

/* Admin Link */
.admin-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.admin-link a {
    background: #374151;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.admin-link a:hover {
    background: #1f2937;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        height: 50vh;
        min-height: 400px;
        margin-top: 120px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Product filter buttons responsive */
    .product-filters {
        flex-wrap: wrap;
        gap: 0.8rem;
        justify-content: center;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        min-width: 120px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header,
    .bulk-order-form,
    .product-details-content {
        padding: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: 45vh;
        min-height: 350px;
        margin-top: 120px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Success/Error messages */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
}

.message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.message.show {
    display: block;
}

/* Form validation styles */
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #DC2626;
    background: #fef2f2;
}

.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: #10b981;
    background: #f0fdf4;
}

/* Hero Trust Strip */
.hero-trust-strip {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
}

.hero-trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-trust-item i {
    color: #DC2626;
    font-size: 1.1rem;
}

/* Button Micro Labels */
.btn-micro-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #DC2626;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.scroll-to-top.show {
    display: block;
}

/* Header Phone Number */
.header-phone {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 2px;
    letter-spacing: 0.3px;
}

/* Header CTA Buttons */
.btn-cta-primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: #374151;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: #1f2937;
}

/* Hero Trust Strip Responsive */
@media (max-width: 768px) {
    .hero-trust-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .hero-trust-item {
        font-size: 0.9rem;
    }
}

/* Header Responsive */
@media (max-width: 768px) {
    .header-phone {
        font-size: 0.7rem;
    }
    
    .btn-cta-primary {
        padding: 8px 12px;
    }
}
