/* Root Variables */
:root {
    --primary-color: #000000;
    --secondary-color: #FFC107;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --border-color: #e0e0e0;
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Logo */
.logo {
    height: 50px;
    margin-right: 10px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 15px;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-color);
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .contact-info span {
    margin-right: 25px;
}

.top-bar .contact-info i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.top-bar .social-links a {
    color: #fff;
    margin-left: 15px;
    font-size: 16px;
}

.top-bar .social-links a:hover {
    color: var(--secondary-color);
}

/* Navigation */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand .logo {
    height: 40px;
    margin-right: 10px;
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 20px;
    font-size: 16px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 3px solid var(--secondary-color);
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Hero Section with Slider */
.hero-section {
    position: relative;
    padding: 100px 0;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #000;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons .btn {
    margin-right: 15px;
    padding: 12px 35px;
}

.hero-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.hero-form h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.hero-form .form-control,
.hero-form .form-select {
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.hero-form .btn {
    padding: 12px;
    font-weight: 600;
}

/* Section Styles */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    font-size: 18px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 3px solid var(--secondary-color);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
}

.service-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 24px;
    margin-right: 15px;
    margin-top: 5px;
}

.feature-item h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.feature-item p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('../img/stats-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #fff;
}

.stat-item {
    padding: 20px;
}

.stat-item i {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: #fff;
    padding: 80px 0;
}

.cta-section .btn-light {
    padding: 12px 40px;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.cta-section .btn-light:hover {
    background: transparent;
    color: var(--secondary-color);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: #fff;
    padding: 60px 0 0;
}

.footer h5 {
    font-size: 18px;
    margin-bottom: 25px;
    color: #fff;
}

.footer p {
    color: #aaa;
    font-size: 14px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
}

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

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

.footer-links a {
    color: #aaa;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.newsletter-form .btn-primary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.newsletter-form .btn-primary:hover {
    background: #e0a800;
    border-color: #e0a800;
}

.newsletter-form .form-control::placeholder {
    color: #aaa;
}

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

.footer-bottom a {
    color: #aaa;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../img/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    justify-content: center;
}

.breadcrumb-item a {
    color: #fff;
}

.breadcrumb-item.active {
    color: rgba(255,255,255,0.7);
}

/* About Page */
.about-content {
    padding: 80px 0;
}

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

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

/* Service Detail Page */
.service-detail {
    padding: 80px 0;
}

.service-detail-img {
    border-radius: 10px;
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.cta-box {
    border-left: 4px solid var(--secondary-color);
}

/* Contact Page */
.contact-info-section {
    padding: 80px 0;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
}

.contact-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-form .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 40px;
}

.contact-form .btn-primary:hover {
    background: #333;
    border-color: #333;
}

.contact-card h4 {
    margin-bottom: 15px;
}

.contact-form-section {
    padding: 80px 0;
    background: var(--light-color);
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.map-section {
    padding: 80px 0;
}

/* Products Page */
.products-section {
    padding: 80px 0;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

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

.product-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.product-body {
    padding: 25px;
}

.product-body h4 {
    margin-bottom: 10px;
}

.product-card .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.product-card .btn-primary:hover {
    background: #333;
    border-color: #333;
}

/* References Page */
.references-section {
    padding: 80px 0;
}

/* Select2 Custom Styling for Hero Form */
.hero-form .select2-container {
    width: 100% !important;
}

.hero-form .select2-container .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    min-height: 48px;
    padding: 0.375rem 0.75rem;
}

.hero-form .select2-container .select2-selection--multiple .select2-selection__choice {
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem;
    font-size: 14px;
    margin-top: 0.25rem;
}

.hero-form .select2-container .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff;
    margin-right: 0.5rem;
}

.hero-form .select2-container .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #FFC107;
}

.hero-form .select2-container .select2-search--inline .select2-search__field {
    margin-top: 0.25rem;
}

.hero-form .select2-container--focus .select2-selection--multiple,
.hero-form .select2-container--open .select2-selection--multiple {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Select2 Dropdown */
.hero-form .select2-dropdown {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.hero-form .select2-results__option {
    padding: 0.5rem 1rem;
}

.hero-form .select2-results__option--highlighted {
    background-color: #000 !important;
    color: #fff !important;
}

.hero-form .select2-selection__clear {
    color: #000;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.hero-form .select2-selection__placeholder {
    color: #6c757d;
}

.reference-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.reference-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    border-radius: 10px 10px 0 0;
}

.reference-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.reference-card:hover .reference-img {
    transform: scale(1.05);
}

.reference-body {
    padding: 15px;
    text-align: center;
}

.reference-body h4 {
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.reference-body .badge {
    margin-bottom: 6px;
    padding: 3px 8px;
    font-weight: 500;
    font-size: 11px;
}

.reference-body p {
    color: #666;
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reference-body small {
    font-size: 12px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .stat-item h3 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .top-bar .text-end {
        text-align: left !important;
        margin-top: 10px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-form {
        margin-top: 30px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .navbar-brand .brand-text {
        font-size: 18px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
    border-top: 1px solid var(--border-color);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.3s ease;
    width: 100%;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--secondary-color);
    font-size: 32px;
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background: var(--light-color);
}

.partner-logo {
    padding: 20px;
    text-align: center;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo:hover {
    filter: grayscale(0%);
}

.partner-logo img {
    max-height: 60px;
    max-width: 100%;
}

/* Contact Info Card */
.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-info-card .contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Reference Icon */
.reference-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.reference-icon i {
    font-size: 32px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    height: 100%;
}

.testimonial-rating {
    color: #FFC107;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    color: var(--primary-color);
}

.testimonial-author h6 {
    margin-bottom: 2px;
}

/* Partners Review Section */
.partners-preview {
    padding: 60px 0;
}

.partners-preview .partner-logo {
    padding: 15px;
    height: 70px;
}

/* Override Bootstrap Blue Buttons to Yellow */
.btn-primary {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #e0a800 !important;
    border-color: #e0a800 !important;
    color: var(--primary-color) !important;
}

.btn-info {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active {
    background-color: #e0a800 !important;
    border-color: #e0a800 !important;
    color: var(--primary-color) !important;
}

.btn-dark {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
    background-color: #e0a800 !important;
    border-color: #e0a800 !important;
    color: var(--primary-color) !important;
}

.btn-outline-primary {
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

/* Override Bootstrap Primary Color Classes */
.bg-primary {
    background-color: var(--secondary-color) !important;
}

.text-primary {
    color: var(--secondary-color) !important;
}

.border-primary {
    border-color: var(--secondary-color) !important;
}

.alert-primary {
    background-color: #fff3cd !important;
    border-color: #ffecb5 !important;
    color: #664d03 !important;
}

.badge-primary {
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

/* Override Bootstrap Other Blue Components */
.page-item.active .page-link {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

.page-link {
    color: var(--secondary-color) !important;
}

.page-link:hover {
    color: #e0a800 !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25) !important;
}

.nav-pills .nav-link.active {
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

.progress-bar {
    background-color: var(--secondary-color) !important;
}

.list-group-item.active {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

.table-primary {
    background-color: #fff3cd !important;
    color: #664d03 !important;
}

.alert-success {
    background-color: #fff3cd !important;
    border-color: #ffecb5 !important;
    color: #664d03 !important;
}

/* Contact Page Enhancements */
.contact-info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 32px;
}

.contact-form-wrapper {
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

/* Page Header with Background */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    color: #fff;
}

.page-header h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb-item a {
    color: #FFC107;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

/* Accordion Styling */
.accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background: #fff;
    font-weight: 600;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background: #000;
    color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #000;
}

.accordion-body {
    padding: 20px;
    background: #f8f9fa;
}

/* CTA Section Dark */
.cta-section {
    background: #000;
    color: #fff;
    padding: 80px 0;
}

.cta-section h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
}

/* Section Title Enhancement */
.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #FFC107;
}

.section-subtitle {
    color: #666;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Alert Enhancements */
.alert-dismissible .btn-close {
    padding: 1rem;
}

/* Contact Form Floating Labels */
.form-floating>.form-control, 
.form-floating>.form-select {
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}

.form-floating>label {
    padding: 1rem 0.75rem;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    color: #000;
    opacity: 0.65;
}

/* Contact Info Cards Responsive */
@media (max-width: 768px) {
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #000;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #FFC107;
    color: #000;
}

