/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    padding: 5px 0;
}

.navbar {
    padding: 0 2rem;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: height 0.3s ease;
}

.header.scrolled .nav-container {
    height: 70px;
}

/* Logo Styles */
.logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 2.2rem;
    font-weight: bold;
    color: #2c5aa0;
    letter-spacing: -1px;
    line-height: 1;
    transition: all 0.3s ease;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.header.scrolled .logo-text {
    font-size: 1.8rem;
}

.header.scrolled .logo-subtitle {
    font-size: 0.65rem;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    white-space: nowrap;
}

.nav-link i {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    color: #2c5aa0;
    background: rgba(44, 90, 160, 0.1);
}

.nav-link:hover i {
    opacity: 1;
}

.nav-link.active {
    color: #2c5aa0;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #2c5aa0;
    border-radius: 50%;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 2rem;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.phone-cta {
    background: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.phone-cta:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.booking-cta {
    background: linear-gradient(135deg, #2c5aa0, #3a6bc0);
    color: white;
    border: 2px solid transparent;
}

.booking-cta:hover {
    background: linear-gradient(135deg, #3a6bc0, #4a7bd0);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
}

/* Mobile Menu Toggle (Hamburger) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    margin-left: 15px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 1024px) {
    .navbar {
        padding: 0 1.5rem;
    }
    
    .nav-link {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .nav-actions {
        margin-left: 1rem;
    }
    
    .nav-cta {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 2rem 0;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: flex;
        align-items: center;
        padding: 1.2rem 2rem;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        font-size: 1.1rem;
        border-radius: 0;
        gap: 12px;
    }

    .nav-link.active::after {
        left: 20px;
        transform: none;
        bottom: 50%;
        margin-bottom: -3px;
    }

    .nav-actions {
        display: none;
    }

    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 2rem;
        margin-top: auto;
        border-top: 1px solid #f0f0f0;
    }

    .mobile-actions .nav-cta {
        justify-content: center;
        text-align: center;
    }

    /* Hamburger Animation */
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

@media screen and (max-width: 480px) {
    .nav-container {
        height: 70px;
    }
    
    .header.scrolled .nav-container {
        height: 60px;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    .header.scrolled .logo-text {
        font-size: 1.6rem;
    }
    
    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
        width: 100%;
    }
}

/* Demo Content Styles */
.main-content {
    margin-top: 80px;
}

.hero-section {
    background: linear-gradient(135deg, #2c5aa0, #3a6bc0);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Dropdown Menu Styles (Optional Enhancement) */
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 0.5rem 0;
}

.dropdown-item {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8f8f8;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(44, 90, 160, 0.1);
    color: #2c5aa0;
}

/* Animation for navigation items */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-item {
    animation: slideInDown 0.5s ease forwards;
}

.nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-item:nth-child(2) { animation-delay: 0.2s; }
.nav-item:nth-child(3) { animation-delay: 0.3s; }
.nav-item:nth-child(4) { animation-delay: 0.4s; }
.nav-item:nth-child(5) { animation-delay: 0.5s; }
.nav-item:nth-child(6) { animation-delay: 0.6s; }

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2c5aa0, transparent);
}

/* Main Footer Content */
.footer-main {
    padding: 60px 0 40px;
    position: relative;
}

.footer-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    align-items: start;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.brand-column {
    grid-column: span 1;
}

/* Brand Section */
.footer-logo {
    margin-bottom: 20px;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.logo-text {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c5aa0;
    letter-spacing: -1px;
    line-height: 1;
    transition: color 0.3s ease;
}

.logo-subtitle {
    display: block;
    font-size: 0.75rem;
    color: #ecf0f1;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.logo-link:hover .logo-text {
    color: #3a6bc0;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: #2c5aa0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
}

/* Column Titles */
.column-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ecf0f1;
    position: relative;
    padding-bottom: 10px;
}

.column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #2c5aa0;
    border-radius: 1px;
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    color: #2c5aa0;
    transform: translateX(5px);
}

.footer-links a:hover i {
    opacity: 1;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    color: #2c5aa0;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.contact-details strong {
    display: block;
    color: #ecf0f1;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-details p {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.contact-details a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #2c5aa0;
}

/* Hours Info */
.hours-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    color: #ecf0f1;
    font-size: 0.9rem;
}

.time {
    color: #2c5aa0;
    font-weight: 600;
    font-size: 0.9rem;
}

.hours-note {
    background: rgba(44, 90, 160, 0.2);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #bdc3c7;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hours-note i {
    color: #2c5aa0;
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-section h4 {
    font-size: 1.1rem;
    color: #ecf0f1;
    margin-bottom: 5px;
}

.newsletter-section p {
    color: #bdc3c7;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.newsletter-form {
    margin-top: 15px;
}

.input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: #2c5aa0;
    box-shadow: 0 0 0 2px rgba(44, 90, 160, 0.2);
}

.input-group input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 0.9rem;
    background: transparent;
    outline: none;
    color: white;
}

.input-group input::placeholder {
    color: #95a5a6;
}

.newsletter-btn {
    background: #2c5aa0;
    border: none;
    color: white;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: #3a6bc0;
    transform: scale(1.05);
}

.newsletter-message {
    margin-top: 8px;
    font-size: 0.8rem;
    min-height: 16px;
    text-align: center;
}

.newsletter-message.success {
    color: #27ae60;
}

.newsletter-message.error {
    color: #e74c3c;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copyright p {
    color: #95a5a6;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #2c5aa0;
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #2c5aa0;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #bdc3c7;
    font-size: 0.85rem;
}

.payment-icons {
    display: flex;
    gap: 8px;
}

.payment-icons i {
    font-size: 1.4rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c5aa0, #3a6bc0);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.6);
}

/* Quick Action Buttons */
.quick-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.quick-action {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.quick-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
}

.quick-action.phone {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.quick-action.location {
    background: linear-gradient(135deg, #e74c3c, #e67e22);
}

.quick-action.message {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.quick-action.booking {
    background: linear-gradient(135deg, #2c5aa0, #3a6bc0);
}

.quick-action:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.action-tooltip {
    position: absolute;
    right: 65px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.quick-action:hover .action-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Water Droplet Animation */
.water-droplet {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(44, 90, 160, 0.1), transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

.droplet-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.droplet-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 8%;
    animation-delay: 2s;
}

.droplet-3 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 90%;
    animation-delay: 4s;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.footer-column {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }
.footer-column:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 30px;
    }
    
    .footer-column:last-child {
        grid-column: 1 / -1;
        margin-top: 20px;
    }
    
    .hours-info {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .brand-column {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a:hover {
        transform: none;
    }
}

@media screen and (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .hours-item {
        justify-content: center;
        gap: 15px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-links {
        order: -1;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .payment-methods {
        flex-direction: column;
        gap: 10px;
    }
    
    .quick-actions {
        left: 15px;
        bottom: 15px;
    }
    
    .back-to-top {
        right: 15px;
        bottom: 15px;
    }
    
    .quick-action,
    .back-to-top {
        width: 45px;
        height: 45px;
    }
    
    .action-tooltip {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .footer-main {
        padding: 30px 0 20px;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .input-group input {
        border-radius: 8px 8px 0 0;
    }
    
    .newsletter-btn {
        border-radius: 0 0 8px 8px;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact & Hours Section */
.contact-hours {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #e8f4f8 100%);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2c5aa0, #3a6bc0);
    margin: 0 auto;
    border-radius: 2px;
}

/* Content Layout */
.contact-hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Contact Information Section */
.contact-header {
    margin-bottom: 30px;
}

.contact-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.15);
    border-color: #2c5aa0;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2c5aa0, #3a6bc0);
}

.card-icon {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.card-content h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-detail i {
    color: #2c5aa0;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-text strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.detail-text p {
    color: #555;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.detail-text a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-text a:hover {
    color: #3a6bc0;
    text-decoration: underline;
}

.detail-text small {
    color: #888;
    font-size: 0.8rem;
}

/* Card Actions */
.card-actions {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

.directions-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

.copy-btn {
    background: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.copy-btn:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

.call-btn {
    background: linear-gradient(135deg, #e74c3c, #e67e22);
    color: white;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.sms-btn {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.sms-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.4);
}

.email-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Card Badges */
.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2c5aa0, #3a6bc0);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Quick Actions Section */
.quick-actions-section {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.quick-actions-section h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.quick-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    text-align: center;
}

.quick-action:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.quick-action i {
    font-size: 1.5rem;
}

.quick-action span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hours Section */
.hours-header {
    margin-bottom: 30px;
}

.hours-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-header p {
    color: #666;
    font-size: 1.1rem;
}

.hours-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Hours Cards */
.hours-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.hours-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.hours-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.hours-card-header h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 600;
}

/* Status Indicator */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.status-indicator.open {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.status-indicator.closed {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.open .status-dot {
    background: #27ae60;
}

.status-indicator.closed .status-dot {
    background: #e74c3c;
}

.special-badge {
    background: linear-gradient(135deg, #e67e22, #e74c3c);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Hours List */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.hours-item:hover {
    background: #f8fafc;
    border-color: #e0e0e0;
}

.hours-item.today {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1), rgba(58, 107, 192, 0.1));
    border-color: #2c5aa0;
}

.day {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.time {
    color: #2c5aa0;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Special Hours */
.special-hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.special-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #e67e22;
}

.occasion {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
    flex: 1;
}

.date {
    color: #666;
    font-size: 0.85rem;
    margin-right: 15px;
}

.special-time {
    font-weight: 600;
    color: #27ae60;
    font-size: 0.9rem;
}

.special-time.closed {
    color: #e74c3c;
}

/* Notes */
.hours-note,
.special-note {
    background: rgba(44, 90, 160, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #2c5aa0;
}

.special-note {
    background: rgba(231, 126, 34, 0.1);
    color: #e67e22;
}

/* Holiday Notice */
.holiday-notice {
    background: linear-gradient(135deg, #2c5aa0, #3a6bc0);
    color: white;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.notice-icon {
    font-size: 2rem;
    opacity: 0.8;
}

.notice-content h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.notice-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.notice-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.notice-close:hover {
    opacity: 1;
}

/* Current Time Display */
.current-time-section {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
}

.time-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.local-time,
.time-zone {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.local-time i,
.time-zone i {
    font-size: 2rem;
    color: #2c5aa0;
}

.time-info {
    display: flex;
    flex-direction: column;
}

.time-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.current-time {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    font-family: 'Courier New', monospace;
}

.time-zone-text {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Map Preview Section */
.map-preview-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-header {
    text-align: center;
    margin-bottom: 30px;
}

.map-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.map-header p {
    color: #666;
    font-size: 1.1rem;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.map-placeholder {
    background: linear-gradient(135deg, #f8fafc, #e8f4f8);
    border: 2px dashed #2c5aa0;
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 300px;
}

.map-placeholder i {
    font-size: 4rem;
    color: #2c5aa0;
    opacity: 0.7;
}

.map-placeholder h4 {
    font-size: 1.5rem;
    color: #2c3e50;
}

.map-placeholder p {
    color: #666;
    margin-bottom: 20px;
}

.map-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #2c5aa0, #3a6bc0);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
}

.location-features {
    background: #f8fafc;
    border-radius: 15px;
    padding: 25px;
}

.location-features h5 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.location-features ul {
    list-style: none;
}

.location-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
}

.location-features li:last-child {
    border-bottom: none;
}

.location-features li i {
    color: #2c5aa0;
    width: 16px;
}

/* Copy Toast */
.copy-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.copy-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .contact-hours-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .time-display {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .contact-hours {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-cards {
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .card-actions {
        flex-direction: column;
    }
    
    .action-btn {
        flex: none;
    }
    
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-card-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .special-hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .date {
        margin-right: 0;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-detail {
        flex-direction: column;
        gap: 8px;
    }
    
    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .holiday-notice {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .local-time,
    .time-zone {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .map-preview-section {
        padding: 25px 20px;
    }
}