/* Custom Styles for Pilot Insurance Brokers */

body {
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

/* Header Styles */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Top Contact Bar */
.header-top-bar {
    background-color: #FFD700;
    border-bottom: 1px solid #FFC107;
    padding: 10px 0;
}

.top-contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.top-contact-item i {
    color: #2596be;
    font-size: 14px;
}

.top-contact-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.top-contact-item a:hover {
    color: #2596be;
}

/* Main Navigation Bar */
.main-navbar {
    background-color: #fff;
    padding: 15px 0;
}

.navbar-brand {
    padding: 0;
    margin-right: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.navbar-toggler {
    border: 1px solid #1565C0;
    padding: 4px 8px;
}

.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(21, 101, 192, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
    gap: 15px;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: #1565C0;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2596be;
    background-color: rgba(37, 150, 190, 0.1);
}

.nav-link.active {
    color: #FFD700;
    font-weight: 700;
    background-color: transparent;
}

.nav-link.active::after {
    display: none;
}

/* Lodge Claim Button */
.btn-lodge-claim {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(21, 101, 192, 0.3);
}

.btn-lodge-claim:hover {
    background: linear-gradient(135deg, #0D47A1 0%, #1565C0 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.4);
}

.btn-lodge-claim:active {
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }
    
    .hero-row {
        min-height: 60vh;
    }
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fade 12s infinite;
    filter: blur(3px);
}

.hero-slide-1 {
    background-image: url('../images/ambulances-for-a-traffic-accident-2025-02-16-10-47-50-utc.jpg');
    animation-delay: 0s;
}

.hero-slide-2 {
    background-image: url('../images/portrait-of-multi-generation-african-american-fami-2024-10-19-08-09-10-utc.jpg');
    animation-delay: 6s;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    70% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, 
        rgba(21, 101, 192, 0.85) 0%, 
        rgba(37, 150, 190, 0.75) 30%,
        rgba(37, 150, 190, 0.5) 50%,
        rgba(255, 215, 0, 0.4) 70%,
        rgba(255, 215, 0, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-row {
    min-height: 70vh;
}

.hero-content-box {
    padding: 40px 40px 40px 0;
    max-width: 600px;
    text-align: left;
}


.hero-label {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-contact-us {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 14px 35px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-contact-us:hover {
    background: #fff;
    color: #1565C0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Insurance Types Section */
.insurance-types-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.insurance-types-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e0e0e0 50%, transparent 100%);
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2596be;
    margin-bottom: 12px;
}

.section-subheading {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 0;
}

.insurance-type-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.insurance-type-card:hover {
    transform: translateY(-8px);
    border-color: #2596be;
    box-shadow: 0 8px 24px rgba(37, 150, 190, 0.2);
    background: linear-gradient(135deg, #fff 0%, rgba(37, 150, 190, 0.05) 100%);
}

.card-icon-wrapper {
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.insurance-type-card:hover .card-icon-wrapper {
    transform: scale(1.1);
}

.insurance-type-icon {
    font-size: 48px;
    color: #333;
    transition: all 0.3s ease;
    display: block;
}

.insurance-type-card:hover .insurance-type-icon {
    color: #1565C0;
}

.insurance-type-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    transition: color 0.3s ease;
}

.insurance-type-card:hover .insurance-type-title {
    color: #FFD700;
}

/* Helper for 8 equal columns on large screens */
@media (min-width: 992px) {
    .col-lg-1-8 {
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
}

/* Self-Service Section */
.self-service-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.service-action-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 150, 190, 0.15);
    border: 2px solid rgba(37, 150, 190, 0.3);
}

.service-icon-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.service-icon {
    font-size: 50px;
    color: #fff;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.service-card-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    flex-grow: 1;
}

.btn-service-action {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
}

.btn-service-action:hover {
    background: linear-gradient(135deg, #0D47A1 0%, #1565C0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 101, 192, 0.4);
    color: #fff;
}

.customer-portal-card {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2596be;
    padding: 30px 30px 20px;
    margin: 0;
}

.portal-content {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    padding: 40px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.portal-description {
    font-size: 1rem;
    color: #333;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

.btn-portal-login {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
}

.btn-portal-login:hover {
    background: linear-gradient(135deg, #0D47A1 0%, #1565C0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 101, 192, 0.4);
    color: #fff;
}

/* Responsive Design */
@media (max-width: 991px) {
    .header-top-bar {
        display: none;
    }
    
    .main-navbar {
        padding: 10px 0;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .navbar-nav {
        margin-top: 15px;
        gap: 0;
    }
    
    .nav-link {
        padding: 12px 15px;
        border-radius: 0;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .nav-item.ms-3 {
        margin-left: 0 !important;
        margin-top: 10px;
    }
    
    .btn-lodge-claim {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-section {
        min-height: 60vh;
    }
    
    .hero-content-box {
        padding: 30px 20px;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-label {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .btn-contact-us {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    /* Section Headings Mobile */
    .section-heading {
        font-size: 1.75rem;
    }
    
    .section-subheading {
        font-size: 1rem;
    }
    
    /* Services Slider Mobile */
    .services-slider-section {
        padding: 50px 0;
    }
    
    .service-card-slider {
        padding: 25px 20px;
        min-height: auto;
    }
    
    .service-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .service-card-icon i {
        font-size: 28px;
    }
    
    .service-card-title {
        font-size: 1.1rem;
    }
    
    .service-card-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .btn-service-card {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Self-Service Section Mobile */
    .self-service-section {
        padding: 50px 0;
    }
    
    .service-action-card {
        padding: 35px 25px;
    }
    
    .service-icon-circle {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .service-icon {
        font-size: 40px;
    }
    
    .service-card-title {
        font-size: 1.3rem;
    }
    
    .service-card-description {
        font-size: 0.95rem;
    }
    
    .customer-portal-card {
        margin-top: 20px;
    }
    
    .portal-title {
        font-size: 1.3rem;
        padding: 25px 25px 15px;
    }
    
    .portal-content {
        padding: 30px 20px;
    }
    
    .portal-description {
        font-size: 0.9rem;
    }
    
    .btn-portal-login {
        padding: 14px 30px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .top-contact-info {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .top-contact-item {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    /* Section Headings Small Mobile */
    .section-heading {
        font-size: 1.5rem;
    }
    
    .section-subheading {
        font-size: 0.95rem;
    }
    
    /* Insurance Type Cards Small Mobile */
    .insurance-type-card {
        padding: 20px 15px;
        min-height: 140px;
    }
    
    .insurance-type-icon {
        font-size: 36px;
    }
    
    .insurance-type-title {
        font-size: 14px;
    }
    
    /* Services Slider Small Mobile */
    .service-card-slider {
        padding: 20px 15px;
    }
    
    .service-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-card-icon i {
        font-size: 24px;
    }
    
    .service-card-title {
        font-size: 1rem;
    }
    
    .service-card-text {
        font-size: 0.85rem;
    }
    
    /* Self-Service Small Mobile */
    .service-action-card {
        padding: 30px 20px;
    }
    
    .service-icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .service-icon {
        font-size: 32px;
    }
    
    .service-card-title {
        font-size: 1.1rem;
    }
    
    .service-card-description {
        font-size: 0.9rem;
    }
    
    /* Footer Small Mobile */
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-heading {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-contact li {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .newsletter-title {
        font-size: 12px;
    }
    
    .newsletter-form .form-control {
        font-size: 13px;
        padding: 10px 15px;
    }
    
    .btn-newsletter {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .connect-text {
        font-size: 12px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

/* Services Slider Section */
.services-slider-section {
    background-color: #fff;
    padding: 80px 0;
}

.service-card-slider {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card-slider:hover {
    transform: translateY(-8px);
    border-color: #2596be;
    box-shadow: 0 8px 25px rgba(37, 150, 190, 0.2);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1565C0 0%, #2596be 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card-slider:hover .service-card-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    transform: scale(1.1);
}

.service-card-icon i {
    font-size: 36px;
    color: #fff;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2596be;
    margin-bottom: 15px;
}

.service-card-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-service-card {
    background: transparent;
    color: #2596be;
    border: 2px solid #2596be;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.btn-service-card:hover {
    background: linear-gradient(135deg, #2596be 0%, #1565C0 100%);
    color: #fff;
    border-color: #2596be;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 150, 190, 0.4);
}

.btn-service-card i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-service-card:hover i {
    transform: translateX(5px);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2596be 0%, #1565C0 100%);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    box-shadow: 0 4px 15px rgba(37, 150, 190, 0.3);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 991px) {
    .carousel-control-prev {
        left: 10px;
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-next {
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }
}

/* Footer Styles */
.main-footer {
    background-color: #2c3e50;
    color: #fff;
}

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    padding: 25px 0;
}

.newsletter-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 6px 0 0 6px;
    padding: 12px 20px;
    font-size: 14px;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: #1565C0;
}

.btn-newsletter {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 0 6px 6px 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: linear-gradient(135deg, #0D47A1 0%, #1565C0 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.4);
}

.connect-text {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 15px;
}

.social-icons {
    display: inline-flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: #333;
    color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background: #1565C0;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.4);
}

/* Main Footer Content */
.footer-main {
    background-color: #2c3e50;
    padding: 60px 0 40px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #FFD700;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: #ecf0f1;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: #FFD700;
    font-size: 16px;
    margin-top: 2px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #1a252f;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: #bdc3c7;
    font-size: 13px;
    margin: 0;
}

.regulatory-text {
    color: #bdc3c7;
    font-size: 13px;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-newsletter {
        padding: 20px 0;
    }
    
    .footer-newsletter .row > div {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .newsletter-title {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form .form-control {
        border-radius: 6px;
        margin-bottom: 10px;
    }
    
    .btn-newsletter {
        border-radius: 6px;
        width: 100%;
    }
    
    .connect-text {
        display: block;
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-main {
        padding: 50px 0 35px;
    }
    
    .footer-main .row > div {
        margin-bottom: 30px;
    }
}

/* Floating Chat Button */
.floating-chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #2596be 0%, #1565C0 100%);
    color: #fff;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 150, 190, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 15px;
}

.floating-chat-button:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    color: #333;
}

.chat-button-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
}

.chat-button-text {
    font-weight: 600;
}

/* Chat Form */
.chat-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.chat-overlay.active {
    opacity: 1;
    visibility: visible;
}

.chat-form-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 400px;
    max-height: 600px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-form-container.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.chat-form-header {
    background: linear-gradient(135deg, #2596be 0%, #1565C0 100%);
    color: #fff;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.chat-close-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.chat-form-body {
    padding: 25px;
    overflow-y: auto;
    flex: 1;
}

.chat-form-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.chat-form-container .form-label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
}

.chat-form-container .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.chat-form-container .form-control:focus {
    border-color: #2596be;
    box-shadow: 0 0 0 0.2rem rgba(37, 150, 190, 0.25);
}

.btn-chat-submit {
    background: linear-gradient(135deg, #2596be 0%, #1565C0 100%);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-chat-submit:hover {
    background: linear-gradient(135deg, #1565C0 0%, #2596be 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 150, 190, 0.4);
    color: #fff;
}

.btn-chat-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    /* Hero Row Alignment */
    .hero-section .row {
        min-height: 60vh;
    }
    
    /* Container Padding */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Floating Chat Button */
    .floating-chat-button {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .chat-button-text {
        display: none;
    }
    
    .chat-button-icon {
        font-size: 24px;
    }
    
    /* Chat Form Mobile */
    .chat-form-container {
        bottom: 80px;
        right: 15px;
        left: 15px;
        width: auto;
        max-height: 80vh;
    }
    
    .chat-form-header {
        padding: 15px 20px;
    }
    
    .chat-form-title {
        font-size: 1.1rem;
    }
    
    .chat-form-body {
        padding: 20px;
    }
}
