/* Base Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
    line-height: 1.6;
}
section { padding: 60px 0; }
body { font-family: 'Inter', 'Poppins', sans-serif; }
button, .btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
}
@media(max-width:600px){
  .hero, .services, .contact { flex-direction: column; }
}

#site-root {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Modal Styles */
.modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.65);  /* ✔ REAL OVERLAY */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

/* Blur Effect */
.blur {
    filter: blur(5px);
    pointer-events: none;
}

/* No Scroll */
.no-scroll {
    overflow: hidden;
}

/* Button Styles */
.btn-primary {
    background-color: var(--gold);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #b38e36;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .flex-col-mobile {
        flex-direction: column;
    }
    
    .text-center-mobile {
        text-align: center;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    background: #0a1628;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    z-index: 1999;
}

.sidebar a {
    padding: 14px 20px;
    text-decoration: none;
    display: block;
    color: white;
    font-size: 18px;
}
site-tab {
    display: none !important;
}
