/* 
    Brand Colors - Premium Light Theme:
    Primary Background: #ffffff
    Secondary Background: #f8f9fa
    Gold Accent: #A58430
    Primary Text: #111111
    Secondary Text: #555555
*/
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --gold: #A58430; 
    --gold-hover: #8C6F25;
    --text-primary: #111111;
    --text-secondary: #555555;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s ease-in-out;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 15px;
}

/* Theme Utilities */
.bg-primary-theme { background-color: var(--bg-primary) !important; }
.bg-secondary-theme { background-color: var(--bg-secondary) !important; }
.text-primary-theme { color: var(--text-primary) !important; }
.text-gold { color: var(--gold) !important; }

/* Overrides to ensure text on dark photos/gradients remains white */
.hero-caption .text-primary-theme,
.cta-band .text-primary-theme,
.page-banner .text-primary-theme {
    color: #ffffff !important;
}

/* Buttons */
.btn-gold {
    background-color: var(--gold);
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 32px;
    border-radius: 2px;
    border: 2px solid var(--gold);
    transition: var(--transition-smooth);
}
.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 32px;
    border-radius: 2px;
    border: 2px solid var(--gold);
    transition: var(--transition-smooth);
}
.btn-outline-gold:hover {
    background-color: var(--gold);
    color: #ffffff;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition-smooth);
    padding: 15px 0;
}
.navbar.scrolled {
    background-color: #ffffff;
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.nav-link {
    color: var(--text-primary) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin: 0 12px;
    position: relative;
    transition: var(--transition-smooth);
}
.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: var(--transition-smooth);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}
.navbar-toggler {
    border-color: rgba(0,0,0,0.1);
    color: var(--text-primary);
}

/* Hero Section */
.hero-slider .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Dark elegant gradient to make white text pop beautifully */
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.5), rgba(15, 15, 15, 0.85));
}
.hero-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    z-index: 2;
}
.hero-caption h1 {
    font-size: 4.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 800;
    animation: fadeUp 1s ease;
}
.hero-caption p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.9);
    animation: fadeUp 1.2s ease;
    font-weight: 400;
}
.hero-buttons {
    animation: fadeUp 1.4s ease;
}

/* Banner Sections */
.page-banner {
    padding: 160px 0 80px;
    background-color: var(--bg-primary);
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}
/* Ensure dark background for banner if it needs it */
.page-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(15, 15, 15, 0.95);
    z-index: 1;
}
.page-banner h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    color: var(--gold);
    position: relative;
    z-index: 2;
    font-weight: 800;
}
.page-banner p {
    font-size: 1.1rem;
    color: #ffffff; /* Explicitly white over dark block */
    position: relative;
    z-index: 2;
}

/* Feature Cards (Clean Flat Design) */
.feature-card {
    background-color: var(--bg-primary);
    padding: 40px 30px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.08); /* Sharp, thin border */
    transition: var(--transition-smooth);
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.feature-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
}
.feature-card h4, .feature-card h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Image Service Cards */
.service-card {
    position: relative;
    background: var(--bg-primary);
    border-radius: 4px;
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: var(--transition-smooth);
    height: 100%;
    overflow: hidden;
}
.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}
.img-wrapper {
    overflow: hidden;
    height: 220px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-card-img {
    transform: scale(1.06);
}
.service-card-body {
    padding: 30px 25px;
}
.service-card h4 {
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}
.service-card:hover h4 {
    color: var(--gold);
}
.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Typography / Sections */
.section-padding { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    color: var(--text-primary);
    font-weight: 800;
}
.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px; height: 3px;
    background-color: var(--gold);
    bottom: 0; left: 50%;
    transform: translateX(-50%);
}

/* Testimonials */
.testimonial-card {
    background-color: var(--bg-secondary);
    padding: 35px;
    border-radius: 4px;
    border-bottom: 3px solid var(--gold); /* Switched left accent to bottom accent for sophistication */
    margin-bottom: 30px;
    height: 100%;
    border-left: 1px solid rgba(0,0,0,0.05);
    border-right: 1px solid rgba(0,0,0,0.05);
    border-top: 1px solid rgba(0,0,0,0.05);
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
    color: var(--text-secondary);
}
.testimonial-author {
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}
.testimonial-author span {
    display: block;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
}

/* CTA Band */
.cta-band {
    background: linear-gradient(135deg, #111111, #1a1a1a);
    border-top: 2px solid var(--gold);
    padding: 80px 0;
}
.cta-band h2 {
    color: #ffffff;
    font-weight: 800;
}
.cta-band p {
    color: rgba(255,255,255,0.8);
}

/* Process Step Indicators */
.process-step-indicator {
    width: 80px; height: 80px; border-radius: 50%; 
    background: var(--bg-primary); border: 2px solid var(--gold); 
    display: flex; align-items: center; justify-content: center; 
    margin: 0 auto 20px; color: var(--gold); font-size: 2.2rem; 
    font-weight: 700; font-family: var(--font-heading);
    box-shadow: 0 5px 15px rgba(165, 132, 48, 0.1);
}

/* Custom List (Ticks) */
.custom-list { list-style: none; padding: 0; }
.custom-list li {
    margin-bottom: 20px; position: relative; padding-left: 35px; color: var(--text-secondary);
    line-height: 1.7;
}
.custom-list li::before {
    content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; left: 0; color: var(--gold); font-size: 1.1rem;
}

/* Forms */
.form-control, .form-select {
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    color: var(--text-primary);
    padding: 16px; border-radius: 2px;
}
.form-control:focus, .form-select:focus {
    background-color: #ffffff;
    border-color: var(--gold); color: var(--text-primary);
    box-shadow: 0 0 0 1px var(--gold);
}
.form-control::placeholder { color: #9ca3af; }
.form-label { color: var(--text-primary); font-weight: 600; margin-bottom: 8px; font-size: 0.95rem; }

/* Contact Container */
.contact-container {
    background-color: var(--bg-primary);
    border: 1px solid rgba(0,0,0,0.08);
}

/* Map placeholder */
.map-placeholder {
    width: 100%; height: 450px; background-color: var(--bg-secondary);
    display: flex; justify-content: center; align-items: center;
    border: 1px solid rgba(0,0,0,0.08); color: var(--text-secondary);
    flex-direction: column;
}

/* Feature Image Frame */
.about-feature-img {
    width: 100%; height: 450px; object-fit: cover;
    border: 1px solid rgba(0,0,0,0.08); border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.footer-title {
    color: var(--text-primary);
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 15px; }
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}
.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}
.footer-contact p { margin-bottom: 15px; color: var(--text-secondary); }
.footer-contact i {
    color: var(--gold);
    margin-right: 12px; width: 20px; text-align: center;
}
.social-icons a {
    display: inline-block;
    width: 40px; height: 40px; line-height: 40px;
    text-align: center;
    background: #e5e7eb;
    color: var(--text-primary);
    border-radius: 2px;
    margin-right: 10px;
    transition: var(--transition-smooth);
}
.social-icons a:hover {
    background: var(--gold);
    color: #ffffff;
}
.copyright {
    text-align: center; padding-top: 30px; margin-top: 50px;
    border-top: 1px solid rgba(0,0,0,0.08);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Back to top */
#backToTop {
    position: fixed; bottom: 40px; right: 40px;
    background-color: var(--gold); color: #fff;
    width: 50px; height: 50px; border-radius: 2px;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.2rem; cursor: pointer; opacity: 0; visibility: hidden;
    transition: var(--transition-smooth); z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
#backToTop.show { opacity: 1; visibility: visible; }
#backToTop:hover { background-color: var(--text-primary); transform: translateY(-5px); }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--bg-primary); padding: 20px;
        margin-top: 15px; border-top: 1px solid rgba(0,0,0,0.08);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
}
@media (max-width: 768px) {
    .hero-caption h1 { font-size: 2.8rem; }
    .hero-slider .carousel-item { height: 80vh; }
    .section-padding { padding: 60px 0; }
    .page-banner h1 { font-size: 2.5rem; }
    .about-feature-img { height: 300px; }
}
