/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #FF6B35 0%, #FFA726 100%);
    color: #333;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body.navbar-fixed .introduction {
    padding-top: 80px;
}

.navbar-brand img {
    height: 65px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    border-radius: 20px;
    padding: 8px 16px;
    margin: 0 5px;
    transition: all 0.3s;
    background: transparent;
    border: 1px solid #E65100;
    color: #E65100;
}

.navbar-nav .nav-link:hover {
    background: #E65100;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icons a {
    color: #E65100;
    font-size: 1.2rem;
    transition: color 0.3s;
    margin-left: 10px;
}

.social-icons a:hover {
    color: #FF6B35;
}

/* Introduction/Hero Section Styles */
.introduction {
    text-align: center;
    padding: 50px 20px;
    color: white;
    transition: padding-top 0.3s ease;
}

.introduction h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.introduction p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.hero-section {
    display: flex;
    height: 60vh;
    align-items: center;
    padding: 0;
}

.slider, .video-player {
    flex: 1;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin: 10px;
}

.carousel-item img {
    height: 315px;
    object-fit: fill;
    width: 100%;
}

.video-player video {
    width: 100%;
    height: 315px;
    object-fit: fill;
    border-radius: 10px;
}

/* Agents Section Styles */
.agents-section {
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.9);
    margin: 20px;
    border-radius: 10px;
}

.section-title {
    text-align: left;
    font-size: 1.8rem;
    font-weight: 700;
    color: #E65100;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid #FF6B35;
    padding-bottom: 5px;
}

.table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.table th {
    background: #E65100;
    color: white;
    border: none;
}

.table td {
    border: none;
    vertical-align: middle;
}

.pagination {
    justify-content: center;
    margin-top: 20px;
}

.pagination .page-link {
    color: #E65100;
    border-color: #E65100;
}

.pagination .page-link:hover {
    background: #E65100;
    color: white;
}

.pagination .page-item.active .page-link {
    background: #E65100;
    border-color: #E65100;
}

/* Floating QR Styles */
.floating-qr {
    position: fixed;
    right: 20px;
    top: 25%;
    transform: translateY(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.floating-qr img {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto;
}

.floating-qr .qr-text {
    font-size: 0.9rem;
    font-weight: bold;
    color: #E65100;
    margin-top: 5px;
}

.floating-qr:hover {
    transform: translateY(-50%) scale(1.05);
}

/* Footer Styles */
.footer {
    background: #343a40;
    color: white;
    padding: 40px 0;
    text-align: center;
}

/* Button Styles */
.btn-custom {
    margin: 0 10px;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s;
    font-size: 1rem;
    background: #FF6B35;
    border: none;
}

.btn-custom:hover {
    background: #E65100;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, #FF6B35 0%, #FFA726 100%);
    color: white;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
}

.modal-body {
    text-align: center;
    padding: 30px;
}

.modal-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.modal-body p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}

.modal-footer {
    border-top: none;
    justify-content: center;
}

/* Media Queries */

/* Tablet and smaller */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 30px;
    }

    .introduction h1 {
        font-size: 2.5rem;
    }

    .introduction p {
        font-size: 1rem;
    }

    .hero-section {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
    }

    .slider, .video-player {
        flex: none;
        width: 100%;
        margin: 10px 0;
        padding: 15px;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
    }

    .video-player video {
        height: 250px;
    }

    .carousel-item img {
        height: 250px;
    }

    .floating-qr {
        bottom: 20px;
        right: 10px;
        top: auto;
        transform: none;
    }

    .floating-qr img {
        width: 80px;
        height: 80px;
    }

    .floating-qr .qr-text {
        font-size: 0.8rem;
    }

    .floating-qr:hover {
        transform: scale(1.05);
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }

    .social-icons {
        margin-top: 10px;
        justify-content: center;
    }

    .footer {
        padding: 30px 0;
    }

    .btn-custom {
        margin: 5px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-body img {
        max-width: 80%;
    }
}

/* Mobile and smaller */
@media (max-width: 576px) {
    .introduction h1 {
        font-size: 2rem;
    }

    .introduction p {
        font-size: 0.9rem;
    }

    .hero-section {
        padding: 10px 0;
    }

    .slider, .video-player {
        padding: 10px;
    }

    .section-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .video-player video {
        height: 200px;
    }

    .carousel-item img {
        height: 200px;
    }

    .floating-qr {
        bottom: 10px;
        right: 5px;
    }

    .floating-qr img {
        width: 70px;
        height: 70px;
    }

    .floating-qr .qr-text {
        font-size: 0.7rem;
    }

    .btn-custom {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    body.navbar-fixed .introduction {
        padding-top: 40px;
    }

    .modal-body {
        padding: 15px;
    }

    .modal-body img {
        max-width: 70%;
    }
}