/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #17315e;
    background-color: #f8f9fa;
    padding-top: 70px;

}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

button {
    cursor: pointer;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #222;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.tag {
    display: inline-block;
    background-color: rgba(25, 135, 84, 0.1);
    color: #005eff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.get-started-btn {
    background-color: #005eff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.get-started-btn:hover {
    background-color: #005eff;
}

.get-started-btn::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url('rocket-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.view-demo-btn {
    background-color: transparent;
    color: #005eff;
    border: 1px solid #005eff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s, color 0.3s;
}

.view-demo-btn:hover {
    background-color: rgba(25, 135, 84, 0.1);
}

.view-demo-btn::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url('play-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Modern Header & Navbar Styles */
.modern-header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 40px;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    margin-right: 30px;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #17315e;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #005eff;
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #17315e;
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -400px;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-container {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

/* Mobile Navigation */
.mobile-nav {
    padding: 20px;
    flex-grow: 1;
}

.mobile-nav-links li {
    margin-bottom: 15px;
}

.mobile-nav-links a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-links a.active {
    background-color: #f0f0f0;
    color: #17315e;
}

.mobile-nav-links a:hover {
    background-color: #f8f9fa;
}

/* Mobile CTA Button */
.mobile-cta {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}

.mobile-cta .get-started-btn {
    width: 100%;
    padding: 15px;
    background-color: #005eff;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.mobile-cta .get-started-btn:hover {
    background-color: #0046cc;
}

/* Add space below header for fixed positioning */
body {
    padding-top: 70px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
}

/* Prevent body scrolling when mobile menu is open */
body.no-scroll {
    overflow: hidden;
}
/* Override hero background - add this at the end of your CSS file */
.hero {
    background-image: url('hero-bg.png') !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}


/* Packages Section */
.packages {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.package-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.package-toggle button {
    background-color: #e9ecef;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.package-toggle button.active {
    background-color: #005eff;
    color: white;
}

.packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.package-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.package-card h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #005eff;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price {
    margin-bottom: 25px;
}

.price h2 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.price p {
    color: #666;
}

.package-card .get-started-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 25px;
}

.features h4 {
    margin-bottom: 15px;
    color: #666;
    font-size: 1rem;
}

.features ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features ul li::before {
    content: "✓";
    color: #005eff;
    font-weight: bold;
}

.trial-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #666;
}

/* Coverage Section */
.coverage {
    padding: 80px 0;
    background-color: white;
}

.coverage-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.submit-btn {
    background-color: #005eff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #005eff;
}

.coverage-info {
    margin-top: 20px;
    color: #666;
    text-align: center;
}

/* Micro ISP Business Section */
.micro-isp {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.micro-isp-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: #005eff;
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quote {
    font-style: italic;
    margin-bottom: 20px;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 600;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

.trust-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}

.avatars img:first-child {
    margin-left: 0;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #666;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #666;
}

.contact-info a {
    color: #005eff;
    font-weight: 500;
}

/* Footer Section */
footer {
    background-color: #222;
    color: white;
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.link-group h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.link-group ul li {
    margin-bottom: 10px;
}

.link-group ul li a {
    color: #aaa;
    transition: color 0.3s;
}

.link-group ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    color: white;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #005eff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 0.9rem;
}

.legal-links a {
    color: #aaa;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: white;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Responsive Navbar */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
        z-index: 999;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 998;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        margin-right: 0;
        margin-bottom: 30px;
        width: 100%;
    }
    
    .nav-links li {
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 15px;
        font-size: 1.2rem;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .get-started-btn {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .nav-menu {
        width: 100%;
        max-width: none;
    }
}
/* Hero Section with Side-by-Side Layout */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    min-height: 100vh; /* This makes it take up the full viewport height */
    display: flex;
    align-items: center; /* Vertically center the content */
    position: relative;
    padding: 0; /* Remove default padding */
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero .container {
    width: 100%;
    z-index: 2;
    padding: 20px; /* Add some padding to the container instead */
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-micro-isp {
    flex: 1;
}

.micro-isp-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.micro-isp-card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.micro-isp-card p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.micro-isp-features-list {
    margin-bottom: 25px;
}

.micro-isp-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.micro-isp-features-list li i {
    color: #3877e4;
    font-size: 1.2rem;
}

.micro-isp-card .get-started-btn {
    width: 100%;
    justify-content: center;
}

/* Responsive adjustments for the hero section */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        justify-content: center;
        padding: 40px 0;
    }
    
    .hero-text {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-text .get-started-btn {
        margin: 0 auto;
    }
}

.hero {
    min-height: 100vh; /* Maintain full height on mobile */
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .micro-isp-card h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .micro-isp-card {
        padding: 20px;
    }
}
/* Hotspot Packages Section */
.hotspot-packages {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.hotspot-packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.hotspot-package-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hotspot-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.package-duration {
    font-size: 1.5rem;
    font-weight: 700;
    color: #005eff;
    margin-bottom: 15px;
}

.package-price {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.package-speed {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.hotspot-package-card .get-started-btn {
    width: 100%;
    justify-content: center;
}

.hotspot-cta {
    margin-top: 20px;
    text-align: center;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hotspot-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-btn {
    background-color: transparent;
    color: #005eff;
    border: 1px solid #005eff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.contact-btn:hover {
    background-color: rgba(25, 135, 84, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hotspot-packages-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .package-duration {
        font-size: 1.3rem;
    }
    
    .package-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hotspot-packages-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Contact Info Cards */
.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 94, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-container i {
    font-size: 24px;
    color: #005eff;
}

.contact-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 15px;
}

.contact-link {
    display: inline-block;
    color: #005eff;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #0046cc;
    text-decoration: underline;
}

/* Contact Form */
.contact-form-container {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-container h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #005eff;
    outline: none;
}

.submit-btn {
    background-color: #005eff;
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #0046cc;
}

/* Business Hours */
.business-hours {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.business-hours h3 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
}

.hours-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.hours-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    min-width: 200px;
}

.day {
    font-weight: 600;
    margin-bottom: 5px;
}

.time {
    color: #666;
}

/* Location Info */
.location-info {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: center;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 300px;
}

.address-container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.address-container h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

address {
    font-style: normal;
    line-height: 1.8;
    color: #666;
}

address a {
    display: inline-block;
    margin-top: 10px;
    color: #005eff;
    font-weight: 500;
}

address a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .location-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .hours-container {
        flex-direction: column;
    }
    
    .hours-item {
        padding: 10px 0;
    }
}

.success-message {
    text-align: center;
    padding: 30px;
}

.success-message i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 20px;
}

.success-message p {
    font-size: 1.2rem;
    color: #333;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.scroll-indicator i {
    font-size: 1.2rem;
}

.scroll-indicator:hover {
    opacity: 1;
}
.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-size: 0.9em;
}

.form-message.success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.form-message.error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

.submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}