body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff; /* White background */
    padding-top: 0;
}

.carousel-container {
    position: relative;
    width: 100%;
}
.navbar-inside-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    background-color: transparent !important;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar-inside-carousel.scrolled {
    background-color: rgba(0, 0, 0, 0.95) !important; /* Black with transparency */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    position: fixed;
    padding: 10px 0;
}

/* Logo styles - CIRCULAR LOGO */
.navbar-brand {
    display: flex;
    align-items: center;
    color: #ffffff !important; /* White text */
    font-weight: 700;
    font-size: 1.8rem;
}

.navbar-logo {
    height: 50px; /* Make it a square or adjust for circle */
    width: 50px; /* Same as height for perfect circle */
    margin-right: 12px;
    transition: all 0.3s ease;
    border-radius: 50%; /* This makes it circular */
    object-fit: cover; /* Ensures the image fits nicely in the circle */
    border: 2px solid #ff0000; /* Red border */
    padding: 2px; /* Space between image and border */
}

/* When navbar is scrolled */
.navbar-inside-carousel.scrolled .navbar-logo {
    height: 40px; /* Slightly smaller when scrolled */
    width: 40px; /* Keep same as height */
}

/* Logo hover effect */
.navbar-logo:hover {
    transform: scale(1.05);
    border-color: #ffffff; /* White border on hover */
}

.navbar-brand i {
    color: #ff0000; /* Red accent */
    margin-right: 10px;
}

.nav-link {
    color: #ffffff !important; /* White text */
    font-weight: 500;
    margin: 0 8px;
    padding: 10px 15px !important;
}

.nav-link:hover, .nav-link.active {
    color: #ff0000 !important; /* Red on hover/active */
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 15px;
    background-color: #ff0000; /* Red underline */
    transition: width 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
    width: calc(100% - 30px);
}

/* Auth Buttons Styles */
.auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-login, .btn-register {
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.btn-login {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-register {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
}

.btn-register:hover {
    background-color: #c82333;
    border-color: #bd2130;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Animation for register button */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-register:hover {
    animation: pulse 1.5s infinite;
}

/* For navbar inside carousel */
.navbar-inside-carousel .auth-buttons {
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile responsiveness for auth buttons */
@media (max-width: 992px) {
    .auth-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
        padding: 15px;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
    }
    
    .navbar-inside-carousel .auth-buttons {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 15px;
        margin-top: 15px;
    }
    
    .btn-login, .btn-register {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .btn-login:last-child, .btn-register:last-child {
        margin-bottom: 0;
    }
}

.gce-carousel {
    position: relative;
    z-index: 1;
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
}
.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}


.carousel-caption {
    bottom: 30%;
    background: rgba(0, 0, 0, 0.8); 
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    max-width: 700px;
    margin: 0;
    left: 15%; /* Position from left */
    right: auto; /* Ensure it doesn't stretch */
    transform: none; /* Remove centering transform */
    backdrop-filter: blur(5px);
    padding-top: 80px; 
    border: 2px solid #ff0000; 
}
.carousel-caption h5 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff; /* White text */
}

.carousel-caption p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #f0f0f0; /* Light gray text */
}

.carousel-indicators {
    bottom: 15%;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.carousel-indicators button.active {
    background-color: #ff0000; /* Red active indicator */
    border-color: #ffffff; /* White border */
    transform: scale(1.2);
}

.carousel-control-prev, .carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7); /* Black background */
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    transition: all 0.3s;
    border: 2px solid #ff0000; /* Red border */
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    background-color: rgba(255, 0, 0, 0.8); /* Red on hover */
}


.content-section {
    padding-top: 80px;
}

.featured-section {
    padding: 100px 0;
    background-color: #ffffff; /* White background */
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #000000; /* Black text */
}

.section-title h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.feature-card {
    border: 2px solid #000000; /* Black border */
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #ffffff; /* White background */
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.1); /* Red shadow on hover */
    border-color: #ff0000; /* Red border on hover */
}

.feature-card img {
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s;
}

.feature-card:hover img {
    transform: scale(1.05);
}

.card-body {
    padding: 25px;
}

.card-title {
    color: #000000; /* Black text */
    font-weight: 700;
    margin-bottom: 15px;
}

.price-tag {
    color: #ff0000; /* Red price */
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: 15px;
}

/* Core Features Section */
.features-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 15px 30px rgba(255,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 30px;
}

.feature-item h4 {
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    margin-bottom: 0;
}

/* Alternative Feature Cards */
.feature-card-alt {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    height: 100%;
    border: 2px solid #e9ecef;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.feature-card-alt:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 15px 30px rgba(255,0,0,0.1);
}

.feature-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    opacity: 0.7;
}

.feature-card-alt h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card-alt p {
    color: #666;
    margin-bottom: 20px;
}

.feature-arrow {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 1.5rem;
}

/* Reviews Section Styles */
.reviews-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.rating-summary {
    margin-top: 15px;
}

.rating-summary .stars {
    font-size: 1.2rem;
}

/* Review Cards */
.review-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 15px 30px rgba(255,0,0,0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff0000;
}

.reviewer-info h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.review-stars {
    color: #ff0000;
    font-size: 0.9rem;
    margin-top: 5px;
}

.review-date {
    color: #777;
    font-size: 0.85rem;
}

.review-body {
    flex: 1;
    margin-bottom: 20px;
}

.review-body p {
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.review-footer {
    margin-top: auto;
}

.review-link {
    color: #1877f2;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.review-link:hover {
    color: #ff0000;
}

/* Facebook Widget */
.fb-reviews-widget {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid #1877f2;
}

/* Map Section Styles */
.map-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #ff0000;
}

.map-container iframe {
    display: block;
}

.location-info {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #ff0000;
}

.location-info h4 {
    color: #000000;
    margin-bottom: 15px;
    font-weight: 600;
}

.location-info p {
    color: #666;
    margin-bottom: 10px;
}

/* Contact Widget Styles */
.contact-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.chat {
    background-color: #ff0000;
    border: 2px solid white;
}

.whatsapp {
    background-color: #25D366;
}

.phone {
    background-color: #000000;
}

.contact-button:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Contact Modal Styles */
.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    border: 2px solid #ff0000;
    border-radius: 10px;
    overflow: hidden;
}

.btn-outline-danger, .btn-outline-success, 
.btn-outline-dark, .btn-outline-primary {
    transition: all 0.3s ease;
}

.btn-outline-danger:hover {
    background-color: #ff0000;
    color: white;
}

.btn-outline-success:hover {
    background-color: #25D366;
    color: white;
}

.btn-outline-dark:hover {
    background-color: #000000;
    color: white;
}

.btn-outline-primary:hover {
    background-color: #7360f2;
    color: white;
}

/* Custom Tawk.to Widget Styling */
.tawk-button {
    background-color: #ff0000 !important;
    border: 2px solid white !important;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3) !important;
}

.tawk-button:hover {
    background-color: #cc0000 !important;
    transform: scale(1.1) !important;
}

.tawk-min-container {
    border: 2px solid #ff0000 !important;
    border-radius: 10px 10px 0 0 !important;
}

.tawk-header {
    background-color: #000000 !important;
    color: white !important;
}

/* CTA Section Styles */
.cta-section {
    background-color: #000000; /* Black background */
    color: white;
    padding: 100px 0;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1493238792000-8113da705763?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    border-top: 3px solid #ff0000; /* Red top border */
    border-bottom: 3px solid #ff0000; /* Red bottom border */
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff; /* White text */
}

.cta-section .lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #ffffff; /* White text */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff; /* White text */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Option 1: Simple & Direct */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Option 2: With Stats/Proof Points */
.cta-stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    margin-bottom: 15px;
}

.cta-stat h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: #ff0000;
}

.cta-stat p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Option 3: With Form */
.cta-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.cta-features li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.cta-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-form h4 {
    color: white;
    margin-bottom: 25px;
}

.cta-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.cta-form .form-control:focus {
    background: white;
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.3);
}

/* Option 4: Urgency/Scarcity */
.cta-badge {
    display: inline-block;
    background: #ff0000;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 80px;
    backdrop-filter: blur(5px);
}

.countdown-item span {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    color: white;
}

.countdown-item small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Option 5: Trust Building */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ff0000;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.testimonial-text {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-author {
    color: white;
    font-weight: 600;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: normal;
}

.cta-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ff0000;
    backdrop-filter: blur(10px);
}

.cta-highlight h3 {
    color: #ff0000;
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-highlight p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #ff0000; /* Red button */
    border: 2px solid #ff0000;
    padding: 12px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    color: #ffffff; /* White text */
}

.btn-primary:hover {
    background-color: #cc0000; /* Darker red on hover */
    border-color: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3); /* Red shadow */
    color: #ffffff;
}

.btn-danger {
    background-color: #ff0000; /* Red button */
    border: 2px solid #ff0000;
    padding: 12px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    color: #ffffff; /* White text */
}

.btn-danger:hover {
    background-color: #cc0000; /* Darker red on hover */
    border-color: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3); /* Red shadow */
    color: #ffffff;
}

.btn-outline-light {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: #000000;
}

/* Footer Styles */
footer {
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
    padding: 60px 0 20px;
    border-top: 3px solid #ff0000; /* Red top border */
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-brand h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-brand p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ff0000;
}

.contact-info {
    margin-top: 10px;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: #ff0000;
    margin-right: 10px;
    width: 20px;
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

.business-hours {
    margin-top: 15px;
    padding-left: 30px;
}

.business-hours p {
    color: #cccccc;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.modal-content {
    border: 3px solid #ff0000;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.divider span {
    background: white;
    padding: 0 10px;
}

/* Input group styling */
.input-group-text {
    background-color: #f8f9fa;
    border-right: none;
}

.form-control:focus {
    border-color: #ff0000;
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .carousel-item {
        height: 80vh;
        min-height: 500px;
    }
    
    .carousel-caption {
        bottom: 20%;
        padding: 20px;
        width: 90%;
        padding-top: 60px;
        left: 5%; 
        transform: none;
    }
    
    .carousel-caption h5 {
        font-size: 1.8rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .carousel-indicators {
        bottom: 10%;
    }
    
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    /* Logo adjustments for mobile */
    .navbar-logo {
        height: 40px;
        width: 40px;
        margin-right: 8px;
    }
    
    .navbar-inside-carousel.scrolled .navbar-logo {
        height: 35px;
        width: 35px;
    }
    
    .nav-link {
        padding: 8px 10px !important;
    }
    
    .featured-section, .cta-section, .features-section, .map-section, .reviews-section {
        padding: 70px 0;
    }
    
    /* Map responsive adjustments */
    .map-container iframe {
        height: 350px;
    }
    
    /* Features section adjustments */
    .feature-item {
        padding: 20px;
    }
    
    /* Alternative feature cards adjustments */
    .feature-card-alt {
        padding: 20px;
    }
    
    .feature-number {
        font-size: 2.5rem;
    }
    
    /* Contact widget responsive */
    .contact-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .contact-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .cta-stat h3 {
        font-size: 2rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 10px 15px;
    }
    
    .countdown-item span {
        font-size: 2rem;
    }
    
    /* Reviews responsive */
    .review-card {
        padding: 20px;
    }
    
    .fb-reviews-widget {
        padding: 15px;
    }
    
    /* Footer responsive */
    .footer-content {
        flex-direction: column;
    }
    
    .footer-section {
        min-width: 100%;
        margin-bottom: 30px;
    }
    
    .footer-links h4 {
        font-size: 1.1rem;
    }
}


@media (max-width: 576px) {
    .navbar-logo {
        height: 35px;
        width: 35px;
    }
    
    .navbar-inside-carousel.scrolled .navbar-logo {
        height: 30px;
        width: 30px;
    }
    
    .carousel-caption {
        left: 3%;
        width: 94%;
        padding: 15px;
        padding-top: 50px;
        bottom: 15%;
    }
    
    .carousel-caption h5 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .carousel-item {
        height: 70vh;
        min-height: 400px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .location-info {
        padding: 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 25px;
    }
    
    .feature-card-alt h3 {
        font-size: 1.3rem;
    }
    
    .feature-arrow {
        bottom: 15px;
        right: 15px;
        font-size: 1.2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section .lead {
        font-size: 1.1rem;
    }
    
    .cta-stat {
        padding: 10px;
    }
    
    .cta-stat h3 {
        font-size: 1.8rem;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 8px 12px;
    }
    
    .countdown-item span {
        font-size: 1.8rem;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }
    
    .modal-content {
        margin: 10px;
    }
    
    .btn-outline-danger, .btn-outline-success, 
    .btn-outline-dark, .btn-outline-primary {
        padding: 10px !important;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }

    .modal-dialog {
        margin: 10px;
    }
    
    .modal-header h5 {
        font-size: 1.1rem;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: rgba(255, 0, 0, 0.8); /* Red scroll indicator */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}