:root {
    --primary: #d4af37;
    /* Gold */
    --primary-dark: #aa8c2c;
    --secondary: #152D1C;
    /* Deep Burgundy/Maroon */
    --secondary-light: #193521;
    /* Slightly lighter Maroon */
    --accent-gold: #d4af37;
    --accent-bright: #ffd700;
    --bg-dark: #152D1C;
    --bg-light: #ffffff;
    --bg-gray: #f9f9f9;
    --bg-card: #ffffff;
    --bg-card-dark: #193521;
    --text-main: #333333;
    --text-light: #f0f0f0;
    --text-dark: #111111;
    --text-muted: #666666;
    --text-muted-light: #aaaaaa;
    --border-light: rgba(74, 4, 4, 0.1);
    --border-dark: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-weight: 800;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #152D1C, #5d0606);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15), transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 50%;
    /* box-shadow: 0 0 30px rgba(212, 175, 55, 0.4); */
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
    text-align: center;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.about-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
}

.mission-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    border-radius: 16px;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background-color: var(--bg-card);
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.feature-card {
    background: var(--bg-dark);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    transition: transform 0.4s, background-color 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(to bottom, var(--bg-dark), rgba(212, 175, 55, 0.05));
    border-color: rgba(212, 175, 55, 0.3);
}

.icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-muted);
}

/* Action Section */
.action-section {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.05), transparent);
}

.action-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.action-section p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.location-banner {
    display: inline-block;
    background: linear-gradient(135deg, var(--bg-card), #1a1a1a);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    border: 1px solid var(--primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
    color: #fff;
    margin-top: 1rem;
}

/* Footer */
.site-footer {
    padding: 4rem 0 2rem;
    background-color: var(--bg-card);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-muted);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-section h4 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary);
}

/* Footer & WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1100;
    transition: transform 0.3s, background-color 0.3s;
}

.whatsapp-float i {
    font-size: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.caution-box {
    background: var(--primary);
    color: #6a0d10;
    /* Darker red for contrast on gold as per image */
    padding: 25px;
    border-radius: 4px;
    border: 1px dashed #6a0d10;
    max-width: 300px;
    font-size: 0.9rem;
    font-weight: 600;
}

.caution-box h3 {
    text-align: center;
    text-decoration: underline;
    margin-bottom: 15px;
    color: #6a0d10;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.social-icons-footer {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons-footer a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons-footer a:hover {
    color: var(--primary);
}

/* Light Theme Utility & Section Styles */
.light-theme {
    background-color: var(--bg-light);
    color: var(--text-main);
}

.dark-theme {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.container-small {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Top Header */
.top-header {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-dark);
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--primary);
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info-top {
    display: flex;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--primary);
    font-size: 1rem;
    transition: transform 0.3s, color 0.3s;
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.logo-area img {
    height: 70px;
    width: auto;
    transition: transform 0.3s;
}

.logo-area img:hover {
    transform: scale(1.05);
}

/* Home Navigation */
.home-nav {
    background: var(--bg-dark);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.home-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    /* Gold */
    font-weight: 600;
    transition: color 0.3s;
}

.light-theme .nav-links a {
    color: var(--primary);
    /* Gold */
}

.light-theme .nav-links a:hover {
    color: var(--primary-dark);
}

.nav-links a:hover {
    color: var(--primary-dark);
}

.btn-nav {
    background: var(--primary);
    padding: 10px 20px;
    border-radius: 4px;
    color: #000 !important;
}

.inner-page-banner {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(rgba(21, 45, 28, 0.9), rgba(21, 45, 28, 0.9)), url('hero_gold_company_1773330650086.png');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.inner-page-banner h1 {
    color: var(--primary);
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.inner-page-banner p {
    color: #fff;
    max-width: 700px;
    margin: 20px auto 0;
}

/* Home Hero */
.home-hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(21, 45, 28, 0.8), transparent);
}

.hero-text-container {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
}

.hero-text-container h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

/* Steps Accordion */
.accordion-container {
    margin-top: 40px;
}

.accordion-item {
    background: var(--secondary-light);
    border: 1px solid var(--primary);
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
    color: var(--primary);
}

.accordion-item {
    background: #f4f4f4;
    /* Light Gray */
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    padding: 18px 25px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: #f4f4f4;
    color: #444;
}

.accordion-item.active {
    background: var(--secondary);
    /* Maroon */
    border-color: var(--primary);
    /* Gold border */
}

.accordion-item.active .accordion-header {
    background: var(--secondary);
    color: var(--primary);
    /* Gold text */
}

.accordion-header:hover {
    background: #ebebeb;
}

.accordion-item.active .accordion-header:hover {
    background: var(--secondary-light);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    background: #fff;
    padding: 0 25px;
    color: var(--text-main);
}

.accordion-item.active .accordion-panel {
    max-height: 500px;
    /* Adjust as needed */
    padding: 20px 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.accordion-item.active .accordion-header span:last-child {
    transform: rotate(45deg);
}

.accordion-header span:last-child {
    transition: transform 0.3s ease;
}

/* Grid Components */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.benefit-card {
    /* background: var(--bg-card); */
    color: var(--text-main);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    /* border: 1px solid var(--border-light); */
    transition: transform 0.3s, border-color 0.3s;
}

.section-dark .benefit-card {
    background: var(--bg-card-dark);
    color: var(--text-light);
    border-color: var(--border-dark);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.benefit-card .icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
}

/* Image Benefits Layout */
.image-benefits-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: nowrap;
    /* overflow-x: auto; */
    padding-bottom: 30px;
}

.benefit-img-wrapper {
    flex: 1;
    min-width: 0;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.benefit-img-wrapper .benefit-card {
    flex-grow: 1;
    /* Make cards fill remaining vertical space equally */
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Zig Zag format */
.benefit-img-wrapper:nth-child(even) {
    margin-top: 40px;
}

.benefit-img-wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 2px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-img-wrapper:hover img {
    border-color: var(--primary);
    transform: translateY(-10px);
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    color: var(--text-main);
}

.section-dark .comparison-table {
    background: var(--bg-card-dark);
    color: var(--text-light);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.section-dark .comparison-table th,
.section-dark .comparison-table td {
    border-bottom: 1px solid var(--border-dark);
}

.comparison-table th {
    background: var(--secondary-light);
    color: var(--primary);
    font-weight: 700;
}

.comparison-table .highlight-col {
    background: rgba(212, 175, 55, 0.05);
    color: var(--text-main);
    font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--bg-dark);
    color: #fff;
    border-top: 1px solid var(--border-light);
}

.contact-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.contact-form {
    flex: 1;
}

.contact-form h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-gray);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    color: var(--text-main);
    outline: none;
    transition: border-color 0.3s;
}

.section-dark .form-group input,
.section-dark .form-group textarea {
    background: var(--secondary-light);
    border: 1px solid var(--border-dark);
    color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.contact-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery Hover */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials-section {
    background: #f7f5f0;
}

.section-label {
    display: block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 30px;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-card .stars {
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f0f0f0;
    padding-top: 18px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FAQ Accordion (Simple) */
.faq-item {
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
}

.faq-question {
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

/* Yellow Sub Nav -> Gold Sub Nav */
.yellow-sub-nav {
    background: var(--primary);
    color: var(--secondary);
    padding: 12px 0;
}

.yellow-sub-nav .container {
    display: flex;
    justify-content: center;
    gap: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Steps Section Styles */
.bg-light-cream {
    background-color: #fbf9f6;
}

.steps-split {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.steps-image-side {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.steps-image-side img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.steps-timeline {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 20px 0;
}

/* Vertical line for the timeline */
.steps-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 1px;
    background-color: #e0d0b8;
    z-index: 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-indicator {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-right: 30px;
    position: relative;
}

.step-num {
    background-color: #333;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    position: absolute;
    top: -5px;
    right: 0;
}

.timeline-indicator i {
    font-size: 24px;
    color: #666;
}

.timeline-content {
    padding-top: 10px;
}

.timeline-content h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #d14124;
}

.timeline-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .steps-split {
        flex-direction: column;
    }

    .steps-timeline::before {
        left: 30px;
    }

    .timeline-indicator {
        width: 60px;
        height: 60px;
        min-width: 60px;
        margin-right: 20px;
    }

    .step-num {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
}