.brand-section {
    background-color: #fcf9f4;
    padding: 80px 40px;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.brand-info {
    flex: 1;
    min-width: 300px;
}

.brand-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    color: #b08d57;
    margin-bottom: 20px;
}

.brand-title {
    font-size: 56px;
    line-height: 1.1;
    margin: 0 0 30px 0;
    color: #1a1a1a;
}

.brand-title span {
    font-style: italic;
    color: #c2a370;
}

.brand-description {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

.brand-divider {
    border: 0;
    border-top: 1px solid #e0d8cc;
    margin-bottom: 30px;
}

.brand-stats {
    display: flex;
    gap: 40px;
}

.stat-item span:first-child {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #c2a370;
}

.stat-item span:last-child {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.brand-grid {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f0e6d6;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.feature-icon {
    background: #fdf7ec;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 22px;
    color: #c2a370;
    line-height: 1;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.feature-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .brand-title {
        font-size: 40px;
    }
    .brand-grid {
        grid-template-columns: 1fr;
    }
}

.collection-section {
    background-color: #fcf9f4;
    padding: 80px 40px;
    text-align: center;
}

.collection-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    color: #b08d57;
    margin-bottom: 10px;
    display: block;
}

.collection-title {
    font-size: 42px;
    margin: 0 0 50px 0;
    color: #1a1a1a;
}

.collection-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.collection-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    transition: transform 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-10px);
}

.collection-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.collection-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    color: #fff;
}

.collection-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.collection-content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.explore-link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c2a370;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 992px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .collection-grid {
        grid-template-columns: 1fr;
    }
    .collection-card {
        height: 400px;
    }
}

.wholesale-section {
    background-color: #f8f4ed;
    padding: 80px 40px;
    display: flex;
    justify-content: center;
}

.wholesale-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.wholesale-image-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.wholesale-img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.b2b-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(194, 163, 112, 0.8);
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.partners-card {
    position: absolute;
    bottom: 30px;
    left: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.partners-card span:first-child {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #c2a370;
}

.partners-card span:last-child {
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
}

.wholesale-content {
    flex: 1;
    min-width: 300px;
}

.wholesale-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    color: #b08d57;
    margin-bottom: 20px;
    display: block;
}

.wholesale-title {
    font-size: 48px;
    line-height: 1.1;
    margin: 0 0 25px 0;
    color: #1a1a1a;
}

.wholesale-title span {
    color: #c2a370;
}

.wholesale-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.wholesale-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.wholesale-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #444;
}

.wholesale-features i {
    color: #c2a370;
    font-size: 18px;
}

.wholesale-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #111;
    color: #fff;
    padding: 18px 35px;
    border-radius: 10px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.wholesale-btn:hover {
    background: #c2a370;
}

@media (max-width: 768px) {
    .wholesale-container { gap: 40px; }
    .wholesale-title { font-size: 36px; }
}

.testimonial-section {
    background-color: #0c0c0c;
    padding: 100px 40px;
    text-align: center;
    color: #fff;
}

.testimonial-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    color: #b08d57;
    margin-bottom: 15px;
    display: block;
}

.testimonial-title {
    font-size: 42px;
    margin-bottom: 60px;
    font-family: serif;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background: #161616;
    flex: 1;
    min-width: 320px;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #222;
    text-align: left;
    position: relative;
}

.stars {
    color: #c2a370;
    font-size: 14px;
    margin-bottom: 25px;
}

.quote-icon {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 30px;
    color: #2a2a2a;
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 30px;
}

.testimonial-divider {
    border: 0;
    border-top: 1px solid #2a2a2a;
    margin-bottom: 25px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-details h4 {
    margin: 0;
    font-size: 16px;
    color: #fff;
}

.client-details span {
    font-size: 13px;
    color: #666;
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 1 1 100%;
    }
}

.partner-cta-section {
    background-color: #fcf9f4;
    padding: 60px 20px;
}

.partner-card {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #0c0c0c;
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    border: 1px solid #1a1a1a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.partner-label {
    display: block;
    color: #b08d57;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.partner-title {
    color: #ffffff;
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    font-weight: 500;
}

.partner-description {
    color: #999999;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.btn-gold-contact {
    display: inline-block;
    background-color: #c2a370;
    color: #ffffff;
    padding: 16px 45px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-gold-contact:hover {
    background-color: #ad8e5a;
    transform: translateY(-3px);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(194, 163, 112, 0.3);
}

@media (max-width: 768px) {
    .partner-card {
        padding: 50px 20px;
    }
    .partner-title {
        font-size: 32px;
    }
    .partner-description {
        font-size: 16px;
    }
}

.process-step {
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #f0e6d6;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

.process-step h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: #777;
}

.custom-input {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    background-color: #fff;
    border-color: #c2a370;
    box-shadow: none;
    outline: none;
}

.form-label {
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 8px;
}

.text-center { text-align: center; }
.text-start { text-align: left; }

.how-it-works {
    padding: 100px 0;
    background-color: #FCF9F4; /* Light cream background from image */
    text-align: center;
}

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

.sub-label {
    color: #B08D57; /* Gold color for "PROCESS" */
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.main-title {
    font-size: 48px;
    font-family: serif; /* Elegant serif font from screenshot */
    color: #1A1A1A;
    margin-bottom: 80px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.step-item {
    flex: 1;
    text-align: left;
    position: relative;
}

.step-number {
    font-size: 72px;
    font-family: serif;
    font-weight: bold;
    color: #F0E6D6; /* Faded gold number in background */
    margin-bottom: 15px;
    line-height: 1;
}

.step-title {
    font-size: 20px;
    font-family: serif;
    color: #1A1A1A;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-desc {
    font-size: 14px;
    color: #666; /* Muted gray description text */
    line-height: 1.6;
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -25px;
    color: #E0E0E0; /* Subtle arrow between steps */
    font-size: 24px;
    transform: translateY(-50%);
}

/* Hide arrow for the last step */
.step-item:last-child .step-arrow {
    display: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 60px;
    }
    .step-arrow {
        display: none;
    }
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

* {
    box-sizing: border-box;
}

.search-suggest-box {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    z-index: 30;
    display: none;
    padding: 12px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(36, 27, 19, 0.12);
    box-shadow: 0 18px 40px rgba(36, 27, 19, 0.12);
}

.search-suggest-box.active {
    display: block;
}

.search-result-list {
    display: grid;
    gap: 10px;
}

.search-result-item {
    padding: 10px;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.search-result-item:hover {
    background: #f7f2eb;
    transform: translateY(-1px);
}

.search-result-thumb {
    width: 60px;
    flex: 0 0 60px;
    overflow: hidden;
    border-radius: 10px;
    background: #f7f2eb;
}

.search-result-thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.search-result-content p {
    color: #1f1b16;
}

.search-result-empty {
    padding: 12px 6px;
}

/* ====================== OUR SERVICES SECTION ====================== */
.services-section {
    background-color: #f8f4ed;
    padding: 100px 40px;
}

.section-label {
    display: block;
    color: #b08d57;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: serif;
}

.section-desc {
    font-size: 17px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #f0e6d6;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.service-icon {
    width: 65px;
    height: 65px;
    background: #fdf7ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: #c2a370;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Learn More Link */
/* ====================== FIXED SERVICE LINK BUTTON (Like Screenshot) ====================== */
.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #b08d57;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-decoration: none;
    padding: 13px 34px;
    border: 2px solid #d4c3a8;
    border-radius: 50px;
    background: transparent;
    margin-top: auto;
    transition: all 0.4s ease;
    white-space: nowrap;
    max-width: fit-content;
}

/* Center the button inside the card */
.service-card .service-link {
    margin-left: auto;
    margin-right: auto;
}

.service-link:hover {
    background: #c2a370;
    color: #ffffff;
    border-color: #c2a370;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(194, 163, 112, 0.25);
}

.impact-stories-section {
    background-color: #fcf9f4;           /* Changed from black to light elegant */
    padding: 100px 40px;
    color: #1a1a1a;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 20px;
    border: 1px solid #f0e6d6;
    position: relative;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.story-quote {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 80px;
    line-height: 1;
    color: #c2a370;
    opacity: 0.12;
    font-family: serif;
}

.story-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin-bottom: 35px;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    margin: 0;
    font-size: 17px;
    color: #1a1a1a;
    font-weight: 600;
}

.author-info span {
    font-size: 13px;
    color: #777;
}

/* ====================== SERVICE DETAIL PAGE ====================== */
.service-detail-section {
    background-color: #fcf9f4;
    padding: 120px 40px;
}

.service-icon-big {
    font-size: 70px;
    color: #c2a370;
    margin-bottom: 20px;
}

.service-content {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #f0e6d6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.service-content .lead {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 40px 0;
}

.feature-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 16px;
    color: #555;
    border-bottom: 1px solid #f0e6d6;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c2a370;
    font-weight: bold;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .services-section,
    .impact-stories-section,
    .service-detail-section {
        padding: 80px 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-content {
        padding: 35px 25px;
    }
    
    .section-title {
        font-size: 36px;
    }
}