/* Elna Construction Materials - Main Stylesheet */
:root {
    --primary-color: #1a4b8c;
    --secondary-color: #f0ad4e;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --success-color: #28a745;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    padding-top: 76px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--dark-color);
}
/* ===== COMPACT NAVIGATION BAR ===== */
.compact-nav {
    background-color: var(--primary-color) !important; /* Your existing blue */
    padding: 5px 0;
    min-height: 60px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1030; /* Ensures it stays above other content */
}

.nav-logo {
    height: 40px;
    width: 40px;
    border-radius: 50%; /* Makes the square favicon circular */
    object-fit: contain;
    border: 2px solid rgba(255, 255, 255, 0.3); /* Subtle border for definition */
    transition: all 0.3s ease;
}

.nav-logo:hover {
    border-color: white;
    transform: scale(1.05);
}

.compact-nav .nav-link {
    padding: 8px 15px !important;
    font-weight: 500;
}

.compact-nav .navbar-nav {
    align-items: center;
}

/* ===== HERO SECTION WITH TRANSPARENT TITLE ===== */
.hero-section {
    position: relative;
    min-height: 85vh; /* Adjust this to control height */
    display: flex;
    align-items: center;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), /* Dark overlay for readability */
        url('../images/hero-home.jpg') center center / cover no-repeat;
    margin-top: 60px; /* Prevents content from hiding under the fixed nav */
}

.hero-overlay {
    width: 100%;
    padding: 40px 20px;
}

.hero-title-container {
    text-align: center;
    color: white;
    padding: 40px;
    background-color: rgba(26, 75, 140, 0.75); /* Semi-transparent blue background */
    border-radius: 10px;
    backdrop-filter: blur(5px); /* Creates a subtle frosted glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.hero-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .compact-nav {
        padding: 5px 0;
        min-height: 50px;
    }
    
    .nav-logo {
        height: 35px;
        width: 35px;
    }
    
    .hero-section {
        min-height: 70vh;
        margin-top: 50px;
    }
    
    .hero-title-container {
        padding: 25px 15px;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .compact-nav .nav-link {
        padding: 10px !important;
        font-size: 0.95rem;
    }
}
/* ===== COMPACT NAVIGATION BAR ===== */
.compact-nav {
    background-color: var(--primary-color) !important; /* Your existing blue */
    padding: 5px 0;
    min-height: 60px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1030; /* Ensures it stays above other content */
}

.nav-logo {
    height: 40px;
    width: 40px;
    border-radius: 50%; /* Makes the square favicon circular */
    object-fit: contain;
    border: 2px solid rgba(255, 255, 255, 0.3); /* Subtle border for definition */
    transition: all 0.3s ease;
}

.nav-logo:hover {
    border-color: white;
    transform: scale(1.05);
}

.compact-nav .nav-link {
    padding: 8px 15px !important;
    font-weight: 500;
}

.compact-nav .navbar-nav {
    align-items: center;
}

/* ===== HERO SECTION WITH TRANSPARENT TITLE ===== */
.hero-section {
    position: relative;
    min-height: 70vh; /* Adjust this to control height */
    display: flex;
    align-items: center;
    background: 
        linear-gradient(rgba(251, 251, 247, 0.574), rgba(233, 236, 229, 0.4)), /* Dark overlay for readability */
        url('../images/hero-banner.jpg') center center / cover no-repeat;
    margin-top: 60px; /* Prevents content from hiding under the fixed nav */
}

.hero-overlay {
    width: 100%;
    padding: 40px 20px;
}

.hero-title-container {
    text-align: center;
    color: white;
    padding: 40px;
    background-color: rgba(26, 75, 140, 0.75); /* Semi-transparent blue background */
    border-radius: 10px;
    backdrop-filter: blur(5px); /* Creates a subtle frosted glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.hero-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .compact-nav {
        padding: 5px 0;
        min-height: 50px;
    }
    
    .nav-logo {
        height: 35px;
        width: 35px;
    }
    
    .hero-section {
        min-height: 70vh;
        margin-top: 50px;
    }
    
    .hero-title-container {
        padding: 25px 15px;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .compact-nav .nav-link {
        padding: 10px !important;
        font-size: 0.95rem;
    }
}
/* Google Translate */
.translate-container {
    margin-left: 15px;
}

.goog-te-gadget-simple {
    background: rgba(255,255,255,0.1) !important;
    border: none !important;
    padding: 5px 10px !important;
    border-radius: 5px;
}

.goog-te-gadget-simple span {
    color: white !important;
    font-size: 0.9rem;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    color: white;
    padding: 0;
}

.banner-overlay {
    padding: 120px 0 60px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-buttons .btn {
    margin: 0 10px;
    padding: 12px 30px;
    font-weight: 600;
}

/* Quick Navigation Overlay */
.quick-nav-overlay {
    background: rgba(0,0,0,0.8);
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.quick-nav-item {
    display: block;
    text-align: center;
    color: white;
    text-decoration: none;
    padding: 15px 5px;
    border-radius: 8px;
    transition: all 0.3s;
    background: rgba(255,255,255,0.1);
}

.quick-nav-item:hover {
    background: rgba(255,255,255,0.2);
    color: var(--secondary-color);
    transform: translateY(-5px);
}

.quick-nav-item i {
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
}

.quick-nav-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Product Cards */
.product-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-card i {
    color: var(--primary-color);
}

/* Product Slider */
.carousel-item {
    height: 500px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0,0,0,0.7);
    padding: 20px;
    border-radius: 10px;
    bottom: 50px !important;
}

.carousel-caption h5 {
    color: white;
    font-size: 1.8rem;
}

.carousel-caption p {
    font-size: 1.1rem;
}

/* Contact Info */
.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-info i {
    width: 20px;
    color: var(--primary-color);
}

.contact-buttons .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Map Container */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Why Choose Us */
.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.feature-icon i {
    color: white;
}

/* Quick Quote Form */
.quick-quote-form .input-group {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    overflow: hidden;
}

.quick-quote-form input {
    border: none;
    padding: 15px;
}

.quick-quote-form button {
    border: none;
    padding: 15px 30px;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--dark-color) !important;
}

footer h5 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

footer a {
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--secondary-color) !important;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Chatbot Widget */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(26, 75, 140, 0.3);
    transition: all 0.3s;
}

.chatbot-toggle:hover {
    background: #0d3a73;
    transform: scale(1.1);
}

.chatbot-container {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    display: none;
}

.chatbot-header {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h6 {
    color: white;
    margin: 0;
}

.close-chatbot {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.chatbot-body {
    padding: 15px;
    height: 300px;
    overflow-y: auto;
}

.chatbot-input {
    padding: 15px;
    border-top: 1px solid #eee;
}

.quick-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-option {
    padding: 8px 12px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-option:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    max-width: 80%;
}

.bot-message {
    background: #f0f7ff;
    align-self: flex-start;
}

.user-message {
    background: var(--primary-color);
    color: white;
    align-self: flex-end;
    margin-left: auto;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
    z-index: 999;
}

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

/* Forms */
.quote-form-section {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 5px solid var(--secondary-color);
}

.custom-order-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid var(--secondary-color);
}

.custom-order-box textarea {
    min-height: 100px;
    max-height: 200px;
    resize: vertical;
}

/* Tables */
.table thead th {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(26, 75, 140, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .carousel-item {
        height: 300px;
    }
    
    .carousel-caption {
        bottom: 20px !important;
        padding: 15px;
    }
    
    .carousel-caption h5 {
        font-size: 1.2rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .chatbot-container {
        width: 300px;
        right: -50px;
    }
    
    .quick-nav-item {
        padding: 10px 5px;
    }
    
    .quick-nav-item i {
        font-size: 20px;
    }
    
    .quick-nav-item span {
        font-size: 0.8rem;
    }
}
/* Hero Section */
.hero-section {
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content h1 {
    color: white;
    margin-bottom: 20px;
}

.hero-buttons {
    margin-top: 30px;
}

.hero-buttons .btn {
    margin: 0 10px;
    padding: 12px 30px;
    font-weight: 600;
}

/* Product Cards */
.product-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-card i {
    color: var(--primary-color);
}

/* General Manager Section */
.gm-photo {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Page Header */
.page-header {
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

/* Product Categories */
.product-category {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    border-left: 5px solid var(--primary-color);
}

.category-title {
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.grade-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s;
    height: 100%;
}

.grade-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Tables */
.table thead th {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(26, 75, 140, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(26, 75, 140, 0.1);
}

/* Quote Forms */
.quote-form-section {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 5px solid var(--secondary-color);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
}

.form-control, .form-select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(26, 75, 140, 0.25);
}
/* File Upload Styles */
.file-upload-container {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
    transition: all 0.3s;
    margin: 20px 0;
}

.file-upload-container.dragover {
    border-color: var(--primary-color);
    background: rgba(26, 75, 140, 0.05);
}

.file-dropzone {
    cursor: pointer;
}

.file-input {
    display: none;
}

.browse-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
}

.browse-btn:hover {
    background: #0d3a73;
}

.browse-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.file-list {
    margin-top: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 5px;
    margin-bottom: 10px;
    border: 1px solid #eee;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.file-name {
    font-weight: 500;
}

.file-size {
    font-size: 0.8rem;
    color: #666;
}

.file-actions .btn-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 5px;
}

.file-counter {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

/* Toast Messages */
.toast-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 300px;
    z-index: 9999;
    animation: slideIn 0.3s ease-out;
}

.toast-success {
    border-left: 4px solid var(--success-color);
}

.toast-error {
    border-left: 4px solid var(--danger-color);
}

.toast-info {
    border-left: 4px solid var(--primary-color);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #666;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Custom Order Box */
.custom-order-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid var(--secondary-color);
}

.custom-order-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.custom-order-header i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.custom-order-body textarea {
    min-height: 100px;
    resize: vertical;
}

/* Gallery Styles */
.gallery-container {
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Contact Info */
.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-info i {
    width: 20px;
}

/* Map Container */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color: var(--dark-color) !important;
}

footer h5 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

footer a {
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--secondary-color) !important;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

/* Add these styles to existing style.css */

/* Team Cards */
.team-card {
    padding: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid var(--primary-color);
}

.team-placeholder {
    width: 200px;
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 5px solid #ddd;
}
/* Distributor Page Styles */
.benefit-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: all 0.3s;
    height: 100%;
}

.benefit-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(26, 75, 140, 0.1);
    transform: translateY(-5px);
}

.form-section {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
}

.section-title {
    color: var(--primary-color);
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.process-steps .step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.alert-info {
    background: #e7f3ff;
    border-color: #b3d9ff;
    color: #004085;
}

.required-field::after {
    content: " *";
    color: #dc3545;
}
.value-icon {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.certification-item {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s;
}

.certification-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(26, 75, 140, 0.1);
}

/* Calculator */
.calculator-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.calculator-result {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    height: 100%;
}

/* Terms Content */
.terms-content h3 {
    color: var(--primary-color);
    margin-top: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.terms-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}
/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .brand-text {
        font-size: 0.9rem;
    }
    
    .gm-photo {
        width: 200px;
        height: 200px;
    }
    
    .quote-form-section {
        padding: 20px;
    }
}
/* Mobile-Specific Fixes */

/* Fix navbar collapse */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--primary-color);
        padding: 20px;
        border-radius: 0 0 10px 10px;
        margin-top: 10px;
    }
}

/* Fix mobile spacing */
@media (max-width: 768px) {
    section {
        padding: 40px 0 !important;
    }
    
    .py-5 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
    .mt-5 {
        margin-top: 30px !important;
    }
    
    .mb-5 {
        margin-bottom: 30px !important;
    }
}

/* Fix tables on mobile */
@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Fix card shadows on mobile */
@media (max-width: 768px) {
    .card {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
}

/* Improve button visibility */
@media (max-width: 768px) {
    .btn {
        border-width: 2px;
    }
    
    .btn-outline-primary {
        border-width: 2px;
    }
}

/* Fix form elements */
@media (max-width: 768px) {
    .form-check-input {
        width: 20px;
        height: 20px;
    }
    
    .form-check-label {
        padding-left: 8px;
        font-size: 0.95rem;
    }
}
