/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #424242;
    background-color: #FFFFFF;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #1E4DB7;
    line-height: 1.2;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

p {
    margin-bottom: 16px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F7FA 100%);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    border-bottom: 2px solid #1E4DB7;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.logo {
    height: 55px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(30, 77, 183, 0.1));
}

.logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(30, 77, 183, 0.2));
}

.brand-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #1E4DB7;
    margin: 0;
    line-height: 1;
}

.brand-tagline {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin: 0;
    letter-spacing: 0.5px;
}

.header-nav {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #424242;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1E4DB7;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #1E4DB7;
}

.nav-link:hover::after {
    width: 100%;
}

@media (max-width: 767px) {
    .header-nav {
        display: none;
    }
    
    .brand-name {
        font-size: 16px;
    }
    
    .brand-tagline {
        font-size: 11px;
    }
}

/* Hero Section */
.hero {
    padding: 50px 0 60px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E8F4FD 50%, #F5F9FF 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 77, 183, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.maintenance-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1E4DB7 0%, #1565C0 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(30, 77, 183, 0.2);
    animation: fadeInDown 0.8s ease;
}

.badge-label {
    opacity: 0.8;
}

.badge-value {
    font-weight: 700;
}

.maintenance-icon {
    margin-bottom: 24px;
    animation: bounce 2s infinite;
    display: inline-block;
}

.maintenance-icon svg {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 8px 16px rgba(30, 77, 183, 0.15));
}

.hero-title {
    color: #1E4DB7;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
    font-size: 42px;
}

.hero-subtitle {
    color: #555;
    font-size: 16px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    line-height: 1.6;
}

.estimation-container {
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.estimation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
    padding: 14px 24px;
    border-radius: 50px;
    border: 2px solid #FFE082;
    margin-top: 0;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.15);
    transition: all 0.3s ease;
}

.estimation:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.2);
}

.estimation-icon {
    flex-shrink: 0;
}

.estimation-text {
    font-weight: 600;
    color: #424242;
    margin: 0;
    font-size: 15px;
}

.estimation-text strong {
    color: #1E4DB7;
    font-weight: 700;
}

/* Trust Section */
.trust-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 100%);
    flex-shrink: 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 32px 24px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E8EEFF;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(30, 77, 183, 0.04);
}

.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(30, 77, 183, 0.12);
    border-color: #1E4DB7;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1E4DB7 0%, #1565C0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 15px rgba(30, 77, 183, 0.15);
}

.trust-title {
    font-size: 18px;
    color: #1E4DB7;
    margin-bottom: 8px;
}

.trust-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Info Section */
.info-section {
    display: none;
}

.info-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #E0E0E0;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.info-title {
    color: #1E4DB7;
    margin-bottom: 12px;
    font-size: 22px;
}

.info-text {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.apology {
    font-weight: 600;
    color: #1E4DB7;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1E4DB7 0%, #1565C0 100%);
    text-align: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-title {
    color: white;
    margin-bottom: 12px;
    font-size: 28px;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.3s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
}

.whatsapp-button:hover {
    background-color: #20ba5a;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.instagram-button {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%);
    color: white;
}

.instagram-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(131, 58, 180, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1E4DB7 0%, #1565C0 100%);
    color: white;
    padding: 20px 0 10px;
    flex-shrink: 0;
}

.footer-content {
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

.operational-hours {
    margin-bottom: 16px;
}

.hours-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

.copyright {
    font-size: 13px;
    opacity: 0.8;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 15px;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #E3F2FD;
    border-top: 4px solid #1E4DB7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design - Tablet */
@media (max-width: 1023px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    .hero {
        padding: 40px 0 50px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 16px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 18px;
    }
    
    h3 {
        font-size: 16px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .logo-section {
        gap: 12px;
    }
    
    .logo {
        height: 45px;
    }
    
    .brand-name {
        font-size: 15px;
    }
    
    .hero {
        padding: 30px 0 40px;
    }
    
    .maintenance-icon svg {
        width: 80px;
        height: 80px;
    }
    
    .hero-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .estimation {
        padding: 12px 18px;
        flex-direction: row;
        gap: 8px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .trust-item {
        padding: 24px 18px;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .cta-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 13px;
        min-width: 160px;
    }
    
    .footer {
        padding: 20px 0 10px;
    }
    
    .contact-item, .hours-item {
        font-size: 12px;
    }
    
    .copyright {
        font-size: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    h1 {
        font-size: 20px;
    }
    
    h2 {
        font-size: 16px;
    }
    
    .hero {
        padding: 15px 0;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .info-card {
        padding: 14px;
    }
    
    .cta-button {
        padding: 10px 16px;
        font-size: 12px;
        min-width: 160px;
    }
}

/* Focus States for Accessibility */
.cta-button:focus,
.contact-item a:focus {
    outline: 2px solid #FFC107;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .cta-section,
    .loading-overlay {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        background: none;
        padding: 20px 0;
    }
    
    .info-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}