@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c9a962;
    --gold-light: #e0c987;
    --charcoal: #2d2d2d;
    --charcoal-dark: #1a1a1a;
    --charcoal-light: #3d3d3d;
    --cream: #f8f6f2;
    --white: #ffffff;
    --marble: #4a4a4a;
    --text-dark: #222222;
    --text-light: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gold);
    color: var(--charcoal-dark);
}

.btn-primary:hover {
    background: var(--gold-light);
}

.btn-secondary {
    background: var(--charcoal);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--charcoal-light);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--charcoal-dark);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.4s ease, background 0.3s ease;
}

header.hidden {
    transform: translateY(-100%);
}

.header-bar {
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 100%);
    padding: 8px 0;
    border-bottom: 1px solid var(--gold);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.logo span {
    font-weight: 400;
    color: var(--white);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cream);
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--gold);
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a.active {
    color: var(--gold);
}

.main-nav a.active::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 11px;
    color: var(--cream);
}

.header-contact i {
    color: var(--gold);
    margin-right: 5px;
}

main {
    margin-top: 50px;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 50%, var(--marble) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23c9a96210"/><circle cx="75" cy="75" r="0.5" fill="%23c9a96208"/><circle cx="50" cy="10" r="0.8" fill="%23c9a96206"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    padding: 40px 0;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid var(--gold);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    color: var(--white);
    margin-bottom: 15px;
}

.hero h1 span {
    color: var(--gold);
    font-style: italic;
}

.hero p {
    font-size: 14px;
    color: var(--cream);
    opacity: 0.85;
    margin-bottom: 25px;
    max-width: 450px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 600px;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.hero-decor {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 50%;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
}

.hero-decor::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(201, 169, 98, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: clamp(26px, 4vw, 38px);
    color: var(--charcoal-dark);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 13px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    z-index: -1;
}

.about-content h3 {
    font-size: 28px;
    color: var(--charcoal-dark);
    margin-bottom: 15px;
}

.about-content p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--gold);
    font-size: 16px;
}

.about-feature span {
    font-size: 12px;
    font-weight: 500;
}

.services-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(201, 169, 98, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--charcoal-dark), var(--charcoal));
    color: var(--gold);
    font-size: 20px;
}

.service-card h3 {
    font-size: 18px;
    color: var(--charcoal-dark);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.products-section {
    background: var(--charcoal-dark);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 45%, rgba(201, 169, 98, 0.03) 50%, transparent 55%);
    background-size: 30px 30px;
}

.products-section .section-header h2 {
    color: var(--white);
}

.products-section .section-header p {
    color: var(--cream);
    opacity: 0.7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: var(--white);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: var(--cream);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    background: var(--gold);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 18px;
    color: var(--charcoal-dark);
    margin-bottom: 8px;
}

.product-content p {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
}

.price span {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
}

.process-section {
    background: var(--white);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--charcoal), var(--gold));
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 0 10px;
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal-dark);
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    border: 2px solid var(--gold);
}

.process-step h4 {
    font-size: 14px;
    color: var(--charcoal-dark);
    margin-bottom: 6px;
}

.process-step p {
    font-size: 11px;
    color: var(--text-light);
}

.testimonials-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border: 1px solid rgba(201, 169, 98, 0.15);
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    color: var(--gold);
    opacity: 0.15;
}

.testimonial-rating {
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--charcoal-dark);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 700;
}

.author-info h5 {
    font-size: 13px;
    color: var(--charcoal-dark);
}

.author-info span {
    font-size: 10px;
    color: var(--text-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 100%);
    text-align: center;
    padding: 50px 0;
}

.cta-section h2 {
    font-size: clamp(24px, 4vw, 34px);
    color: var(--white);
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 13px;
    color: var(--cream);
    opacity: 0.8;
    margin-bottom: 20px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero {
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 100%);
    padding: 80px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23c9a96210"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.page-hero h1 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
}

.page-hero p {
    font-size: 13px;
    color: var(--cream);
    opacity: 0.8;
    position: relative;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    color: var(--cream);
    opacity: 0.7;
    margin-top: 15px;
    position: relative;
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.contact-section {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 100%);
    padding: 35px;
    color: var(--white);
}

.contact-info h3 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 12px;
    color: var(--cream);
    opacity: 0.8;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.info-item i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 2px;
}

.info-item div h5 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--white);
}

.info-item div span {
    font-size: 12px;
    color: var(--cream);
    opacity: 0.8;
}

.contact-hours {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.contact-hours h4 {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 12px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--cream);
    opacity: 0.8;
    margin-bottom: 6px;
}

.contact-form-wrapper {
    padding: 35px;
    background: var(--cream);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    color: var(--charcoal-dark);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--charcoal-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    border: 1px solid rgba(45, 45, 45, 0.15);
    background: var(--white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--gold);
}

.checkbox-group label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--gold);
    text-decoration: underline;
}

.map-section {
    height: 350px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%);
}

.content-section {
    background: var(--white);
    padding: 50px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 24px;
    color: var(--charcoal-dark);
    margin-bottom: 15px;
    margin-top: 30px;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    font-size: 18px;
    color: var(--charcoal-dark);
    margin-bottom: 12px;
    margin-top: 25px;
}

.content-wrapper p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.content-wrapper ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.content-wrapper li {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.content-wrapper li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--gold);
}

.error-page {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 100%);
    text-align: center;
    padding: 40px 15px;
}

.error-content h1 {
    font-size: clamp(80px, 15vw, 150px);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 15px;
}

.error-content h2 {
    font-size: clamp(22px, 4vw, 32px);
    color: var(--white);
    margin-bottom: 12px;
}

.error-content p {
    font-size: 13px;
    color: var(--cream);
    opacity: 0.8;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-page {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    text-align: center;
    padding: 40px 15px;
}

.thankyou-content {
    max-width: 500px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--charcoal-dark);
    font-size: 36px;
}

.thankyou-content h1 {
    font-size: clamp(26px, 4vw, 36px);
    color: var(--charcoal-dark);
    margin-bottom: 12px;
}

.thankyou-content p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 25px;
}

footer {
    background: var(--charcoal-dark);
    padding: 30px 0 15px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

.footer-logo span {
    font-weight: 400;
    color: var(--white);
}

.footer-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 11px;
    color: var(--cream);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: var(--gold);
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 10px;
    color: var(--cream);
    opacity: 0.6;
}

.policy-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.policy-links a {
    font-size: 10px;
    color: var(--cream);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.policy-links a:hover {
    color: var(--gold);
    opacity: 1;
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--charcoal-dark);
    padding: 18px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 1px solid var(--gold);
}

.privacy-popup.show {
    transform: translateY(0);
}

.privacy-popup-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.privacy-popup p {
    font-size: 11px;
    color: var(--cream);
    flex: 1;
}

.privacy-popup a {
    color: var(--gold);
    text-decoration: underline;
}

.privacy-popup-btns {
    display: flex;
    gap: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-box {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border: 1px solid rgba(201, 169, 98, 0.15);
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.feature-box i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 12px;
}

.feature-box h4 {
    font-size: 14px;
    color: var(--charcoal-dark);
    margin-bottom: 6px;
}

.feature-box p {
    font-size: 11px;
    color: var(--text-light);
}

.gallery-section {
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 12px;
    color: var(--white);
    font-weight: 500;
}

.stats-section {
    background: var(--gold);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    color: var(--charcoal-dark);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--charcoal);
}

.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(45, 45, 45, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question h4 {
    font-size: 14px;
    color: var(--charcoal-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    font-size: 12px;
    color: var(--text-light);
    padding-bottom: 18px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.option-card {
    background: var(--white);
    padding: 30px;
    border: 1px solid rgba(201, 169, 98, 0.2);
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.option-card h3 {
    font-size: 20px;
    color: var(--charcoal-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.option-card h3 i {
    color: var(--gold);
}

.option-card p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.option-features {
    margin-bottom: 15px;
}

.option-features li {
    font-size: 11px;
    color: var(--text-light);
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.option-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 10px;
}

@media (max-width: 992px) {
    .header-contact {
        display: none;
    }
    
    .hero-image {
        opacity: 0.3;
        width: 70%;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        flex: 0 0 calc(50% - 10px);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        background: var(--charcoal-dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid var(--gold);
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-decor {
        display: none;
    }
    
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .gallery-grid,
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-popup-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 11px;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
    
    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .hero h1 {
        font-size: 26px;
    }
}
