/* --- CSS VARIABLES & RESET --- */
:root {
    --primary-dark: #1e293b; /* Dark Slate */
    --primary-gold: #c5a059; /* Muted Gold */
    --secondary-silver: #e2e8f0; /* Silver/Light Gray */
    --text-dark: #333333;
    --text-light: #f8fafc;
    --white: #ffffff;
    --spacing-standard: 80px;
}

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

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

/* --- UTILITIES --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-gold);
    color: var(--white);
    border: 2px solid var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-gold);
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

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

/* --- HEADER --- */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
}

.logo i {
    color: var(--primary-gold);
    margin-right: 10px;
}

.logo span {
    font-size: 0.9rem;
    color: #777;
    margin-left: 5px;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
}

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

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

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

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(rgba(30, 41, 59, 0.85), rgba(30, 41, 59, 0.85)), url('https://images.unsplash.com/photo-1620321023374-d1a6861a31e7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #000000 100%);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--secondary-silver);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* --- ABOUT SECTION --- */
.about {
    padding: var(--spacing-standard) 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    background: var(--secondary-silver);
    padding: 20px;
    text-align: center;
    border-radius: 4px;
}

.stat-box i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.stat-box h4 {
    font-size: 1rem;
    color: var(--primary-dark);
}

/* --- SERVICES SECTION --- */
.services {
    padding: var(--spacing-standard) 0;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

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

.service-card {
    background: var(--white);
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border-top: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-top: 3px solid var(--primary-gold);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.service-card.gold i { color: #d4af37; }
.service-card.silver i { color: #bdc3c7; }
.service-card.platinum i { color: #7f8c8d; }

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

/* --- CONTACT SECTION --- */
.contact {
    padding: var(--spacing-standard) 0;
    background-color: var(--primary-dark);
    color: var(--white);
}

.contact .section-title h2 {
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    color: var(--primary-gold);
}

form {
    background: var(--white);
    padding: 30px;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 700;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.submit-btn {
    width: 100%;
    background-color: var(--primary-dark);
    color: var(--white);
    border: none;
    padding: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: var(--primary-gold);
}

/* --- FOOTER --- */
footer {
    background-color: #111;
    color: #777;
    padding: 40px 0;
    text-align: center;
    font-size: 0.85rem;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: #999;
    margin: 0 10px;
}

footer a:hover {
    color: var(--primary-gold);
}

/* Close button */
.close {
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
/* FOOTER MODALS */
.footer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 10000;
}

.footer-modal.show {
    opacity: 1;
    visibility: visible;
}

.footer-modal-content {
    background: #fff;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3em 3.5em; /* more padding: top-bottom 3em, left-right 2.5em */
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.footer-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

.footer-modal-content h3 {
    margin-top: 0.2em;
    margin-bottom: 0.8em;
    font-size: 2.5rem;
    text-align: center; /* centers the title */
}

.footer-modal-content p {
    margin-top: 0px; /* Adjust top margin as needed */
    margin-bottom: 15px; /* Adjust bottom margin to control space below the paragraph */
    line-height: 1.2;
}

.close-btn {
    color: var(--primary-dark);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: var(--primary-gold);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 2.2rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-text { order: 2; }
}
