/* ========================================================
   CITY PLAZA ELEMENTOR WIDGETS — city-plaza-widgets.css
   ======================================================== */

/* ── RESET & SHARED ── */
.cp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── TOPBAR ── */
.cp-topbar {
    background: #1a1410;
    color: #e2c97e;
    font-size: 0.82rem;
    padding: 8px 0;
    font-family: 'Raleway', sans-serif;
}

.cp-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cp-topbar-left {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.cp-topbar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cp-topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cp-topbar-right a {
    color: #e2c97e;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: color .3s;
}

.cp-topbar-right a:hover {
    color: #fff;
}

.cp-topbar-right span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── NAVBAR ── */
.cp-navbar {
    background: #231d15;
    border-bottom: 2px solid #a07830;
    font-family: 'Raleway', sans-serif;
    position: sticky;
    top: 0;
    z-index: 999;
}

.cp-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.cp-logo a {
    text-decoration: none;
}

.cp-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.cp-logo-accent {
    color: #c9a84c !important;
}

.cp-logo img {
    max-height: 48px;
}

.cp-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cp-nav-link {
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ede5d5;
    padding: 10px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: all .3s;
    position: relative;
}

.cp-nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: #c9a84c;
    transform: scaleX(0);
    transition: transform .3s;
}

.cp-nav-link:hover {
    color: #e2c97e;
}

.cp-nav-link:hover::after {
    transform: scaleX(1);
}

.cp-nav-link.cta-btn {
    background: #c9a84c;
    color: #1a1410;
    border-radius: 4px;
}

.cp-nav-link.cta-btn::after {
    display: none;
}

.cp-nav-link.cta-btn:hover {
    background: #a07830;
    color: #fff;
}

.cp-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.cp-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #c9a84c;
    transition: all .3s;
    transform-origin: center;
}

/* ── HERO ── */
.cp-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.cp-hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.cp-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .9s ease;
}

.cp-slide-active {
    opacity: 1;
}

.cp-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .28) 100%);
}

.cp-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 48px;
    max-width: 700px;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cp-hero-sub {
    font-family: 'Raleway', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 16px;
}

.cp-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.cp-hero-title span {
    color: #e2c97e;
}

.cp-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 520px;
}

.cp-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cp-slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cp-prev-slide,
.cp-next-slide {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .4);
    background: rgba(0, 0, 0, .3);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all .3s;
}

.cp-prev-slide:hover,
.cp-next-slide:hover {
    background: #c9a84c;
    border-color: #c9a84c;
}

.cp-slider-dots {
    display: flex;
    gap: 10px;
}

.cp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: all .3s;
    border: none;
    padding: 0;
}

.cp-dot-active {
    background: #c9a84c !important;
    transform: scale(1.3);
}

/* ── STATS BAND ── */
.cp-stats-band {
    background: #c9a84c;
}

.cp-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.cp-stat-item {
    flex: 1;
    text-align: center;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.cp-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a1410;
    line-height: 1;
}

.cp-stat-plus {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1410;
}

.cp-stat-item p {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #231d15;
    margin-top: 4px;
}

.cp-stat-divider {
    width: 1px;
    background: rgba(0, 0, 0, .15);
    align-self: stretch;
    margin: 12px 0;
}

/* ── SHARED SECTION PARTS ── */
.cp-section-tag {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 12px;
}

.cp-section-tag.light {
    color: #e2c97e;
}

.cp-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.25;
    color: #1a1410;
    margin-bottom: 16px;
}

.cp-section-title.light {
    color: #fff;
}

.cp-section-title span {
    color: #c9a84c;
}

.cp-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.cp-section-subtitle {
    font-size: 1.05rem;
    color: #8a7a65;
    max-width: 600px;
    margin: 0 auto;
}

/* ── BUTTONS ── */
.cp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .35s;
    border: 2px solid transparent;
    text-decoration: none;
}

.cp-btn-primary {
    background: #c9a84c;
    color: #1a1410;
    border-color: #c9a84c;
}

.cp-btn-primary:hover {
    background: #a07830;
    border-color: #a07830;
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(201, 168, 76, .3);
}

.cp-btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.cp-btn-outline:hover {
    background: #fff;
    color: #1a1410;
}

.cp-btn-white {
    background: #fff;
    color: #1a1410;
    border-color: #fff;
}

.cp-btn-white:hover {
    background: transparent;
    color: #fff;
}

.cp-btn-full {
    width: 100%;
    justify-content: center;
}

.cp-btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

/* ── ABOUT ── */
.cp-about {
    padding: 100px 0;
    background: #f8f4ee;
}

.cp-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cp-about-image-wrapper {
    position: relative;
    height: 480px;
}

.cp-about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    border-radius: 12px;
    overflow: hidden;
}

.cp-about-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-radius: 12px;
}

.cp-main-img {
    background: linear-gradient(135deg, #231d15, #3d3020);
    color: #c9a84c;
}

.cp-about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border: 5px solid #f8f4ee;
    border-radius: 12px;
    overflow: hidden;
}

.cp-sec-img {
    background: linear-gradient(135deg, #a07830, #c9a84c);
    color: #1a1410;
}

.cp-about-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cp-about-sec-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cp-about-badge {
    position: absolute;
    top: 50%;
    right: 18%;
    transform: translate(50%, -50%);
    background: #c9a84c;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(201, 168, 76, .3);
    border: 4px solid #fff;
    z-index: 2;
}

.cp-badge-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1410;
    text-align: center;
}

.cp-about-lead {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: #5a4a35;
    margin-bottom: 16px;
    line-height: 1.7;
}

.cp-about-text {
    font-size: .95rem;
    color: #5a4a35;
    line-height: 1.8;
    margin-bottom: 14px;
}

.cp-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0 28px;
}

.cp-about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    font-weight: 600;
    color: #1a1410;
}

.cp-about-feature i {
    color: #c9a84c;
    font-size: 1rem;
}

/* ── JOURNEY ── */
.cp-journey {
    background: #2e2518;
    padding: 100px 0;
}

.cp-journey-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cp-journey-content {
    color: #f8f4ee;
}

.cp-journey-content p {
    font-size: .95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 16px;
}

.cp-journey-content .cp-btn-white {
    margin-top: 12px;
}

.cp-journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cp-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.cp-timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #c9a84c;
    flex-shrink: 0;
    margin-top: 4px;
    box-shadow: 0 0 0 4px rgba(201, 168, 76, .2);
}

.cp-timeline-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #c9a84c;
    margin-bottom: 4px;
}

.cp-timeline-content p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .7);
    margin: 0;
}

/* ── SERVICES ── */
.cp-services {
    padding: 100px 0;
    background: #ede5d5;
}

.cp-services-grid {
    display: grid;
    gap: 28px;
}

.cp-cols-1 {
    grid-template-columns: 1fr;
}

.cp-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.cp-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.cp-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.cp-service-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 32px;
    border-bottom: 4px solid transparent;
    transition: all .35s;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
}

.cp-service-card:hover {
    border-bottom-color: #c9a84c;
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
}

.cp-service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #c9a84c, #a07830);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #1a1410;
    margin-bottom: 20px;
}

.cp-service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #1a1410;
    margin-bottom: 12px;
}

.cp-service-card p {
    font-size: .9rem;
    color: #5a4a35;
    line-height: 1.75;
    margin-bottom: 20px;
}

.cp-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #a07830;
    text-decoration: none;
    transition: gap .3s, color .3s;
}

.cp-service-link:hover {
    gap: 14px;
    color: #c9a84c;
}

/* ── WHY US ── */
.cp-why-us {
    position: relative;
    background: #1a1410;
    padding: 100px 0;
    overflow: hidden;
}

.cp-why-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201, 168, 76, .08) 0%, transparent 60%), radial-gradient(circle at 80% 50%, rgba(201, 168, 76, .05) 0%, transparent 60%);
}

.cp-why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cp-why-content p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
    margin-bottom: 24px;
}

.cp-why-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cp-why-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(201, 168, 76, .15);
    border-radius: 12px;
    padding: 20px;
    transition: all .35s;
}

.cp-why-feature-item:hover {
    border-color: #c9a84c;
    background: rgba(201, 168, 76, .06);
}

.cp-why-icon {
    width: 48px;
    height: 48px;
    background: #c9a84c;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1a1410;
    flex-shrink: 0;
}

.cp-why-feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 4px;
}

.cp-why-feature-item>div>p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .6);
    margin: 0;
}

/* ── CATALOG ── */
.cp-catalog {
    padding: 100px 0;
    background: #f8f4ee;
}

.cp-catalog-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cp-filter-btn {
    padding: 10px 24px;
    border: 2px solid #ede5d5;
    background: #fff;
    color: #5a4a35;
    border-radius: 30px;
    font-family: 'Raleway', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
}

.cp-filter-btn.active,
.cp-filter-btn:hover {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #1a1410;
}

.cp-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cp-catalog-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    height: 280px;
    transition: transform .35s;
}

.cp-catalog-item:hover {
    transform: scale(1.02);
}

.cp-catalog-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cp-cat-img-icon {
    font-size: 4rem;
    color: rgba(226, 201, 126, .5);
}

.cp-catalog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 20, 16, .92) 0%, rgba(26, 20, 16, .2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: all .35s;
}

.cp-catalog-item:hover .cp-catalog-overlay {
    background: linear-gradient(to top, rgba(26, 20, 16, .96) 0%, rgba(26, 20, 16, .5) 60%, rgba(26, 20, 16, .1) 100%);
}

.cp-catalog-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 4px;
}

.cp-catalog-overlay span {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a84c;
}

.cp-cat-link {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: #c9a84c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1410;
    font-size: .9rem;
    opacity: 0;
    transform: scale(.8);
    transition: all .35s;
    text-decoration: none;
}

.cp-catalog-item:hover .cp-cat-link {
    opacity: 1;
    transform: scale(1);
}

.cp-catalog-cta {
    text-align: center;
    margin-top: 48px;
}

/* ── CTA SECTION ── */
.cp-cta-section {
    position: relative;
    background: linear-gradient(135deg, #231d15 0%, #3d3020 50%, #231d15 100%);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.cp-cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(201, 168, 76, .15) 0%, transparent 70%);
}

.cp-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cp-cta-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #fff;
    margin-bottom: 16px;
}

.cp-cta-inner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 36px;
    line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.cp-testimonials {
    padding: 100px 0;
    background: #ede5d5;
}

.cp-testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cp-testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 36px 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all .35s;
}

.cp-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
}

.cp-testi-stars {
    display: flex;
    gap: 4px;
    color: #c9a84c;
    font-size: .9rem;
}

.cp-testimonial-card>p {
    font-size: .92rem;
    color: #5a4a35;
    line-height: 1.8;
    flex: 1;
    font-style: italic;
}

.cp-testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #ede5d5;
    padding-top: 16px;
}

.cp-testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #c9a84c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1410;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cp-testi-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.cp-testi-author strong {
    display: block;
    font-weight: 700;
    color: #1a1410;
    font-size: .9rem;
}

.cp-testi-author span {
    font-size: .8rem;
    color: #8a7a65;
}

.cp-testi-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}

.cp-testi-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #c9a84c;
    background: transparent;
    color: #c9a84c;
    font-size: 1rem;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cp-testi-nav button:hover {
    background: #c9a84c;
    color: #1a1410;
}

/* ── CONTACT ── */
.cp-contact {
    padding: 100px 0;
    background: #f8f4ee;
}

.cp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.cp-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cp-contact-card {
    background: #231d15;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform .3s;
    border-left: 4px solid #c9a84c;
}

.cp-contact-card:hover {
    transform: translateX(4px);
}

.cp-contact-icon {
    width: 48px;
    height: 48px;
    background: #c9a84c;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1410;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cp-contact-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #c9a84c;
    margin-bottom: 6px;
}

.cp-contact-card p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.6;
    margin: 0;
}

.cp-contact-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cp-contact-social p {
    color: #5a4a35;
    font-weight: 600;
    font-size: .9rem;
}

.cp-social-icons {
    display: flex;
    gap: 10px;
}

.cp-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #c9a84c;
    background: transparent;
    color: #c9a84c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: all .3s;
    text-decoration: none;
}

.cp-social-btn:hover {
    background: #c9a84c;
    color: #1a1410;
}

.cp-contact-form-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
}

.cp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cp-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cp-form-group label {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #5a4a35;
}

.cp-form-group input,
.cp-form-group select,
.cp-form-group textarea {
    padding: 14px 16px;
    border: 2px solid #ede5d5;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-size: .92rem;
    color: #1a1410;
    background: #f8f4ee;
    transition: all .3s;
    outline: none;
}

.cp-form-group input:focus,
.cp-form-group select:focus,
.cp-form-group textarea:focus {
    border-color: #c9a84c;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(201, 168, 76, .12);
}

.cp-form-group textarea {
    resize: vertical;
}

.cp-form-success {
    display: none;
    align-items: center;
    gap: 10px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: .9rem;
}

.cp-form-success.show {
    display: flex;
}

/* ── FOOTER ── */
.cp-footer-top {
    background: #1a1410;
    padding: 80px 0 48px;
}

.cp-footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
    gap: 48px;
}

.cp-footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    display: block;
}

.cp-footer-logo span {
    color: #c9a84c;
}

.cp-footer-brand p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    margin-bottom: 24px;
}

.cp-footer-socials {
    display: flex;
    gap: 10px;
}

.cp-footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, .4);
    background: rgba(201, 168, 76, .08);
    color: #c9a84c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: all .3s;
    text-decoration: none;
}

.cp-footer-socials a:hover {
    background: #c9a84c;
    color: #1a1410;
    border-color: #c9a84c;
}

.cp-footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #c9a84c;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.cp-footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: #c9a84c;
}

.cp-footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cp-footer-col ul li a {
    font-size: .88rem;
    color: rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .3s;
    text-decoration: none;
}

.cp-footer-col ul li a i {
    font-size: .75rem;
    color: #c9a84c;
}

.cp-footer-col ul li a:hover {
    color: #c9a84c;
    padding-left: 4px;
}

.cp-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.cp-footer-contact-item i {
    color: #c9a84c;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: .9rem;
}

.cp-footer-contact-item p {
    font-size: .87rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6;
    margin: 0;
}

.cp-footer-bottom {
    background: #231d15;
    border-top: 1px solid rgba(201, 168, 76, .15);
    padding: 20px 0;
}

.cp-footer-bottom p {
    font-size: .83rem;
    color: rgba(255, 255, 255, .45);
    text-align: center;
}

.cp-footer-bottom a {
    color: #c9a84c;
    text-decoration: none;
}

.cp-footer-bottom a:hover {
    color: #e2c97e;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .cp-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .cp-cols-3,
    .cp-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cp-about-grid,
    .cp-journey-inner,
    .cp-why-inner,
    .cp-contact-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .cp-topbar-left {
        display: none;
    }

    .cp-nav-links {
        position: fixed;
        inset: 0;
        background: #1a1410;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        transform: translateX(100%);
        transition: transform .4s ease;
        z-index: 999;
    }

    .cp-nav-links.open {
        transform: translateX(0);
    }

    .cp-nav-link {
        font-size: 1.2rem;
        padding: 16px 32px;
    }

    .cp-hamburger {
        display: flex;
        z-index: 1000;
        position: relative;
    }

    .cp-hero-content {
        padding: 0 24px;
    }

    .cp-hero-title {
        font-size: 2.2rem;
    }

    .cp-about-grid,
    .cp-journey-inner,
    .cp-why-inner {
        grid-template-columns: 1fr;
    }

    .cp-about-image-wrapper {
        height: 320px;
    }

    .cp-contact-grid,
    .cp-cols-2,
    .cp-cols-3,
    .cp-cols-4 {
        grid-template-columns: 1fr;
    }

    .cp-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cp-stats-inner {
        flex-wrap: wrap;
    }

    .cp-stat-item {
        flex: 1 1 40%;
    }

    .cp-testimonials-track {
        grid-template-columns: 1fr;
    }

    .cp-footer-grid {
        grid-template-columns: 1fr;
    }

    .cp-contact-form-wrapper {
        padding: 28px;
    }

    .cp-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cp-catalog-grid {
        grid-template-columns: 1fr;
    }

    .cp-hero-btns {
        flex-direction: column;
    }
}