*, ::after, ::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #ebeae6 0%, #f5f4f2 100%);
    min-height: 100vh;
    color: #11293d;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.maintenance-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(17, 41, 61, 0.1),
        0 8px 24px rgba(17, 41, 61, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 1400px;
    overflow: hidden;
    position: relative;
}

.maintenance-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, rgba(189, 153, 117, 0.03), transparent);
    transform: rotate(15deg);
    pointer-events: none;
}

.header {
    padding: 3rem 3rem 2rem;
    text-align: center;
    position: relative;
}

.logo-container {
    display: inline-block;
    position: relative;
}

.logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 8px 16px rgba(17, 41, 61, 0.1));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.main-content {
    padding: 0 3rem 3rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.left-section {
    padding-right: 2rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    color: #bd9975;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #bd9975;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(189, 153, 117, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(189, 153, 117, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(189, 153, 117, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(189, 153, 117, 0);
    }
}

.main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #11293d;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #11293d;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.contact-item i {
    color: #bd9975;
    font-size: 1.1rem;
    width: 20px;
}

.contact-item a {
    color: #11293d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #bd9975;
    transform: translateX(5px);
}

.quick-links h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #11293d;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.links-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.link-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #11293d, #1a3a52);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(17, 41, 61, 0.2);
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(17, 41, 61, 0.3);
    background: linear-gradient(135deg, #0d1f2d, #11293d);
}

.link-button i {
    font-size: 0.9rem;
}

.right-section {
    padding-left: 2rem;
}

.services-container {
    background: linear-gradient(135deg, rgba(17, 41, 61, 0.02), rgba(189, 153, 117, 0.02));
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(189, 153, 117, 0.1);
    backdrop-filter: blur(5px);
}

.services-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #11293d;
    margin-bottom: 0.5rem;
}

.services-header p {
    color: #4a5568;
    font-size: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.service-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(189, 153, 117, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.service-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(189, 153, 117, 0.2);
    box-shadow: 0 8px 24px rgba(17, 41, 61, 0.08);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #bd9975, #d4b896);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: linear-gradient(135deg, #11293d, #1a3a52);
    transform: scale(1.1);
}

.service-icon i {
    color: white;
    font-size: 1.2rem;
}

.service-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #11293d;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-item p {
    color: #6a737d;
    font-size: 0.9rem;
    line-height: 1.4;
}

.social-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #11293d;
    margin-bottom: 1.5rem;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(5px);
}

.social-link.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
    color: white;
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    color: white;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.social-link i {
    font-size: 1.3rem;
}

.footer {
    background: linear-gradient(135deg, #11293d, #1a3a52);
    padding: 2rem 3rem;
    color: white;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links a {
    color: #ebeae6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #bd9975;
}

.divider {
    color: rgba(235, 234, 230, 0.5);
}

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .left-section,
    .right-section {
        padding: 0;
    }
    
    .main-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .header {
        padding: 2rem 2rem 1.5rem;
    }
    
    .main-content {
        padding: 0 2rem 2rem;
    }
    
    .logo {
        height: 80px;
    }
    
    .main-heading {
        font-size: 2.2rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .services-container {
        padding: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .links-container {
        flex-direction: column;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
    }
    
    .header,
    .main-content {
        padding: 1.5rem;
    }
    
    .maintenance-wrapper {
        border-radius: 16px;
    }
    
    .main-heading {
        font-size: 1.8rem;
    }
    
    .services-container {
        padding: 1.5rem;
    }
    
    .social-link {
        padding: 0.875rem 1.25rem;
    }
    
    .footer {
        padding: 1.5rem;
    }
}

.maintenance-wrapper {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item {
    animation: fadeInUp 0.6s ease-out;
}

.service-item:nth-child(2) {
    animation-delay: 0.1s;
}

.service-item:nth-child(3) {
    animation-delay: 0.2s;
}

.service-item:nth-child(4) {
    animation-delay: 0.3s;
}