:root {
    --primary-color: #1a2a44;
    --primary-light: #2c3e50;
    --secondary-color: #c5a059;
    --accent-color: #f8f9fa;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --max-width: 1200px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
.serif {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

@media (max-width: 991px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.22rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.8rem;
    padding: 5px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .nav-container {
        height: 70px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        gap: 20px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #eee;
    }

    .nav-links .btn {
        text-align: center;
        margin-top: 10px;
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 1500;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

.nav-links a {
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    background-size: cover;
    background-position: center;
}

.slide h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.slide p {
    font-size: 1.1rem;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
}

@media (max-width: 991px) {
    .slide h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .slide h1 {
        font-size: 2.2rem;
    }

    .slide p {
        font-size: 1rem;
        max-width: 90%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .slide h1 {
        font-size: 1.8rem;
    }

    .slide p {
        font-size: 0.9rem;
    }
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    /* Further darkened for maximum contrast */
    z-index: 1;
}

.slide .container {
    position: relative;
    z-index: 2;
}

.slider-ctrl {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.ctrl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: 0.3s;
}

.ctrl-dot.active {
    background: var(--secondary-color);
    width: 30px;
    border-radius: 10px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    transform: translateY(-50%);
    z-index: 10;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-btn:hover {
    background: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.btn:hover {
    background: #b08d4a;
}

/* Sections */
section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title div {
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--accent-color);
    padding: 40px;
    text-align: center;
    border-bottom: 4px solid transparent;
    transition: 0.3s;
}

.service-card:hover {
    border-bottom: 4px solid var(--secondary-color);
    transform: translateY(-5px);
}

.service-card h3 {
    margin-top: 20px;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #cbd5e0;
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar .contact-info span {
        display: block;
        margin: 5px 0;
    }

    .top-bar .location {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-btns .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Disclaimer Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-container {
    background: var(--white);
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.modal-header h3 {
    margin-bottom: 25px;
    text-align: center;
    font-size: 2rem;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-body p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .modal-container {
        padding: 20px;
        max-height: 90vh;
    }
}