/* =============================================
   KRUPA MAKEOVERS — style.css
   Luxurious Rose Gold Bridal Theme
   ============================================= */

/* --- Variables --- */
:root {
    --rose-gold: #a8685a;
    --rose-gold-deep: #8a4f40;
    --rose-gold-light: #c49a8e;
    --blush: #f5e8e4;
    --cream: #fdf8f5;
    --deep-brown: #2c1408;
    --mid-brown: #5a2e18;
    --text-dark: #1e0e06;
    --text-mid: #4a2a1c;
    --text-light: #7a5044;
    --gold: #b8882e;
    --gold-light: #d4b06a;
    --white: #ffffff;
    --off-white: #fefcfb;
    --shadow: rgba(44,20,8,0.14);
    --shadow-deep: rgba(44,20,8,0.3);
    --transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Cormorant Garamond', Georgia, serif;
    --font-script: 'Great Vibes', cursive;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text-dark); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--font-body); }

/* --- Preloader --- */
#preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-inner img { width: 180px; margin: 0 auto 24px; animation: pulse 1.5s ease infinite; }
.preloader-bar { width: 200px; height: 3px; background: var(--gold-light); border-radius: 3px; overflow: hidden; margin: 0 auto 16px; }
.preloader-fill { height: 100%; background: linear-gradient(90deg, var(--rose-gold), var(--gold)); border-radius: 3px; animation: loading 2s ease forwards; }
.preloader-inner p { font-family: var(--font-script); font-size: 1.3rem; color: var(--rose-gold); }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(0.97);opacity:0.85} }
@keyframes loading { 0%{width:0} 100%{width:100%} }

/* --- Navigation --- */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}
#navbar.scrolled {
    background: rgba(253,248,245,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 30px var(--shadow);
    padding: 10px 0;
}
.nav-container {
    max-width: 1300px; margin: 0 auto; padding: 0 32px;
    display: flex; align-items: center; gap: 32px;
}
.nav-logo img { height: 60px; width: auto; transition: var(--transition); }
#navbar.scrolled .nav-logo img { height: 50px; }
.nav-links { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-link {
    font-family: var(--font-body); font-size: 1rem; font-weight: 500;
    color: var(--white); padding: 6px 14px; border-radius: 4px;
    letter-spacing: 0.02em; transition: var(--transition);
}
#navbar.scrolled .nav-link { color: var(--text-dark); }
.nav-link:hover { color: var(--rose-gold); }
.nav-cta {
    background: var(--rose-gold); color: var(--white);
    padding: 10px 22px; border-radius: 30px; font-size: 0.95rem; font-weight: 600;
    display: flex; align-items: center; gap: 8px; letter-spacing: 0.02em;
    box-shadow: 0 4px 20px rgba(196,154,138,0.4);
    white-space: nowrap;
    transition: var(--transition);
}
.nav-cta:hover { background: var(--rose-gold-deep); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(196,154,138,0.5); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); display: block; }
#navbar.scrolled .hamburger span { background: var(--text-dark); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* --- Hero --- */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, var(--deep-brown) 0%, #3d1a0c 40%, #5a2a14 70%, var(--mid-brown) 100%);
}
/* Decorative hero background */
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-design-bg { position: absolute; inset: 0; }

/* Large decorative circles */
.hdb-circle { position: absolute; border-radius: 50%; }
.hdb-c1 {
    width: 700px; height: 700px; top: -200px; right: -150px;
    background: radial-gradient(circle, rgba(168,104,90,0.18) 0%, transparent 70%);
    border: 1px solid rgba(196,154,142,0.15);
}
.hdb-c2 {
    width: 500px; height: 500px; bottom: -150px; left: -100px;
    background: radial-gradient(circle, rgba(184,136,46,0.12) 0%, transparent 70%);
    border: 1px solid rgba(212,176,106,0.12);
}
.hdb-c3 {
    width: 350px; height: 350px; top: 50%; left: 50%; transform: translate(-50%,-50%);
    border: 1px dashed rgba(212,176,106,0.15);
    animation: heroCircleRotate 30s linear infinite;
}
@keyframes heroCircleRotate { from{transform:translate(-50%,-50%) rotate(0deg)} to{transform:translate(-50%,-50%) rotate(360deg)} }

/* Floating petals */
.hdb-petal {
    position: absolute; font-size: 1.6rem;
    color: rgba(196,154,142,0.25);
    animation: heroPetalFloat 8s ease infinite;
}
.hp1 { top: 12%; left: 8%; animation-delay: 0s; font-size: 2rem; }
.hp2 { top: 20%; right: 10%; animation-delay: 1.5s; font-size: 1.2rem; color: rgba(212,176,106,0.3); }
.hp3 { top: 65%; left: 6%; animation-delay: 3s; font-size: 1.4rem; }
.hp4 { bottom: 15%; right: 8%; animation-delay: 2s; font-size: 2.2rem; }
.hp5 { top: 40%; left: 3%; animation-delay: 4s; font-size: 1rem; color: rgba(212,176,106,0.25); }
.hp6 { bottom: 30%; right: 5%; animation-delay: 5s; font-size: 1.8rem; }
@keyframes heroPetalFloat { 0%,100%{transform:translateY(0) rotate(0deg);opacity:0.6} 50%{transform:translateY(-20px) rotate(20deg);opacity:1} }

/* Diagonal lines */
.hdb-line { position: absolute; background: rgba(196,154,142,0.08); }
.hl1 { width: 2px; height: 100%; top: 0; left: 18%; transform: rotate(15deg); transform-origin: top; }
.hl2 { width: 1px; height: 100%; top: 0; right: 22%; transform: rotate(-12deg); transform-origin: top; background: rgba(212,176,106,0.06); }

/* Small diamonds */
.hdb-diamond { position: absolute; color: rgba(212,176,106,0.2); font-size: 1rem; animation: diamondPulse 4s ease infinite; }
.hd1 { top: 30%; left: 15%; animation-delay: 0s; }
.hd2 { bottom: 25%; right: 18%; animation-delay: 2s; }
@keyframes diamondPulse { 0%,100%{opacity:0.2;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }

.hero-content {
    position: relative; z-index: 2; text-align: center; color: var(--white);
    padding: 120px 20px 60px; max-width: 800px; width: 100%;
}
.hero-welcome { font-family: var(--font-body); font-size: 1.1rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 10px; opacity: 0; }
.hero-brand { font-family: var(--font-script); font-size: clamp(3.5rem,8vw,7rem); color: var(--white); line-height: 1; text-shadow: 0 2px 40px rgba(168,104,90,0.6); margin-bottom: 10px; opacity: 0; }
.hero-script { font-family: var(--font-display); font-size: clamp(1.1rem,2.5vw,1.5rem); font-style: italic; color: var(--gold-light); letter-spacing: 0.05em; margin-bottom: 20px; opacity: 0; }
.hero-divider { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 16px; opacity: 0; }
.hero-divider span { display: block; width: 80px; height: 1px; background: var(--gold-light); }
.hero-divider i { color: var(--gold-light); font-size: 1rem; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.8); letter-spacing: 0.08em; margin-bottom: 36px; opacity: 0; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; opacity: 0; }
.hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px; z-index: 2;
}
.hero-scroll span {
    display: block; width: 8px; height: 8px;
    border-right: 2px solid var(--gold-light); border-bottom: 2px solid var(--gold-light);
    transform: rotate(45deg); animation: scrollBounce 1.5s ease infinite;
}
.hero-scroll span:nth-child(2) { animation-delay: 0.2s; opacity: 0.7; }
.hero-scroll span:nth-child(3) { animation-delay: 0.4s; opacity: 0.4; }
@keyframes scrollBounce { 0%,100%{transform:rotate(45deg) translate(0,0)} 50%{transform:rotate(45deg) translate(4px,4px)} }

/* Animations */
.animate-up { animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 1.2s; }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 40px; font-size: 1rem; font-weight: 600; letter-spacing: 0.05em; transition: var(--transition); cursor: pointer; }
.btn-gold { background: linear-gradient(135deg, var(--rose-gold), var(--gold)); color: var(--white); box-shadow: 0 4px 20px rgba(196,154,138,0.4); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(196,154,138,0.55); background: linear-gradient(135deg, var(--rose-gold-deep), var(--rose-gold)); }
.btn-outline-gold { border: 2px solid var(--gold-light); color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-gold:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }
.btn-full { width: 100%; justify-content: center; }

/* --- Stats Bar --- */
.stats-bar { background: linear-gradient(135deg, var(--deep-brown), var(--mid-brown)); padding: 36px 0; }
.stats-inner { max-width: 900px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.stat-item { text-align: center; color: var(--white); }
.stat-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--gold-light); }
.stat-sym { font-family: var(--font-display); font-size: 2rem; color: var(--gold-light); }
.stat-item p { font-family: var(--font-body); font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 4px; }
.stat-sep { width: 1px; height: 50px; background: rgba(255,255,255,0.2); }

/* --- Sections Common --- */
.container { max-width: 1300px; margin: 0 auto; padding: 0 32px; }
.sec-label { font-family: var(--font-body); font-size: 0.9rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--rose-gold); margin-bottom: 10px; }
.sec-title { font-family: var(--font-display); font-size: clamp(2rem,4vw,2.8rem); font-weight: 600; color: var(--text-dark); line-height: 1.2; margin-bottom: 16px; }
.sec-title em { font-style: italic; color: var(--rose-gold); }
.sec-sub { font-size: 1.1rem; color: var(--text-light); line-height: 1.7; max-width: 620px; }
.sec-header.center { text-align: center; margin-bottom: 60px; }
.sec-header.center .sec-sub { margin: 0 auto; }
.sec-header.light .sec-title { color: var(--white); }
.sec-header.light .sec-sub { color: rgba(255,255,255,0.75); }
.sec-header.light .sec-label { color: var(--gold-light); }

/* --- About --- */
.about { padding: 100px 0; background: var(--off-white); }
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* About Image Column */
.about-image-col { position: relative; }
.about-img-frame {
    position: relative; border-radius: 8px; overflow: hidden;
    box-shadow: 20px 20px 60px var(--shadow-deep);
}
.about-img-frame::before {
    content: ''; position: absolute; inset: -2px;
    border: 2px solid var(--rose-gold-light); border-radius: 8px;
    pointer-events: none; z-index: 1;
}
.about-img-frame img { width: 100%; height: 520px; object-fit: cover; object-position: center top; display: block; }
.about-img-badge {
    position: absolute; bottom: -20px; right: -20px; z-index: 2;
    background: linear-gradient(135deg, var(--rose-gold), var(--gold));
    color: var(--white); padding: 20px 24px; border-radius: 8px;
    text-align: center; box-shadow: 0 8px 30px var(--shadow-deep);
}
.about-img-badge i { font-size: 1.5rem; display: block; margin-bottom: 8px; }
.about-img-badge span { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em; line-height: 1.4; }
.about-exp-tag {
    position: absolute; top: 24px; left: -24px;
    background: var(--deep-brown); color: var(--white);
    padding: 16px 20px; border-radius: 8px;
    display: flex; flex-direction: column; align-items: center;
    box-shadow: 0 8px 30px var(--shadow-deep); z-index: 2;
}
.exp-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.exp-text { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75); text-align: center; line-height: 1.4; margin-top: 4px; }

.about-text-col { display: flex; flex-direction: column; gap: 0; }
.about-brand-name { font-family: var(--font-script); font-size: 2rem; color: var(--rose-gold-deep); margin-bottom: 20px; }
.about-para { font-size: 1.1rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 18px; }
.about-para em { color: var(--rose-gold-deep); font-style: italic; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 32px; }
.feat-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--text-dark); font-weight: 500; }
.feat-item i { color: var(--rose-gold-deep); font-size: 1rem; width: 20px; }

/* --- Services --- */
.services { padding: 100px 0; background: var(--cream); position: relative; overflow: hidden; }
.services-bg-decor { position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(218,181,174,0.2) 0%, transparent 70%); pointer-events: none; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.svc-card {
    background: var(--white); border-radius: 8px; padding: 40px 32px;
    border: 1px solid rgba(218,181,174,0.3);
    box-shadow: 0 4px 24px var(--shadow);
    position: relative; overflow: hidden;
    transition: var(--transition);
}
.svc-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--rose-gold), var(--gold));
    transform: scaleX(0); transform-origin: left;
    transition: var(--transition);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px var(--shadow-deep); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card.featured { background: linear-gradient(135deg, var(--deep-brown) 0%, var(--mid-brown) 100%); color: var(--white); }
.svc-card.featured::before { background: linear-gradient(90deg, var(--gold-light), var(--gold)); }
.svc-badge { position: absolute; top: 20px; right: 20px; background: var(--gold); color: var(--white); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; padding: 5px 12px; border-radius: 20px; }
.svc-icon { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--rose-gold-light), var(--rose-gold)); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.svc-card.featured .svc-icon { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.svc-icon i { font-size: 1.4rem; color: var(--white); }
.svc-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 12px; color: var(--text-dark); }
.svc-card.featured h3 { color: var(--white); }
.svc-card p { font-size: 1rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.svc-card.featured p { color: rgba(255,255,255,0.75); }
.svc-card ul { margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.svc-card ul li { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; color: var(--text-mid); }
.svc-card ul li i { color: var(--rose-gold); font-size: 0.75rem; }
.svc-card.featured ul li { color: rgba(255,255,255,0.8); }
.svc-card.featured ul li i { color: var(--gold-light); }
.svc-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem; font-weight: 600; color: var(--rose-gold); letter-spacing: 0.03em; transition: var(--transition); }
.svc-card.featured .svc-btn { color: var(--gold-light); }
.svc-btn:hover { gap: 12px; color: var(--rose-gold-deep); }
.svc-card.featured .svc-btn:hover { color: var(--white); }

/* --- Portfolio --- */
.portfolio { padding: 100px 0; background: linear-gradient(160deg, var(--deep-brown) 0%, #4a2518 100%); }
.filter-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 48px; }
.fbtn { padding: 10px 24px; border-radius: 30px; border: 1px solid rgba(218,181,174,0.4); color: rgba(255,255,255,0.7); font-size: 0.9rem; font-family: var(--font-body); letter-spacing: 0.05em; transition: var(--transition); }
.fbtn:hover, .fbtn.active { background: var(--rose-gold); border-color: var(--rose-gold); color: var(--white); }
.portfolio-grid { columns: 4 240px; gap: 16px; }
.pgrid-item { break-inside: avoid; margin-bottom: 16px; position: relative; overflow: hidden; border-radius: 6px; cursor: pointer; }
.pgrid-item img { width: 100%; display: block; transition: transform 0.6s ease; }
.pgrid-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(58,31,20,0.85) 0%, transparent 60%); display: flex; align-items: flex-end; justify-content: space-between; padding: 16px; opacity: 0; transition: var(--transition); }
.pgrid-ov span { color: var(--white); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.05em; }
.pgrid-ov i { color: var(--gold-light); }
.pgrid-item:hover .pgrid-ov { opacity: 1; }
.pgrid-item:hover img { transform: scale(1.05); }
.pgrid-item.hidden { display: none; }

/* --- Why Us --- */
.why-us { padding: 100px 0; background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.why-card { padding: 40px 32px; background: var(--white); border-radius: 8px; border: 1px solid rgba(218,181,174,0.2); text-align: center; transition: var(--transition); }
.why-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px var(--shadow); }
.why-icon { width: 70px; height: 70px; margin: 0 auto 20px; border-radius: 50%; background: linear-gradient(135deg, var(--blush), var(--rose-gold-light)); display: flex; align-items: center; justify-content: center; }
.why-icon i { font-size: 1.6rem; color: var(--rose-gold-deep); }
.why-card h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; }
.why-card p { font-size: 1rem; color: var(--text-light); line-height: 1.7; }

/* --- Testimonials --- */
.testimonials { padding: 100px 0; background: linear-gradient(160deg, var(--deep-brown) 0%, #5a2e1a 100%); position: relative; overflow: hidden; }
.testimonials-decor { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(218,181,174,0.1); pointer-events: none; }
.tslider-wrap { overflow: hidden; }
.tslider { display: flex; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.tcard { min-width: 100%; padding: 0 60px; }
.tcard-stars { color: var(--gold-light); font-size: 1.3rem; letter-spacing: 4px; margin-bottom: 24px; }
.tcard p { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.8; margin-bottom: 32px; text-align: center; }
.tcard-author { display: flex; align-items: center; gap: 16px; justify-content: center; }
.tcard-av { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--rose-gold), var(--gold)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white); }
.tcard-author strong { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--white); }
.tcard-author span { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.tslider-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 48px; }
.tctl { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(218,181,174,0.4); color: rgba(255,255,255,0.8); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.tctl:hover { background: var(--rose-gold); border-color: var(--rose-gold); color: var(--white); }
.tdots { display: flex; gap: 8px; }
.tdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); transition: var(--transition); cursor: pointer; }
.tdot.active { background: var(--gold-light); width: 24px; border-radius: 4px; }

/* --- Certifications --- */
.certifications { padding: 100px 0; background: var(--cream); }
.cert-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.cert-card { text-align: center; }
.cert-img-wrap {
    border-radius: 8px; overflow: hidden;
    box-shadow: 0 8px 40px var(--shadow-deep); margin-bottom: 16px;
    transition: var(--transition); border: 2px solid var(--rose-gold-light);
    background: var(--blush);
}
.cert-img-wrap:hover { transform: translateY(-6px); box-shadow: 0 16px 56px var(--shadow-deep); }
.cert-img-wrap img { width: 100%; height: 320px; object-fit: contain; object-position: center; padding: 8px; }
.cert-card p { font-size: 1rem; color: var(--text-dark); font-weight: 600; }

/* --- Contact --- */
.contact { padding: 100px 0; background: linear-gradient(160deg, var(--deep-brown), #4a2518); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; }
.contact-info-col h3, .contact-form-col h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); margin-bottom: 32px; }
.cinfo-item { display: flex; gap: 16px; margin-bottom: 20px; }
.cinfo-item i { font-size: 1.1rem; color: var(--gold-light); width: 24px; margin-top: 2px; }
.cinfo-item strong { display: block; color: var(--white); font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px; }
.cinfo-item p, .cinfo-item a { color: rgba(255,255,255,0.7); font-size: 1rem; }
.cinfo-item a:hover { color: var(--gold-light); }
.btn-wa-big { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: var(--white); padding: 14px 28px; border-radius: 40px; font-size: 1.05rem; font-weight: 700; margin-top: 20px; transition: var(--transition); }
.btn-wa-big:hover { background: #1eb758; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.fgroup { margin-bottom: 18px; }
.fgroup label { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.7); letter-spacing: 0.05em; margin-bottom: 8px; }
.fgroup input, .fgroup select, .fgroup textarea {
    width: 100%; background: rgba(255,255,255,0.08); border: 1px solid rgba(218,181,174,0.3);
    border-radius: 6px; padding: 13px 16px; color: var(--white); font-size: 1rem;
    outline: none; transition: var(--transition);
}
.fgroup input::placeholder, .fgroup textarea::placeholder { color: rgba(255,255,255,0.35); }
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus { border-color: var(--rose-gold-light); background: rgba(255,255,255,0.12); }
.fgroup select option { background: var(--deep-brown); color: var(--white); }
.fgroup textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-msg { padding: 12px 16px; border-radius: 6px; margin-bottom: 16px; font-size: 0.95rem; display: none; }
.form-msg.success { background: rgba(37,211,102,0.15); border: 1px solid rgba(37,211,102,0.4); color: #7dffb3; }
.form-msg.error { background: rgba(220,53,69,0.15); border: 1px solid rgba(220,53,69,0.4); color: #ff9999; }

/* --- Footer --- */
.footer { background: var(--text-dark); }
.footer-top { max-width: 1300px; margin: 0 auto; padding: 80px 32px 60px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand img { height: 80px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(218,181,174,0.3); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-socials a:hover { background: var(--rose-gold); border-color: var(--rose-gold); color: var(--white); }
.footer-col h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); margin-bottom: 20px; }
.footer-col ul li, .footer-col p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; }
.footer-col ul li a, .footer-col p a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul li:hover, .footer-col ul li a:hover, .footer-col p a:hover { color: var(--gold-light); }
.footer-col ul li i, .footer-col p i { color: var(--rose-gold); margin-top: 2px; width: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 32px; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.9rem; }

/* --- WhatsApp Float --- */
.wa-float {
    position: fixed; bottom: 100px; right: 28px; z-index: 900;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    animation: float 3s ease infinite;
    transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.65); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* --- Chatbot --- */
#chatbot { position: fixed; bottom: 28px; right: 28px; z-index: 950; }
#chatbot-toggle {
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-gold), var(--gold));
    color: var(--white); font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(168,104,90,0.55);
    transition: var(--transition); position: relative;
}
#chatbot-toggle:hover { transform: scale(1.1); }
.chat-notification {
    position: absolute; top: -4px; right: -4px;
    width: 20px; height: 20px; border-radius: 50%;
    background: #e74c3c; color: var(--white);
    font-size: 0.7rem; font-weight: 700;
    display: none; align-items: center; justify-content: center;
}
#chatbot-box {
    position: absolute; bottom: 76px; right: 0;
    width: 360px; border-radius: 16px; overflow: hidden;
    background: var(--white); box-shadow: 0 20px 60px rgba(44,20,8,0.3);
    display: none;
    animation: chatPop 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes chatPop { from{opacity:0;transform:scale(0.85) translateY(20px)} to{opacity:1;transform:scale(1) translateY(0)} }
.chatbot-head {
    background: linear-gradient(135deg, var(--deep-brown), var(--mid-brown));
    padding: 16px 20px; display: flex; align-items: center; gap: 12px;
}
.chatbot-head img { width: 40px; height: 40px; object-fit: contain; border-radius: 50%; background: rgba(255,255,255,0.1); padding: 4px; }
.chatbot-head-info strong { display: block; color: var(--white); font-size: 0.95rem; }
.chatbot-head-info span { font-size: 0.8rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 5px; }
.online-dot { color: #2ecc71; font-size: 0.5rem; }
#chatbot-close-btn { margin-left: auto; color: rgba(255,255,255,0.7); font-size: 1rem; }
#chatbot-close-btn:hover { color: var(--white); }
.chatbot-msgs { height: 320px; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.chatbot-msgs::-webkit-scrollbar { width: 4px; }
.chatbot-msgs::-webkit-scrollbar-thumb { background: var(--rose-gold-light); border-radius: 2px; }
.msg { display: flex; }
.msg-bubble { max-width: 85%; padding: 10px 14px; border-radius: 12px; font-size: 0.92rem; line-height: 1.5; }
.bot-msg .msg-bubble { background: var(--blush); color: var(--text-dark); border-radius: 4px 12px 12px 12px; }
.user-msg { justify-content: flex-end; }
.user-msg .msg-bubble { background: linear-gradient(135deg, var(--rose-gold), var(--gold)); color: var(--white); border-radius: 12px 4px 12px 12px; }
.quick-btns { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.qbtn { background: var(--white); border: 1px solid var(--rose-gold-light); border-radius: 20px; padding: 6px 12px; font-size: 0.8rem; color: var(--text-mid); cursor: pointer; transition: var(--transition); font-family: var(--font-body); }
.qbtn:hover { background: var(--rose-gold); color: var(--white); border-color: var(--rose-gold); }
.chat-typing .msg-bubble { display: flex; align-items: center; gap: 4px; padding: 12px 14px; }
.chat-typing .msg-bubble span { width: 6px; height: 6px; border-radius: 50%; background: var(--rose-gold); animation: typing 1s ease infinite; }
.chat-typing .msg-bubble span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing .msg-bubble span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,100%{transform:translateY(0);opacity:0.4} 50%{transform:translateY(-4px);opacity:1} }
.chatbot-input-row { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-top: 1px solid rgba(218,181,174,0.2); }
.chatbot-input-row input { flex: 1; border: 1px solid rgba(218,181,174,0.4); border-radius: 24px; padding: 10px 16px; font-size: 0.92rem; outline: none; transition: var(--transition); font-family: var(--font-body); }
.chatbot-input-row input:focus { border-color: var(--rose-gold); }
#chatbotSendBtn { width: 38px; height: 38px; border-radius: 50%; background: var(--rose-gold); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: var(--transition); }
#chatbotSendBtn:hover { background: var(--rose-gold-deep); transform: scale(1.1); }

/* --- Lightbox --- */
#lightbox { position: fixed; inset: 0; z-index: 9000; display: none; align-items: center; justify-content: center; }
#lightbox.active { display: flex; }
.lb-overlay { position: absolute; inset: 0; background: rgba(20,10,6,0.92); }
.lb-img-wrap { position: relative; z-index: 2; max-width: 90vw; max-height: 90vh; }
.lb-img-wrap img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
#lb-close, #lb-prev, #lb-next { position: absolute; z-index: 3; color: var(--white); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: var(--transition); }
#lb-close { top: 20px; right: 20px; }
#lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
#lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
#lb-close:hover, #lb-prev:hover, #lb-next:hover { background: var(--rose-gold); border-color: var(--rose-gold); }

/* --- Responsive --- */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .why-grid { grid-template-columns: repeat(2,1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .about-design-inner { width: 320px; height: 320px; }
    .ring-1 { width: 320px; height: 320px; }
    .ring-2 { width: 250px; height: 250px; }
    .ring-3 { width: 185px; height: 185px; }
}
@media (max-width: 900px) {
    .about-wrap { grid-template-columns: 1fr; gap: 40px; }
    .about-design-col { min-height: 340px; }
    .about-design-inner { width: 300px; height: 300px; }
    .ring-1 { width: 300px; height: 300px; }
    .ring-2 { width: 234px; height: 234px; }
    .ring-3 { width: 170px; height: 170px; }
    .contact-wrap { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: repeat(2,1fr); }
    .portfolio-grid { columns: 3 180px; }
    .tcard { padding: 0 20px; }
}
@media (max-width: 768px) {
    /* Nav */
    .nav-links {
        display: none; position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100vw; height: 100vh;
        background: rgba(28,10,4,0.98);
        flex-direction: column; justify-content: center;
        align-items: center; gap: 32px; padding: 40px;
        z-index: 9998;
    }
    .nav-links.open { display: flex; }
    .nav-link { color: var(--white) !important; font-size: 1.6rem; font-weight: 500; letter-spacing: 0.05em; }
    .nav-link:hover { color: var(--gold-light) !important; }
    .hamburger { display: flex; z-index: 9999; position: relative; }
    #navbar { z-index: 9999; }
    .nav-container { gap: 16px; }
    .nav-cta { padding: 8px 16px; font-size: 0.85rem; }

    /* Hero */
    .hero-brand { font-size: clamp(3rem,10vw,5rem); }
    .hero-btns { flex-direction: column; align-items: center; }
    .hero-btns .btn { width: 240px; justify-content: center; }
    .hero-content { padding: 100px 20px 60px; }
    .hdb-c1 { width: 400px; height: 400px; }
    .hdb-c2 { width: 300px; height: 300px; }

    /* Stats */
    .stats-inner { flex-wrap: wrap; gap: 24px; justify-content: space-around; }
    .stat-sep { display: none; }
    .stat-item { flex: 0 0 40%; }

    /* About */
    .about { padding: 70px 0; }
    .about-wrap { grid-template-columns: 1fr; gap: 50px; }
    .about-img-frame img { height: 380px; object-position: center top; }
    .about-exp-tag { left: 0; top: -16px; padding: 12px 16px; }
    .exp-num { font-size: 1.8rem; }
    .about-img-badge { right: -10px; bottom: -10px; padding: 14px 18px; }
    .about-features { grid-template-columns: 1fr; gap: 10px; }
    .about-text-col { text-align: center; }
    .about-text-col .btn { width: 100%; justify-content: center; }
    .feat-item { justify-content: center; }

    /* Services */
    .services { padding: 70px 0; }
    .services-grid { grid-template-columns: 1fr; }

    /* Portfolio */
    .portfolio { padding: 70px 0; }
    .portfolio-grid { columns: 2 140px; gap: 10px; }
    .pgrid-item { margin-bottom: 10px; }
    .filter-btns { gap: 6px; }
    .fbtn { padding: 8px 14px; font-size: 0.82rem; }

    /* Why us */
    .why-us { padding: 70px 0; }
    .why-grid { grid-template-columns: 1fr; }

    /* Testimonials */
    .testimonials { padding: 70px 0; }
    .tcard { padding: 0 10px; }
    .tcard p { font-size: 0.98rem; }

    /* Certifications */
    .certifications { padding: 70px 0; }
    .cert-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .cert-img-wrap img { height: 260px; }

    /* Contact */
    .contact { padding: 70px 0; }
    .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 50px 24px 40px; }

    /* Chatbot */
    #chatbot-box { width: calc(100vw - 40px); right: -14px; bottom: 70px; }

    /* WhatsApp float */
    .wa-float { bottom: 90px; right: 20px; width: 52px; height: 52px; font-size: 1.4rem; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .nav-container { padding: 0 16px; }
    .hero-welcome { font-size: 0.9rem; }
    .hero-sub { font-size: 0.95rem; }
    .sec-title { font-size: 1.8rem; }
    .portfolio-grid { columns: 2 120px; }
    .tcard p { font-size: 0.9rem; }
    .stats-inner { padding: 0 16px; }
    .stat-item { flex: 0 0 44%; }
    .stat-num { font-size: 2.2rem; }
    .about-design-inner { width: 240px; height: 240px; }
    .ring-1 { width: 240px; height: 240px; }
    .ring-2 { width: 188px; height: 188px; }
    .ring-3 { width: 135px; height: 135px; }
    .design-name { font-size: 1.7rem; }
    .bubble-1 { display: none; }
    .bubble-2 { width: 76px; height: 76px; left: -10px; }
    .bubble-3 { right: -12px; }
    #chatbot-box { width: calc(100vw - 24px); right: -8px; }
    .svc-card { padding: 28px 20px; }
    .cert-grid { max-width: 100%; }
    .cert-img-wrap img { height: 220px; }
    .footer-top { padding: 40px 16px 30px; }
}
