/* Rawabi Alwasit Company - Main Stylesheet */

:root {
    /* Color Palette - Updated to Light Blue/Navy Blue Theme */
    --primary-blue: #3498db;
    --primary-dark: #2980b9;
    --navy-blue: #1e3a8a;
    --light-blue: #60a5fa;
    --sky-blue: #0ea5e9;
    --secondary-gray: #2C3E50;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --accent-teal: #1abc9c;
    
    /* Typography */
    --font-primary: 'Inter', 'Segoe UI', sans-serif;
    --font-arabic: 'Cairo', 'Amiri', serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 15px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Arabic Language Support */
[dir="rtl"] {
    font-family: var(--font-arabic);
    text-align: right;
}

[dir="rtl"] .navbar-nav {
    flex-direction: row-reverse;
}

[dir="rtl"] .text-end {
    text-align: left !important;
}

[dir="rtl"] .ms-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 5px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

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

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    z-index: 1000;
}

.header .navbar {
    padding: 15px 0;
}

.logo {
    max-height: 60px; /* Proper height for horizontal logo */
    width: auto;
    max-width: 200px; /* Appropriate width for horizontal logo */
    height: auto; /* Maintain aspect ratio */
    transition: var(--transition-smooth);
    margin: 0; /* Remove negative margins for proper alignment */
    padding: 5px 0; /* Add padding for vertical centering */
    display: block;
    object-fit: contain; /* Ensure proper image scaling */
    vertical-align: middle; /* Vertical alignment */
}

.logo:hover {
    transform: scale(1.05);
}
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 10px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-blue);
    background-color: rgba(255, 107, 53, 0.1);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 10px 0;
    margin-top: 10px;
    left: auto;
    right: auto;
    min-width: 220px;
    z-index: 1050;
}

.dropdown-item {
    padding: 10px 20px;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-blue);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-toggle {
    background: none;
    border: 1px solid var(--text-light);
    padding: 8px 15px;
    border-radius: 5px;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-fast);
}

.language-toggle:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.cta-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Navigation */
.navbar-toggler {
    border: none;
    padding: 5px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-gray) 0%, var(--primary-blue) 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/products/industrial-supplies/industry.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.7);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem; /* Increased from 3.5rem */
    font-weight: 800; /* Increased from 700 */
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5); /* Enhanced shadow */
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.4rem; /* Increased from 1.25rem */
    margin-bottom: 2rem;
    opacity: 1; /* Increased from 0.9 */
    font-weight: 500; /* Added weight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* Added shadow */
    color: var(--white);
    line-height: 1.4;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header Section */
.page-header {
    padding-top: 120px; /* Account for fixed navbar */
    padding-bottom: 60px;
    background-color: var(--light-gray);
    margin-top: 0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Sections */
.section {
    padding: var(--section-padding);
}

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

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 3px;
    background-color: var(--primary-blue);
    transform: translateX(-50%);
}

/* About Preview Section */
.about-preview {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.about-content h2 {
    color: var(--secondary-gray);
    margin-bottom: 1.5rem;
}

.about-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 15px;
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    transition: var(--transition-smooth);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Preview Section */
.services-preview {
    padding: var(--section-padding);
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    height: 100%;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
}

.service-card h3 {
    color: var(--secondary-gray);
    margin-bottom: 15px;
}

.service-link {
    color: var(--primary-blue);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.service-link:hover {
    color: var(--primary-dark);
}

/* Products Preview Section */
.products-preview {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    height: 100%;
}

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

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    color: var(--secondary-gray);
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.product-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

.product-link {
    color: var(--primary-blue);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

/* Contact CTA Section */
.contact-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--secondary-gray) 0%, var(--primary-blue) 100%);
    color: var(--white);
}

.contact-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: var(--secondary-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

/* Contact page (moved from inline to satisfy CSP) */
.contact-form-wrapper { background: var(--white); padding: 40px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); width: 100%; max-width: 100%; box-sizing: border-box; }
.contact-form-wrapper h2 { color: var(--secondary-gray); margin-bottom: 15px; }
.contact-form-wrapper p { color: var(--text-light); margin-bottom: 25px; }
.form-label { font-weight: 500; color: var(--text-dark); margin-bottom: 8px; display: block; }
.contact-form { margin-top: 20px; }
.contact-form .row { margin-left: -15px; margin-right: -15px; display:flex; flex-wrap:wrap; }
.contact-form .row > * { padding-left: 15px; padding-right: 15px; box-sizing: border-box; }
.contact-form .mb-3 { margin-bottom: 1rem !important; width: 100%; }
.contact-form .col-md-6 { flex: 0 0 50%; max-width: 50%; }
@media (max-width: 767.98px) { .contact-form .col-md-6 { flex: 0 0 100%; max-width: 100%; } }
.form-control { border: 2px solid #e9ecef; border-radius: 5px; padding: 12px 15px; font-size: 14px; transition: var(--transition-fast); width:100%; max-width:100%; display:block; background-color:#fff; color:var(--text-dark); font-family:inherit; line-height:1.5; -webkit-appearance:none; -moz-appearance:none; appearance:none; box-sizing:border-box; }
.form-control::placeholder { color:#9aa0a6; opacity:1; }
.form-control:hover { border-color:#d0d7de; }
.form-control:focus { border-color: var(--primary-blue); box-shadow: 0 0 0 0.2rem rgba(52,152,219,0.25); outline:none; }
.form-control.error { border-color:#dc3545; }
select.form-control { background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e"); background-position:right 12px center; background-repeat:no-repeat; background-size:16px; padding-right:40px; }
textarea.form-control { resize: vertical; min-height: 120px; }
.error-message { color:#dc3545; font-size:12px; margin-top:5px; display:block; }
.form-message { padding:15px; border-radius:5px; margin-bottom:20px; font-weight:500; display:block; }
.form-message.success { background-color:#d4edda; color:#155724; border:1px solid #c3e6cb; }
.form-message.error { background-color:#f8d7da; color:#721c24; border:1px solid #f5c6cb; }
.contact-info-wrapper { background: var(--light-gray); padding:40px 30px; border-radius:10px; height:fit-content; }
.contact-info-wrapper h3 { color: var(--secondary-gray); margin-bottom: 30px; }
.contact-info-item { display:flex; align-items:flex-start; margin-bottom:30px; gap:20px; }
.contact-details h4 { color: var(--secondary-gray); margin-bottom:5px; font-size:1.1rem; }
.contact-details p { margin:0; color: var(--text-light); line-height:1.5; }
.contact-details a { color: var(--primary-blue); text-decoration:none; }
.contact-details a:hover { color: var(--primary-dark); }
.contact-section { padding:80px 0; }
.map-section { margin-top:60px; padding-bottom:60px; }
.map-wrapper { 
    position:relative; 
    border-radius:10px; 
    overflow:hidden; 
    box-shadow:0 10px 30px rgba(0,0,0,0.1); 
    background-color:#f0f0f0; 
}
.map-wrapper iframe { 
    width:100%; 
    height:450px; 
    min-height:450px; 
    border:none; 
    display:block; 
}
.static-map-link { 
    display:block; 
    position:relative; 
    width:100%; 
    height:450px; 
    overflow:hidden; 
    border-radius:10px; 
    text-decoration:none; 
    background:linear-gradient(135deg, #3498db 0%, #2980b9 100%); 
    transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.static-map-link:hover { 
    transform:scale(1.01); 
    box-shadow:0 15px 40px rgba(0,0,0,0.2);
}
.map-placeholder { 
    width:100%; 
    height:100%; 
    position:relative;
    display:flex; 
    align-items:center; 
    justify-content:center; 
    padding:40px;
    min-height:450px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.map-placeholder-overlay {
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(52, 152, 219, 0.75);
    z-index:1;
}
.map-placeholder-content { 
    position:relative;
    z-index:2;
    text-align:center; 
    color:#fff; 
    padding:30px;
    background:rgba(255,255,255,0.1);
    border-radius:10px;
    backdrop-filter:blur(10px);
}
.map-icon { 
    font-size:4rem; 
    margin-bottom:20px; 
    opacity:0.95; 
    filter:drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}
.map-placeholder-content h3 { 
    font-size:1.75rem; 
    margin-bottom:15px; 
    color:#fff; 
    font-weight:600;
    text-shadow:0 2px 4px rgba(0,0,0,0.2);
}
.map-placeholder-content p { 
    font-size:1.1rem; 
    margin-bottom:25px; 
    line-height:1.6; 
    opacity:0.95; 
    text-shadow:0 1px 2px rgba(0,0,0,0.2);
}
.map-placeholder-content .btn { 
    background-color:#fff; 
    color:#3498db; 
    border-color:#fff; 
    padding:12px 30px;
    font-weight:600;
    font-size:1rem;
    border-radius:50px;
    box-shadow:0 4px 15px rgba(0,0,0,0.2);
    transition:all 0.3s ease;
}
.map-placeholder-content .btn:hover { 
    background-color:#f8f9fa; 
    color:#2980b9; 
    transform:translateY(-2px);
    box-shadow:0 6px 20px rgba(0,0,0,0.3);
}
.map-fallback { 
    padding:20px; 
    text-align:center; 
    background:#f8f9fa; 
}
.is-hidden { 
    display:none; 
}
.footer-logo {
    max-height: 80px; /* Proper height for horizontal logo in footer */
    width: auto;
    max-width: 250px; /* Appropriate width for horizontal logo */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px;
    object-fit: contain; /* Ensure proper image scaling */
    display: block;
}

.footer-widget h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.contact-item i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-top: 2px;
    min-width: 20px;
}

.contact-icon-text {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-right: 15px;
    min-width: 20px;
    display: inline-block;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a:hover {
    color: var(--primary-blue);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Language Toggle States */
.lang-ar {
    display: none;
}

[dir="rtl"] .lang-en {
    display: none;
}

[dir="rtl"] .lang-ar {
    display: inline;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .header-actions {
        margin-top: 20px;
        justify-content: center;
    }
    
    .navbar-collapse {
        background-color: var(--white);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .page-header {
        padding-top: 100px; /* Reduced padding for mobile */
        padding-bottom: 40px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .product-card {
        margin-bottom: 30px;
    }
    
    .contact-cta .row {
        text-align: center;
    }
    
    .contact-cta .col-lg-4 {
        margin-top: 20px;
    }
}

@media (max-width: 575.98px) {
    .page-header {
        padding-top: 90px; /* Further reduced for small mobile */
        padding-bottom: 30px;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Dark Mode Support (System preference) */
@media (prefers-color-scheme: dark) {
    :root {
        --white: #0f141a;
        --light-gray: #121821;
        --text-dark: #e6edf3;
        --text-light: #c1c8d0;
        --secondary-gray: #0b1016;
        --primary-blue: #5aa7ff;
        --primary-dark: #2f8ae0;
    }

    body {
        background-color: var(--white);
        color: var(--text-dark);
    }

    .header {
        background-color: rgba(15, 20, 26, 0.95);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    }

    .navbar-collapse {
        background-color: #0f141a;
        box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    }

    .navbar-nav .nav-link { color: var(--text-dark); }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary-blue);
        background-color: rgba(90, 167, 255, 0.12);
    }

    .dropdown-menu {
        background-color: #0f141a;
        border: 1px solid #1f2a36;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    }
    .dropdown-item { color: var(--text-light); }
    .dropdown-item:hover { background-color: rgba(90, 167, 255, 0.15); color: var(--text-dark); }

    .section,
    .about-preview,
    .products-preview,
    .services-preview { background-color: var(--light-gray); }

    .service-card,
    .product-card {
        background-color: #111924;
        color: var(--text-dark);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .page-header { background-color: #0f141a; }
    .contact-cta { background: linear-gradient(135deg, #0f141a 0%, #1b3656 100%); }

    .footer { background-color: #0b1016; color: var(--text-dark); }
    .footer-links a, .footer-bottom a { color: #a9b4bf; }
    .footer-links a:hover, .footer-bottom a:hover { color: var(--primary-blue); }

    /* Forms */
    .form-control {
        background-color: #0f141a;
        color: var(--text-dark);
        border-color: #233042;
    }
    .form-control:focus {
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 0.2rem rgba(90, 167, 255, 0.25);
    }
    .contact-info-wrapper { background: #0f141a; }

    /* Buttons */
    .btn-primary { background-color: var(--primary-blue); border-color: var(--primary-blue); color: #0a0f14; }
    .btn-primary:hover { background-color: var(--primary-dark); border-color: var(--primary-dark); color: #0a0f14; }

    /* Links */
    a { color: var(--primary-blue); }
    a:hover { color: var(--primary-dark); }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(37, 211, 102, 0.5);
    color: var(--white);
    text-decoration: none;
}

.whatsapp-float i {
    margin-top: 0;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Dark Mode WhatsApp Button */
@media (prefers-color-scheme: dark) {
    .whatsapp-float {
        background-color: #25d366;
        box-shadow: 2px 2px 10px rgba(37, 211, 102, 0.4);
    }
    
    .whatsapp-float:hover {
        background-color: #20ba5a;
        box-shadow: 2px 2px 15px rgba(37, 211, 102, 0.6);
    }
}

/* Mobile Responsive WhatsApp Button */
@media (max-width: 767.98px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 28px;
    }
}

@media (max-width: 575.98px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 25px;
    }
}

