/* =========================================
   NEWKK HOUSE OF ARTS — Main Stylesheet
   ========================================= */

:root {
    --ivory: #F5F0E8;
    --gold: #C9A84C;
    --gold-light: #E2C47A;
    --gold-dark: #A8862D;
    --charcoal: #1A1A1A;
    --beige: #E8DDD0;
    --beige-dark: #D4C4B0;
    --white: #FFFFFF;
    --text-muted: #6B6B6B;
    --shadow: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-gold: 0 4px 24px rgba(201,168,76,0.25);
    --radius: 4px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--ivory);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* CONTAINER */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }

/* HEADINGS */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 12px;
}
.section-title span { color: var(--gold); }
.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 56px;
}
.section-header { text-align: center; }
.gold-divider {
    width: 60px; height: 2px;
    background: var(--gold);
    margin: 16px auto 20px;
}

/* BUTTONS */
.btn-gold {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold);
    color: var(--charcoal);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600; font-size: 0.875rem;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 16px 36px;
    border: none; border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.4); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500; font-size: 0.875rem;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 15px 36px;
    border: 1.5px solid rgba(255,255,255,0.7);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.nav-container {
    max-width: 1280px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; flex-direction: column; line-height: 1;
}
.nav-logo .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 700; letter-spacing: 6px;
    color: var(--gold);
}
.nav-logo .logo-sub {
    font-size: 0.65rem; letter-spacing: 3px;
    color: rgba(255,255,255,0.7); text-transform: uppercase;
    margin-top: 2px;
}
.nav-menu {
    display: flex; align-items: center; gap: 36px;
}
.nav-link {
    font-size: 0.8rem; font-weight: 500;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    position: relative;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: var(--transition);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--gold); }
.nav-link.nav-cta {
    background: var(--gold); color: var(--charcoal);
    padding: 10px 24px; border-radius: var(--radius);
    font-weight: 600;
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover { background: var(--gold-dark); color: var(--charcoal); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--white); transition: var(--transition);
}

/* =========================================
   HERO
   ========================================= */
.hero {
    position: relative; height: 100vh; min-height: 680px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 40%, #1a1208 100%);
    z-index: 0;
}
/* Marble texture overlay */
.hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    z-index: 1;
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}
.hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; z-index: 1;
    opacity: 0.5;
}
.hero-content {
    position: relative; z-index: 10;
    text-align: center; color: var(--white);
    padding: 0 24px;
}
.hero-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
    padding: 8px 20px; margin-bottom: 28px;
    animation: fadeInDown 1s ease 0.3s both;
}
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 600; line-height: 1.05;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.5s both;
}
.hero-title .gold { color: var(--gold); }
.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 300; letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 48px;
    animation: fadeInUp 1s ease 0.7s both;
}
.hero-btns {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}
.hero-scroll {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 2px;
    z-index: 10; animation: bounce 2s infinite 2s;
}
.hero-scroll i { font-size: 1.2rem; margin-top: 8px; }

/* =========================================
   ABOUT
   ========================================= */
.about { background: var(--white); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.about-image-wrap {
    position: relative;
}
.about-image-wrap img {
    width: 100%; height: 560px; object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.about-image-wrap::before {
    content: '';
    position: absolute; top: -16px; left: -16px;
    right: 16px; bottom: 16px;
    border: 2px solid var(--gold); border-radius: var(--radius);
    z-index: -1;
}
.about-badge {
    position: absolute; bottom: 32px; right: -20px;
    background: var(--charcoal);
    color: var(--white); text-align: center;
    padding: 20px 24px;
    box-shadow: var(--shadow);
}
.about-badge .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; color: var(--gold); line-height: 1;
}
.about-badge .label { font-size: 0.7rem; letter-spacing: 2px; opacity: 0.8; }

.about-content .tag {
    font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 12px; font-weight: 600;
}
.about-content .section-title { text-align: left; }
.about-content p { color: var(--text-muted); margin: 20px 0 36px; font-size: 1.05rem; }

.usp-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px;
}
.usp-card {
    background: var(--ivory);
    border: 1px solid var(--beige-dark);
    padding: 20px 16px; text-align: center;
    border-radius: var(--radius);
    transition: var(--transition);
}
.usp-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.usp-card i { font-size: 1.5rem; color: var(--gold); margin-bottom: 8px; }
.usp-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; margin-bottom: 4px; }
.usp-card p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* =========================================
   GALLERY / PRODUCTS
   ========================================= */
.gallery { background: var(--ivory); }

.filter-tabs {
    display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 48px;
}
.filter-btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--beige-dark);
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; border-radius: 100px;
    transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--gold); border-color: var(--gold);
    color: var(--charcoal); font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.gallery-item {
    position: relative; overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/5;
    cursor: pointer;
    background: var(--beige);
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(201,168,76,0.9) 0%, transparent 60%);
    opacity: 0; transition: var(--transition);
    display: flex; flex-direction: column;
    justify-content: flex-end; align-items: flex-start;
    padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; color: var(--charcoal); margin-bottom: 4px;
}
.gallery-overlay .view-btn {
    font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--charcoal); font-weight: 600;
    display: flex; align-items: center; gap: 6px;
}
.gallery-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 12px;
    color: var(--text-muted);
}
.gallery-placeholder i { font-size: 2.5rem; color: var(--beige-dark); }
.gallery-placeholder span { font-size: 0.85rem; letter-spacing: 1px; }

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-us {
    background: var(--charcoal);
    position: relative; overflow: hidden;
}
.why-us::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.why-us .section-title { color: var(--white); }
.why-us .section-subtitle { color: rgba(255,255,255,0.6); }
.why-us .gold-divider { background: var(--gold); }

.why-cards {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 32px; margin-top: 16px;
}
.why-card {
    text-align: center; padding: 48px 24px;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.05), transparent);
    opacity: 0; transition: var(--transition);
}
.why-card:hover { border-color: var(--gold); transform: translateY(-8px); }
.why-card:hover::before { opacity: 1; }
.why-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.75rem; color: var(--charcoal);
}
.why-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; color: var(--white); margin-bottom: 12px;
}
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* =========================================
   PROCESS
   ========================================= */
.process { background: var(--white); }
.process-steps {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 0; position: relative; margin-top: 16px;
}
.process-steps::before {
    content: '';
    position: absolute; top: 40px; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
    z-index: 0;
}
.process-step {
    text-align: center; padding: 0 16px 0;
    position: relative; z-index: 1;
}
.step-num {
    width: 80px; height: 80px;
    background: var(--ivory);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 600; color: var(--gold);
    transition: var(--transition);
}
.process-step:hover .step-num {
    background: var(--gold); color: var(--charcoal);
}
.process-step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; margin-bottom: 8px; color: var(--charcoal);
}
.process-step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials { background: var(--ivory); }
.testimonials-carousel {
    position: relative; overflow: hidden;
}
.testimonials-track {
    display: flex; gap: 24px;
    transition: transform 0.5s ease;
}
.testimonial-card {
    min-width: calc(33.333% - 16px);
    background: var(--white);
    border: 1px solid var(--beige-dark);
    padding: 40px 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex-shrink: 0;
}
.stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-style: italic;
    color: var(--charcoal); margin-bottom: 24px; line-height: 1.7;
}
.testimonial-author {
    display: flex; align-items: center; gap: 14px;
}
.author-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 600; color: var(--charcoal);
}
.author-info .name { font-weight: 600; font-size: 0.95rem; }
.author-info .city { font-size: 0.8rem; color: var(--text-muted); }
.carousel-controls {
    display: flex; gap: 12px; justify-content: center; margin-top: 40px;
}
.carousel-btn {
    width: 48px; height: 48px;
    background: transparent;
    border: 1px solid var(--beige-dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1rem; color: var(--charcoal);
    transition: var(--transition);
}
.carousel-btn:hover { background: var(--gold); border-color: var(--gold); }

/* =========================================
   CONTACT
   ========================================= */
.contact { background: var(--charcoal); }
.contact .section-title { color: var(--white); }
.contact .section-subtitle { color: rgba(255,255,255,0.6); }
.contact .gold-divider { background: var(--gold); }

.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: start;
}
.contact-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 48px 40px;
    border-radius: var(--radius);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.75rem;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.6); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 14px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius);
    color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
    transition: var(--transition);
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--gold);
    background: rgba(201,168,76,0.06);
}
.form-group select option { background: var(--charcoal); }
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; color: var(--white); margin-bottom: 8px;
}
.contact-info > p { color: rgba(255,255,255,0.6); margin-bottom: 36px; }
.contact-item {
    display: flex; gap: 16px; align-items: flex-start;
    margin-bottom: 24px;
}
.contact-item-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1rem;
}
.contact-item-text .label {
    font-size: 0.75rem; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
}
.contact-item-text a, .contact-item-text p {
    color: rgba(255,255,255,0.85); font-size: 0.95rem;
}
.map-embed {
    margin-top: 36px; border-radius: var(--radius); overflow: hidden;
    border: 1px solid rgba(201,168,76,0.2);
}
.map-embed iframe { width: 100%; height: 220px; border: none; display: block; }

/* =========================================
   FOOTER
   ========================================= */
.footer { background: #111111; }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}
.footer-logo { margin-bottom: 12px; }
.footer-logo .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 700; letter-spacing: 5px; color: var(--gold);
    display: block;
}
.footer-logo .logo-sub {
    font-size: 0.6rem; letter-spacing: 3px;
    color: rgba(255,255,255,0.5); text-transform: uppercase;
}
.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 1rem;
    color: rgba(255,255,255,0.7); margin-bottom: 12px;
}
.footer-desc { color: rgba(255,255,255,0.45); font-size: 0.875rem; line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px; height: 40px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 0.9rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.footer-links h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; color: var(--white);
    margin-bottom: 20px; letter-spacing: 1px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a {
    color: rgba(255,255,255,0.55); font-size: 0.875rem;
    transition: var(--transition);
}
.footer-links ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; color: var(--white);
    margin-bottom: 20px; letter-spacing: 1px;
}
.footer-contact p {
    color: rgba(255,255,255,0.55); font-size: 0.875rem;
    margin-bottom: 10px; display: flex; gap: 10px; align-items: flex-start;
}
.footer-contact p i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}
.footer-bottom p {
    text-align: center;
    color: rgba(255,255,255,0.3); font-size: 0.8rem;
}

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
    position: fixed; bottom: 32px; right: 32px; z-index: 999;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; color: var(--white);
    box-shadow: 0 4px 24px rgba(37,211,102,0.4);
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); background: #1ebe5b; }
.wa-tooltip {
    position: absolute; right: 70px;
    background: var(--charcoal); color: var(--white);
    padding: 6px 14px; border-radius: 100px;
    font-size: 0.8rem; white-space: nowrap;
    opacity: 0; pointer-events: none;
    transition: var(--transition);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* =========================================
   POPUP
   ========================================= */
.popup-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: var(--transition);
    backdrop-filter: blur(4px);
}
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup-box {
    background: var(--ivory);
    padding: 48px 40px; width: 90%; max-width: 480px;
    border-radius: var(--radius);
    position: relative;
    transform: translateY(20px); transition: var(--transition);
}
.popup-overlay.active .popup-box { transform: translateY(0); }
.popup-close {
    position: absolute; top: 16px; right: 16px;
    background: none; border: none; font-size: 1.2rem;
    cursor: pointer; color: var(--text-muted);
}
.popup-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem; margin-bottom: 6px;
}
.popup-box > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.popup-form input,
.popup-form select {
    width: 100%; padding: 12px 16px; margin-bottom: 14px;
    border: 1px solid var(--beige-dark);
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
    background: var(--white);
    transition: var(--transition);
}
.popup-form input:focus,
.popup-form select:focus {
    outline: none; border-color: var(--gold);
}
.popup-form .btn-gold { width: 100%; justify-content: center; }

/* =========================================
   ALERT / NOTIFICATION
   ========================================= */
.alert {
    padding: 14px 20px; border-radius: var(--radius);
    margin-bottom: 16px; font-size: 0.9rem;
    display: none;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; display: block; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; display: block; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
    .why-cards { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .process-steps::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image-wrap img { height: 400px; }
    .contact-grid { grid-template-columns: 1fr; }
    .testimonial-card { min-width: calc(50% - 12px); }
}
@media (max-width: 768px) {
    .section-pad { padding: 72px 0; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; bottom: 0;
        width: 280px; background: var(--charcoal);
        flex-direction: column; justify-content: center;
        gap: 8px; padding: 80px 32px;
        transition: right 0.4s ease;
        box-shadow: -8px 0 40px rgba(0,0,0,0.3);
    }
    .nav-menu.open { right: 0; }
    .nav-link { font-size: 0.9rem; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .nav-link.nav-cta { border-bottom: none; text-align: center; margin-top: 16px; }
    .nav-toggle { display: flex; }
    .hero-btns { flex-direction: column; align-items: center; }
    .usp-cards { grid-template-columns: 1fr; }
    .why-cards { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .testimonial-card { min-width: 85%; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 32px 24px; }
    .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .why-cards { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .testimonial-card { min-width: 95%; }
    .about-badge { right: 0; }
}
