/* ==========================================================================
   Design System & Variables
   ========================================================================== */
:root {
    /* Colors */
    --bg-color: #0d0d0d;
    --bg-secondary: #1a1a1a;
    --text-main: #f8f8f8;
    --text-muted: #a0a0a0;
    --accent-gold: #d4af37;
    --accent-gold-hover: #e5c158;
    
    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 110px; /* Offset for fixed navbar */
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: var(--section-padding);
}

.bg-dark { background-color: var(--bg-color); }
.bg-light { background-color: var(--bg-secondary); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-gold);
    color: #000;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.w-100 {
    width: 100%;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

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

.nav-links a {
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover:not(.btn-nav)::after {
    width: 100%;
}

.btn-nav {
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold) !important;
    padding: 10px 24px;
    border-radius: 4px;
}

.btn-nav:hover {
    background-color: var(--accent-gold);
    color: #000 !important;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    margin: 5px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('websitepics/Untitled design (4).jpg') center/cover no-repeat;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(13,13,13,1) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.hero-contact {
    margin-bottom: 40px;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.hero-contact a {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    transition: var(--transition-smooth);
}

.hero-contact a:hover {
    color: var(--accent-gold);
}

.hero-contact .divider {
    color: var(--accent-gold);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%) contrast(1.1);
    transition: var(--transition-smooth);
}

.about-image:hover img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.03);
}

.badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--accent-gold);
    color: #000;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
}

.about-text h2 {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.about-text h3 {
    font-size: 1.5rem;
    font-family: var(--font-sans);
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--text-main);
}

.stats-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-box h4 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.stat-box p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.section-title p {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-card {
    background: rgba(255,255,255,0.03);
    padding: 50px 40px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
    border-color: var(--accent-gold);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* ==========================================================================
   Areas Section
   ========================================================================== */
.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.area-card {
    padding: 40px;
    border-left: 3px solid var(--accent-gold);
    background: rgba(255,255,255,0.02);
}

.area-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.review-stats {
    margin-top: 15px;
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 1px;
}

.review-stats span {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: normal;
    margin-left: 5px;
}

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

.review-card {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
    border-color: var(--accent-gold);
}

.review-stars {
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-quote {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-quote.expanded {
    -webkit-line-clamp: unset;
    display: block;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--accent-gold);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0;
    margin-bottom: 20px;
    margin-top: -10px;
    text-align: left;
    font-weight: 600;
}

.read-more-btn:hover {
    text-decoration: underline;
}

.review-author {
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 3rem;
    color: var(--accent-gold);
}

.contact-methods {
    margin-top: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-method .icon {
    font-size: 2rem;
}

.contact-method h5 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-method p {
    margin-bottom: 0;
    transition: color 0.3s;
}

.contact-method:hover p {
    color: var(--accent-gold);
}

.contact-form {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 8px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid #D4AF37;
    border-radius: 8px;
    color: #D4AF37;
    font-family: var(--font-sans);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background-color: #000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 30px;
}

.footer-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-logo-item img {
    height: 45px; /* Reduced by 25% from 60px */
    width: 100%;
    max-width: 100%;
    object-fit: contain;
}

.footer-logo-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.copyright {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in-up,
.slide-in-left,
.slide-in-right {
    opacity: 0;
}

.fade-in-up {
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left {
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right {
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.is-visible {
    opacity: 1;
    transform: translate(0) !important;
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media screen and (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .about-grid, .services-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-text { order: -1; } /* Text above image on mobile */
}

@media screen and (max-width: 768px) {
    .hero-contact {
        flex-direction: column;
        gap: 10px;
    }
    .hero-contact .divider {
        display: none;
    }
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(13, 13, 13, 0.98);
        width: 100%;
        height: calc(100vh - 70px);
        align-items: center;
        justify-content: center;
        transition: var(--transition-smooth);
    }
    .nav-links.active { right: 0; }
    .hamburger { display: block; }
    
    .hamburger.active .line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active .line:nth-child(2) { opacity: 0; }
    .hamburger.active .line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    
    .hero h1 { font-size: 2.5rem; }
    .areas-grid { grid-template-columns: 1fr; }
    .section-padding { padding: 60px 0; }
}


/* Golden Form Wrapper */
.golden-form-wrapper {
    border: 2px solid #D4AF37;
    padding: 2rem 2rem 1.25rem 2rem;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Ensure select inputs match */
.contact-form select {
    width: 100%;
    padding: 1rem;
    background-color: var(--dark-lighter);
    border: 1px solid #D4AF37; /* Golden border */
    color: #D4AF37; /* Golden text */
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    appearance: none;
}

.contact-form select:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.contact-form select option {
    background-color: #0b0f19; /* matches var(--dark-bg) approx */
    color: #D4AF37; /* Golden text in options */
}


@media screen and (max-width: 768px) {
    .footer-logos {
        gap: 30px;
        flex-direction: column; /* Stack them on mobile to guarantee no cutoff */
        width: 100%;
        padding: 0 20px;
    }
    .footer-logo-item {
        width: 100%;
    }
    .footer-logo-item img {
        height: 45px;
        width: 100%;
        object-fit: contain;
    }
}
