/* =========================================
   Reset & Basics
   ========================================= */
:root {
    --primary-color: #cca471;
    --primary-dark: #b89365;
    --dark-bg: #1e1513;
    --light-bg: #fdfdfd;
    --gray-bg: #f5f5f5;
    --text-color: #333;
    --text-light: #666;
    --white: #fff;
    --border-color: #e0e0e0;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--primary-color) !important; }
.text-white { color: var(--white) !important; }
.bg-light { background-color: var(--gray-bg); }
.bg-dark { background-color: var(--dark-bg); }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.text-sm { font-size: 0.9rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark-bg);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 8px 20px;
}
.btn-outline-gold:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

.section-subtitle {
    color: var(--primary-color);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-bg);
}
.bg-dark .section-title {
    color: var(--white);
}

/* =========================================
   Header & Navigation
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background-color: rgba(30, 21, 19, 0.7); /* Added background color */
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}
.header.sticky {
    background-color: #111; /* Solid dark color for sticky */
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.8);
    border-bottom: none;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    font-size: 32px;
    color: var(--primary-color);
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
}
.logo-text small {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    gap: 25px;
}
.nav-list a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}
.nav-list a:hover, .nav-list a.active {
    color: var(--primary-color);
}
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}
.nav-list a:hover::after, .nav-list a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}
.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 3;
}

.hero-container {
    position: relative;
    z-index: 4;
}

.hero-content {
    max-width: 600px;
    color: var(--white);
}

.hero-title {
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.subtitle-divider {
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 300;
}
.hero-subtitle strong {
    font-weight: 600;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(204,164,113,0.3);
}
.feature-item .feature-icon {
    color: var(--primary-color);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* =========================================
   About Section
   ========================================= */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
}
.img-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 20px 0 20px 0;
    overflow: hidden;
    border: 1px solid var(--primary-color);
}
.dots-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 10px 10px;
    z-index: 1;
}

.about-content {
    flex: 1;
}
.about-text {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-info-list .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}
.contact-info-list .info-icon {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 3px;
}
.contact-info-list .info-text {
    color: var(--text-light);
    font-size: 15px;
}

/* =========================================
   Services Section
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-img {
    height: 220px;
    overflow: hidden;
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-info {
    padding: 20px 15px;
    position: relative;
}
.service-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
}
.service-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 15px;
}
.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    font-size: 12px;
}
.service-link:hover {
    background: var(--dark-bg);
}

/* =========================================
   Why Choose Us Section
   ========================================= */
.features-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-box {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 20px 10px;
}
.feature-box .feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.feature-box h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.feature-box p {
    font-size: 13px;
    color: #ccc;
}

/* =========================================
   Split Section (FAQ & How We Work)
   ========================================= */
.split-container {
    display: flex;
    gap: 50px;
}
.faq-col, .how-we-work-col {
    flex: 1;
}

/* Accordion */
.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}
.accordion-header {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    background: var(--white);
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-header:hover {
    color: var(--primary-color);
}
.accordion-body {
    padding: 0 20px 20px;
    background: var(--white);
    display: none;
    font-size: 14px;
    color: var(--text-light);
}

/* How We Work List */
.process-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}
.process-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.process-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}
.process-info p {
    font-size: 14px;
    color: var(--text-light);
}

/* =========================================
   Testimonials Section
   ========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-align: left;
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.quote-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
    opacity: 0.5;
}
.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
    flex-grow: 1;
}
.testimonial-author h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark-bg);
}
.stars {
    font-size: 12px;
}

/* =========================================
   Contact Section
   ========================================= */
.contact-container {
    display: flex;
    gap: 50px;
    align-items: center;
}
.contact-info {
    flex: 1;
}
.contact-form-wrapper {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.form-row input, .form-row select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    outline: none;
}
.form-row textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    outline: none;
    resize: vertical;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    border-color: var(--primary-color);
}

/* =========================================
   Footer
   ========================================= */
.footer {
    padding-top: 80px;
    border-top: 3px solid var(--primary-color);
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}
.footer-col {
    flex: 1;
    min-width: 200px;
}
.brand-col {
    flex: 2;
    min-width: 300px;
}
.brand-col p {
    color: #aaa;
    font-size: 14px;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(204,164,113,0.3);
}

.links-col h3, .contact-col h3 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 20px;
}
.links-col ul li {
    margin-bottom: 10px;
}
.links-col ul li a {
    color: #aaa;
    font-size: 14px;
    position: relative;
    padding-bottom: 2px;
    transition: var(--transition);
}
.links-col ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}
.links-col ul li a:hover {
    color: var(--primary-color);
}
.links-col ul li a:hover::after {
    width: 100%;
}

.footer-bottom {
    background: #140d0b;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p {
    color: #888;
    font-size: 13px;
    margin: 0;
}
.footer-legal a:hover {
    color: var(--white) !important;
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 992px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-bg);
        padding: 20px;
    }
    .nav.active {
        display: block;
    }
    .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    .mobile-toggle {
        display: block;
    }
    .header-cta {
        display: none;
    }
    .hero-title {
        font-size: 48px;
    }
    .about-container, .split-container, .contact-container {
        flex-direction: column;
    }
    .services-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 36px;
    }
    .form-row {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
    }
    .features-grid {
        gap: 30px;
    }
    .feature-box {
        min-width: 45%;
    }
    .footer-col, .brand-col {
        min-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    .feature-box {
        min-width: 100%;
    }
    .hero-title {
        font-size: 28px;
    }
    .section-title {
        font-size: 26px;
    }
    .service-actions {
        flex-direction: column !important;
    }
    .service-actions .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }
    .contact-form-wrapper {
        padding: 20px;
    }
}
