* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    font-size: 16px;
    min-height: 100vh;
    background-color: #1e3a5f;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.header {
    text-align: center;
    padding: 60px 0 40px;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    text-align: center;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-details {
    text-align: center;
    margin-top: 20px;
}

.address {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 200px;
    height: 60px;
    border-radius: 30px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3c72 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
    padding: 0 20px;
    gap: 10px;
}

.contact-icon:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.5);
    background: linear-gradient(135deg, #3a6bb5 0%, #2a4a87 100%);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.phone-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

/* Info Cards */
.info-card {
    background: rgba(135, 206, 235, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(135, 206, 235, 0.3);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 8px 20px rgba(0, 0, 0, 0.15);
}

.info-card h2 {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 3px solid rgba(135, 206, 235, 0.8);
    padding-bottom: 8px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hours-section .info-card h2 {
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid rgba(255, 255, 255, 0.8);
}

/* Operating Hours specific styling */
.hours-section .info-card {
    padding: 40px 50px;
    margin: 0 auto 30px;
    max-width: 800px;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Map Section */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(52, 152, 219, 0.2);
}

.map-container iframe {
    display: block;
}

/* Contact Information */
.info-item {
    margin-bottom: 15px;
}

.info-item strong {
    color: #ffffff;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.info-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Operating Hours */
.hours-grid {
    display: grid;
    gap: 8px;
    max-width: 400px;
    margin: 0 auto;
}

.day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.day:last-child {
    border-bottom: none;
}

.day:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding-left: 12px;
    padding-right: 12px;
    transform: translateX(5px);
}

.day-name {
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.time {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.service {
    padding: 20px;
    border: 1px solid rgba(135, 207, 235, 0.164);
    border-radius: 12px;
    background: rgba(135, 206, 235, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.2);
}

.service:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(135, 206, 235, 0.3);
    border-color: rgba(135, 207, 235, 0.363);
    background: rgba(135, 206, 235, 0.2);
}

.service h3 {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 40px 0 30px;
    }
    
    .title {
        font-size: 4rem;
    }
    
    .address {
        font-size: 1rem;
    }
    
    .contact-icon {
        min-width: 180px;
        height: 55px;
        padding: 0 15px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .phone-number {
        font-size: 1rem;
    }
    
    .info-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .day {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .time {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 3rem;
    }
    
    .address {
        font-size: 0.9rem;
    }
    
    .contact-icon {
        min-width: 160px;
        height: 50px;
        padding: 0 12px;
    }
    
    .contact-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .phone-number {
        font-size: 0.9rem;
    }
    
    .info-card {
        padding: 15px;
    }
    
    .info-card h2 {
        font-size: 1.3rem;
    }
} 
