:root {
--gold: #C9A94E;
--gold-light: #E8D48B;
--gold-dark: #A8872E;
--deep-navy: #0A1628;
--navy: #122240;
--navy-light: #1A3058;
--cream: #FDF8EF;
--cream-dark: #F5ECD7;
--white: #FFFFFF;
--text-dark: #1A1A2E;
--text-mid: #4A4A6A;
--text-light: #8A8AA0;
--red-accent: #D64545;
--green-accent: #2EAA6F;
--whatsapp: #25D366;
--shadow-sm: 0 2px 8px rgba(10,22,40,0.06);
--shadow-md: 0 8px 30px rgba(10,22,40,0.1);
--shadow-lg: 0 20px 60px rgba(10,22,40,0.15);
--shadow-gold: 0 8px 30px rgba(201,169,78,0.25);
--radius-sm: 8px;
--radius-md: 16px;
--radius-lg: 24px;
--radius-xl: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
font-family: 'DM Sans', sans-serif;
color: var(--text-dark);
background: var(--cream);
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
}

/* ===== PRELOADER ===== */
.preloader {
position: fixed; inset: 0; z-index: 9999;
background: var(--deep-navy);
display: flex; align-items: center; justify-content: center;
transition: opacity 0.6s, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-icon {
width: 60px; height: 60px;
border: 3px solid rgba(201,169,78,0.2);
border-top-color: var(--gold);
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== NAVBAR ===== */
.navbar {
position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
background: rgba(255,255,255,0.92);
backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(201,169,78,0.15);
transition: all 0.4s;
}
.navbar.scrolled {
background: rgba(255,255,255,0.97);
box-shadow: var(--shadow-sm);
}
.nav-inner {
max-width: 1400px; margin: 0 auto;
padding: 0 40px;
display: flex; align-items: center; justify-content: space-between;
height: 80px;
}
.logo {
display: flex; align-items: center; gap: 12px;
text-decoration: none;
}
.logo-icon {
width: 46px; height: 46px;
background: linear-gradient(135deg, var(--gold), var(--gold-dark));
border-radius: 12px;
display: flex; align-items: center; justify-content: center;
box-shadow: var(--shadow-gold);
}
.logo-icon svg { width: 26px; height: 26px; fill: white; }
.logo-text {
font-family: 'Playfair Display', serif;
font-size: 24px; font-weight: 700;
color: var(--deep-navy);
letter-spacing: -0.5px;
}
.logo-text span { color: var(--gold); }
.nav-links {
display: flex; align-items: center; gap: 36px;
list-style: none;
}
.nav-links a {
text-decoration: none; color: var(--text-mid);
font-size: 15px; font-weight: 500;
position: relative; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a::after {
content: ''; position: absolute;
bottom: -4px; left: 0; width: 0; height: 2px;
background: var(--gold);
transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
color: white !important; padding: 10px 24px;
border-radius: 50px; font-weight: 600 !important;
box-shadow: var(--shadow-gold);
transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(201,169,78,0.35); }
.nav-cta::after { display: none !important; }

.hamburger {
display: none; flex-direction: column; gap: 5px;
cursor: pointer; padding: 5px; background: none; border: none;
}
.hamburger span {
width: 24px; height: 2px; background: var(--deep-navy);
transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
min-height: 100vh;
display: flex; align-items: center;
padding: 120px 40px 80px;
position: relative;
overflow: hidden;
}
.hero::before {
content: ''; position: absolute;
top: -200px; right: -200px;
width: 800px; height: 800px;
background: radial-gradient(circle, rgba(201,169,78,0.08) 0%, transparent 70%);
border-radius: 50%;
}
.hero::after {
content: ''; position: absolute;
bottom: -100px; left: -100px;
width: 500px; height: 500px;
background: radial-gradient(circle, rgba(10,22,40,0.04) 0%, transparent 70%);
border-radius: 50%;
}
.hero-inner {
max-width: 1400px; margin: 0 auto; width: 100%;
display: grid; grid-template-columns: 1fr 1fr;
gap: 80px; align-items: center;
position: relative; z-index: 1;
}
.hero-badge {
display: inline-flex; align-items: center; gap: 8px;
background: rgba(201,169,78,0.1);
border: 1px solid rgba(201,169,78,0.25);
padding: 8px 18px; border-radius: 50px;
font-size: 13px; font-weight: 600;
color: var(--gold-dark);
margin-bottom: 24px;
animation: fadeInUp 0.8s ease-out;
}
.hero-badge svg { width: 16px; height: 16px; fill: var(--gold); }
.hero h1 {
font-family: 'Playfair Display', serif;
font-size: clamp(40px, 5vw, 68px);
font-weight: 800; line-height: 1.08;
color: var(--deep-navy);
margin-bottom: 24px;
animation: fadeInUp 0.8s ease-out 0.1s both;
}
.hero h1 .highlight {
background: linear-gradient(135deg, var(--gold), var(--gold-dark));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-desc {
font-size: 18px; line-height: 1.7;
color: var(--text-mid);
margin-bottom: 40px;
max-width: 520px;
animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-actions {
display: flex; gap: 16px; flex-wrap: wrap;
animation: fadeInUp 0.8s ease-out 0.3s both;
}
.btn {
display: inline-flex; align-items: center; gap: 10px;
padding: 16px 36px; border-radius: 50px;
font-size: 16px; font-weight: 600;
text-decoration: none;
cursor: pointer; border: none;
transition: all 0.4s;
}
.btn-primary {
background: linear-gradient(135deg, var(--gold), var(--gold-dark));
color: white;
box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 16px 40px rgba(201,169,78,0.4);
}
.btn-outline {
background: transparent;
color: var(--deep-navy);
border: 2px solid rgba(10,22,40,0.15);
}
.btn-outline:hover {
border-color: var(--gold);
color: var(--gold-dark);
transform: translateY(-2px);
}
.btn svg { width: 20px; height: 20px; }
.hero-stats {
display: flex; gap: 40px; margin-top: 50px;
animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero-stat-num {
font-family: 'Playfair Display', serif;
font-size: 36px; font-weight: 700;
color: var(--deep-navy);
}
.hero-stat-label {
font-size: 13px; color: var(--text-light);
font-weight: 500; margin-top: 4px;
}

.hero-visual {
position: relative;
animation: fadeInRight 1s ease-out 0.3s both;
}
.hero-card {
background: white;
border-radius: var(--radius-xl);
padding: 40px;
box-shadow: var(--shadow-lg);
position: relative;
overflow: hidden;
}
.hero-card::before {
content: ''; position: absolute;
top: 0; left: 0; right: 0; height: 4px;
background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.hero-card-img {
width: 100%; aspect-ratio: 4/3;
background: linear-gradient(135deg, #f8f4ec, #efe8d8);
border-radius: var(--radius-md);
display: flex; align-items: center; justify-content: center;
font-size: 120px; margin-bottom: 20px;
position: relative; overflow: hidden;
}
.hero-card-img::after {
content: '🧵'; position: absolute;
top: 15px; right: 20px; font-size: 30px;
animation: float 3s ease-in-out infinite;
}
.hero-card-tag {
position: absolute; top: 20px; left: 20px;
background: var(--red-accent); color: white;
padding: 6px 14px; border-radius: 50px;
font-size: 12px; font-weight: 700;
}
.hero-card h3 {
font-family: 'Playfair Display', serif;
font-size: 22px; margin-bottom: 8px;
}
.hero-card-price {
font-size: 28px; font-weight: 700;
color: var(--gold-dark);
}
.hero-card-price small {
font-size: 14px; color: var(--text-light);
text-decoration: line-through; margin-left: 8px;
font-weight: 400;
}

.floating-badge {
position: absolute;
background: white;
border-radius: var(--radius-md);
padding: 14px 20px;
box-shadow: var(--shadow-md);
display: flex; align-items: center; gap: 12px;
animation: float 4s ease-in-out infinite;
}
.floating-badge.top-right {
top: -20px; right: -30px;
animation-delay: 0.5s;
}
.floating-badge.bottom-left {
bottom: 30px; left: -40px;
animation-delay: 1s;
}
.floating-badge-icon {
width: 40px; height: 40px;
background: rgba(46,170,111,0.1);
border-radius: 10px;
display: flex; align-items: center; justify-content: center;
font-size: 20px;
}
.floating-badge strong { font-size: 14px; display: block; }
.floating-badge span { font-size: 12px; color: var(--text-light); }

@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-12px); }
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
from { opacity: 0; transform: translateX(40px); }
to { opacity: 1; transform: translateX(0); }
}

/* ===== BRAND TICKER ===== */
.brand-section {
padding: 50px 0;
background: white;
border-top: 1px solid rgba(201,169,78,0.1);
border-bottom: 1px solid rgba(201,169,78,0.1);
overflow: hidden;
}
.brand-label {
text-align: center; font-size: 13px;
font-weight: 600; color: var(--text-light);
text-transform: uppercase; letter-spacing: 3px;
margin-bottom: 30px;
}
.brand-ticker {
display: flex; gap: 60px;
animation: ticker 25s linear infinite;
width: max-content;
}
.brand-ticker:hover { animation-play-state: paused; }
.brand-item {
display: flex; align-items: center; gap: 10px;
font-size: 20px; font-weight: 700;
color: var(--text-light);
white-space: nowrap;
opacity: 0.5;
transition: opacity 0.3s;
}
.brand-item:hover { opacity: 1; }
.brand-item span { font-size: 28px; }
@keyframes ticker {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}

/* ===== SECTION COMMON ===== */
.section { padding: 100px 40px; }
.section-header {
text-align: center;
max-width: 700px; margin: 0 auto 60px;
}
.section-badge {
display: inline-flex; align-items: center; gap: 8px;
background: rgba(201,169,78,0.1);
border: 1px solid rgba(201,169,78,0.2);
padding: 6px 16px; border-radius: 50px;
font-size: 12px; font-weight: 700;
color: var(--gold-dark);
text-transform: uppercase; letter-spacing: 1.5px;
margin-bottom: 16px;
}
.section-title {
font-family: 'Playfair Display', serif;
font-size: clamp(32px, 4vw, 48px);
font-weight: 700; color: var(--deep-navy);
line-height: 1.15; margin-bottom: 16px;
}
.section-desc {
font-size: 17px; color: var(--text-mid);
line-height: 1.7;
}

/* ===== CATEGORIES ===== */
.categories-grid {
max-width: 1400px; margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 24px;
}
.cat-card {
background: white;
border-radius: var(--radius-lg);
padding: 36px 30px;
text-align: center;
border: 1px solid rgba(0,0,0,0.04);
transition: all 0.4s;
cursor: pointer;
position: relative;
overflow: hidden;
}
.cat-card::before {
content: ''; position: absolute;
top: 0; left: 0; right: 0; height: 3px;
background: linear-gradient(90deg, var(--gold), var(--gold-light));
transform: scaleX(0);
transition: transform 0.4s;
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}
.cat-icon {
width: 72px; height: 72px;
background: linear-gradient(135deg, rgba(201,169,78,0.1), rgba(201,169,78,0.05));
border-radius: 20px;
display: flex; align-items: center; justify-content: center;
font-size: 36px;
margin: 0 auto 20px;
transition: transform 0.4s;
}
.cat-card:hover .cat-icon { transform: scale(1.1) rotate(-5deg); }
.cat-card h3 {
font-family: 'Playfair Display', serif;
font-size: 20px; margin-bottom: 10px;
color: var(--deep-navy);
}
.cat-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.cat-count {
display: inline-block; margin-top: 14px;
font-size: 12px; font-weight: 700;
color: var(--gold-dark);
background: rgba(201,169,78,0.1);
padding: 4px 14px; border-radius: 50px;
}

/* ===== PRODUCTS ===== */
.products-section { background: white; }
.products-filter {
max-width: 1400px; margin: 0 auto 40px;
display: flex; justify-content: center;
gap: 10px; flex-wrap: wrap;
}
.filter-btn {
padding: 10px 24px; border-radius: 50px;
border: 1px solid rgba(0,0,0,0.1);
background: transparent;
font-size: 14px; font-weight: 500;
color: var(--text-mid);
cursor: pointer;
transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
background: var(--deep-navy);
color: white;
border-color: var(--deep-navy);
}
.products-grid {
max-width: 1400px; margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
gap: 28px;
}
.product-card {
background: var(--cream);
border-radius: var(--radius-lg);
overflow: hidden;
transition: all 0.4s;
position: relative;
}
.product-card:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-lg);
}
.product-img {
aspect-ratio: 4/3;
background: linear-gradient(135deg, #f5f0e5, #ebe3d1);
display: flex; align-items: center; justify-content: center;
font-size: 80px;
position: relative;
}
.product-tag {
position: absolute; top: 16px; left: 16px;
padding: 5px 12px; border-radius: 50px;
font-size: 11px; font-weight: 700; color: white;
}
.product-tag.bestseller { background: var(--red-accent); }
.product-tag.new { background: var(--green-accent); }
.product-tag.industrial { background: var(--navy); }
.product-wishlist {
position: absolute; top: 16px; right: 16px;
width: 38px; height: 38px;
background: white; border-radius: 50%;
display: flex; align-items: center; justify-content: center;
cursor: pointer; border: none;
box-shadow: var(--shadow-sm);
transition: all 0.3s;
font-size: 18px;
}
.product-wishlist:hover { transform: scale(1.15); background: #fff0f0; }
.product-info { padding: 24px; }
.product-brand {
font-size: 11px; font-weight: 700;
color: var(--gold-dark);
text-transform: uppercase; letter-spacing: 1.5px;
margin-bottom: 8px;
}
.product-info h3 {
font-family: 'Playfair Display', serif;
font-size: 19px; color: var(--deep-navy);
margin-bottom: 8px; line-height: 1.3;
}
.product-rating {
display: flex; align-items: center; gap: 6px;
margin-bottom: 14px;
}
.product-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.product-rating span { font-size: 13px; color: var(--text-light); }
.product-price-row {
display: flex; align-items: center; justify-content: space-between;
margin-bottom: 10px;
}
.product-price {
font-size: 24px; font-weight: 700; color: var(--deep-navy);
}
.product-price small {
font-size: 14px; color: var(--text-light);
text-decoration: line-through; margin-left: 8px; font-weight: 400;
}
.product-emi {
font-size: 12px; color: var(--green-accent);
font-weight: 600;
}
.product-actions {
display: flex; gap: 10px; margin-top: 16px;
}
.product-btn {
flex: 1; padding: 12px;
border-radius: var(--radius-sm);
font-size: 13px; font-weight: 600;
cursor: pointer; border: none;
transition: all 0.3s;
display: flex; align-items: center; justify-content: center; gap: 6px;
}
.product-btn-enquiry {
background: var(--deep-navy); color: white;
}
.product-btn-enquiry:hover { background: var(--navy-light); }
.product-btn-whatsapp {
background: var(--whatsapp); color: white;
}
.product-btn-whatsapp:hover { background: #1fb855; }

/* ===== EMI CALCULATOR ===== */
.emi-section {
background: var(--deep-navy);
position: relative; overflow: hidden;
}
.emi-section::before {
content: ''; position: absolute;
top: -200px; right: -200px;
width: 600px; height: 600px;
background: radial-gradient(circle, rgba(201,169,78,0.1), transparent);
border-radius: 50%;
}
.emi-section .section-badge { background: rgba(201,169,78,0.15); }
.emi-section .section-title { color: white; }
.emi-section .section-desc { color: rgba(255,255,255,0.6); }
.emi-grid {
max-width: 1000px; margin: 0 auto;
display: grid; grid-template-columns: 1fr 1fr;
gap: 40px; align-items: start;
}
.emi-form {
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.1);
border-radius: var(--radius-lg);
padding: 36px;
backdrop-filter: blur(10px);
}
.emi-field { margin-bottom: 24px; }
.emi-field label {
display: block; font-size: 14px;
font-weight: 600; color: rgba(255,255,255,0.8);
margin-bottom: 10px;
}
.emi-field input[type="range"] {
width: 100%; height: 6px;
-webkit-appearance: none; appearance: none;
background: rgba(255,255,255,0.15);
border-radius: 3px; outline: none;
}
.emi-field input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none; appearance: none;
width: 22px; height: 22px;
background: var(--gold);
border-radius: 50%;
cursor: pointer;
box-shadow: 0 0 10px rgba(201,169,78,0.5);
}
.emi-value {
display: flex; justify-content: space-between;
margin-top: 8px;
}
.emi-value span {
font-size: 22px; font-weight: 700; color: var(--gold);
font-family: 'Playfair Display', serif;
}
.emi-value small { font-size: 12px; color: rgba(255,255,255,0.4); }
.emi-result {
background: linear-gradient(135deg, rgba(201,169,78,0.15), rgba(201,169,78,0.05));
border: 1px solid rgba(201,169,78,0.25);
border-radius: var(--radius-lg);
padding: 40px; text-align: center;
}
.emi-result-label {
font-size: 14px; color: rgba(255,255,255,0.6);
text-transform: uppercase; letter-spacing: 2px;
margin-bottom: 12px;
}
.emi-result-amount {
font-family: 'Playfair Display', serif;
font-size: 52px; font-weight: 800;
color: var(--gold);
margin-bottom: 8px;
}
.emi-result-sub {
font-size: 15px; color: rgba(255,255,255,0.5);
margin-bottom: 30px;
}
.emi-breakdown { text-align: left; }
.emi-breakdown-item {
display: flex; justify-content: space-between;
padding: 12px 0;
border-bottom: 1px solid rgba(255,255,255,0.06);
}
.emi-breakdown-item:last-child { border-bottom: none; }
.emi-breakdown-item span:first-child { color: rgba(255,255,255,0.5); font-size: 14px; }
.emi-breakdown-item span:last-child { color: white; font-weight: 600; font-size: 14px; }

/* ===== VIDEO DEMOS ===== */
.video-grid {
max-width: 1400px; margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 28px;
}
.video-card {
border-radius: var(--radius-lg); overflow: hidden;
background: white;
box-shadow: var(--shadow-sm);
transition: all 0.4s;
}
.video-card:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-lg);
}
.video-thumb {
aspect-ratio: 16/9;
background: linear-gradient(135deg, var(--deep-navy), var(--navy));
display: flex; align-items: center; justify-content: center;
position: relative; cursor: pointer;
}
.video-play {
width: 68px; height: 68px;
background: rgba(255,255,255,0.15);
border: 2px solid rgba(255,255,255,0.4);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
transition: all 0.3s;
}
.video-play::after {
content: ''; width: 0; height: 0;
border-left: 20px solid white;
border-top: 12px solid transparent;
border-bottom: 12px solid transparent;
margin-left: 4px;
}
.video-card:hover .video-play {
background: var(--gold);
border-color: var(--gold);
transform: scale(1.1);
}
.video-duration {
position: absolute; bottom: 12px; right: 12px;
background: rgba(0,0,0,0.7); color: white;
padding: 3px 10px; border-radius: 4px;
font-size: 12px; font-weight: 600;
}
.video-info { padding: 20px 24px; }
.video-info h3 {
font-size: 17px; font-weight: 600;
color: var(--deep-navy); margin-bottom: 6px;
}
.video-info p { font-size: 13px; color: var(--text-light); }

/* ===== SERVICE BOOKING ===== */
.service-section { background: white; }
.service-grid {
max-width: 1200px; margin: 0 auto;
display: grid; grid-template-columns: 1fr 1fr;
gap: 60px; align-items: center;
}
.service-features { display: flex; flex-direction: column; gap: 24px; }
.service-feature {
display: flex; gap: 20px;
padding: 24px;
border-radius: var(--radius-md);
border: 1px solid rgba(0,0,0,0.04);
transition: all 0.3s;
}
.service-feature:hover {
background: var(--cream);
border-color: rgba(201,169,78,0.2);
transform: translateX(8px);
}
.service-feature-icon {
width: 52px; height: 52px; min-width: 52px;
background: linear-gradient(135deg, rgba(201,169,78,0.12), rgba(201,169,78,0.04));
border-radius: 14px;
display: flex; align-items: center; justify-content: center;
font-size: 24px;
}
.service-feature h4 {
font-size: 17px; font-weight: 600;
color: var(--deep-navy); margin-bottom: 4px;
}
.service-feature p { font-size: 14px; color: var(--text-light); line-height: 1.5; }

.service-form-card {
background: var(--cream);
border-radius: var(--radius-xl);
padding: 44px;
border: 1px solid rgba(201,169,78,0.15);
}
.service-form-card h3 {
font-family: 'Playfair Display', serif;
font-size: 26px; margin-bottom: 8px;
color: var(--deep-navy);
}
.service-form-card > p {
font-size: 14px; color: var(--text-light);
margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
display: block; font-size: 13px;
font-weight: 600; color: var(--text-mid);
margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
width: 100%; padding: 14px 18px;
border: 1px solid rgba(0,0,0,0.1);
border-radius: var(--radius-sm);
font-size: 15px; font-family: inherit;
background: white;
transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
outline: none;
border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
width: 100%; padding: 16px;
background: linear-gradient(135deg, var(--gold), var(--gold-dark));
color: white; border: none;
border-radius: var(--radius-sm);
font-size: 16px; font-weight: 700;
cursor: pointer;
transition: all 0.3s;
box-shadow: var(--shadow-gold);
}
.form-submit:hover {
transform: translateY(-2px);
box-shadow: 0 12px 35px rgba(201,169,78,0.4);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
max-width: 1400px; margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
gap: 28px;
}
.testimonial-card {
background: white; padding: 36px;
border-radius: var(--radius-lg);
border: 1px solid rgba(0,0,0,0.04);
transition: all 0.3s;
}
.testimonial-card:hover {
box-shadow: var(--shadow-md);
transform: translateY(-4px);
}
.testimonial-stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-text {
font-size: 16px; line-height: 1.7;
color: var(--text-mid); margin-bottom: 24px;
font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
width: 48px; height: 48px;
background: linear-gradient(135deg, var(--gold), var(--gold-light));
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-size: 18px; font-weight: 700; color: white;
}
.testimonial-name { font-size: 15px; font-weight: 600; color: var(--deep-navy); }
.testimonial-role { font-size: 13px; color: var(--text-light); }

/* ===== CONTACT / ENQUIRY ===== */
.contact-section { background: var(--deep-navy); }
.contact-section .section-title { color: white; }
.contact-section .section-desc { color: rgba(255,255,255,0.5); }
.contact-grid {
max-width: 1200px; margin: 0 auto;
display: grid; grid-template-columns: 1fr 1fr;
gap: 60px;
}
.contact-info-card {
display: flex; gap: 16px;
padding: 24px;
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.06);
border-radius: var(--radius-md);
margin-bottom: 16px;
}
.contact-icon {
width: 48px; height: 48px; min-width: 48px;
background: rgba(201,169,78,0.15);
border-radius: 12px;
display: flex; align-items: center; justify-content: center;
font-size: 22px;
}
.contact-info-card h4 { color: white; font-size: 15px; margin-bottom: 4px; }
.contact-info-card p { color: rgba(255,255,255,0.5); font-size: 14px; }
.contact-form-card {
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.08);
border-radius: var(--radius-xl);
padding: 40px;
}
.contact-form-card .form-group label { color: rgba(255,255,255,0.7); }
.contact-form-card input, .contact-form-card select, .contact-form-card textarea {
background: rgba(255,255,255,0.06);
border-color: rgba(255,255,255,0.1);
color: white;
}
.contact-form-card input::placeholder, .contact-form-card textarea::placeholder {
color: rgba(255,255,255,0.3);
}

/* ===== FOOTER ===== */
.footer {
background: #060E1A;
padding: 80px 40px 30px;
}
.footer-grid {
max-width: 1400px; margin: 0 auto;
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 50px;
margin-bottom: 50px;
}
.footer-brand p {
color: rgba(255,255,255,0.4);
font-size: 14px; line-height: 1.7;
margin: 16px 0 24px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
width: 40px; height: 40px;
background: rgba(255,255,255,0.06);
border-radius: 10px;
display: flex; align-items: center; justify-content: center;
color: rgba(255,255,255,0.5);
text-decoration: none; font-size: 18px;
transition: all 0.3s;
}
.footer-social a:hover {
background: var(--gold);
color: white;
}
.footer h4 {
color: white; font-size: 16px; font-weight: 600;
margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a {
color: rgba(255,255,255,0.4);
text-decoration: none; font-size: 14px;
transition: color 0.3s;
}
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
max-width: 1400px; margin: 0 auto;
padding-top: 30px;
border-top: 1px solid rgba(255,255,255,0.06);
display: flex; justify-content: space-between;
align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 13px; }

/* ===== WHATSAPP FLOATING ===== */
.whatsapp-float {
position: fixed; bottom: 28px; right: 28px; z-index: 999;
width: 64px; height: 64px;
background: var(--whatsapp);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
box-shadow: 0 6px 25px rgba(37,211,102,0.4);
cursor: pointer;
animation: whatsapp-pulse 2s infinite;
text-decoration: none;
transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 34px; height: 34px; fill: white; }
.whatsapp-tooltip {
position: absolute; right: 76px; top: 50%;
transform: translateY(-50%);
background: white; color: var(--text-dark);
padding: 10px 18px; border-radius: 10px;
font-size: 14px; font-weight: 600;
white-space: nowrap;
box-shadow: var(--shadow-md);
opacity: 0; pointer-events: none;
transition: opacity 0.3s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes whatsapp-pulse {
0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.4); }
50% { box-shadow: 0 6px 40px rgba(37,211,102,0.6); }
}

/* ===== MODAL ===== */
.modal-overlay {
position: fixed; inset: 0; z-index: 2000;
background: rgba(0,0,0,0.6);
backdrop-filter: blur(8px);
display: none; align-items: center; justify-content: center;
padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
background: white;
border-radius: var(--radius-xl);
max-width: 500px; width: 100%;
padding: 40px;
position: relative;
animation: modalIn 0.3s ease-out;
}
@keyframes modalIn {
from { opacity: 0; transform: scale(0.95) translateY(20px); }
to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
position: absolute; top: 16px; right: 16px;
width: 36px; height: 36px;
background: var(--cream); border: none;
border-radius: 50%; cursor: pointer;
font-size: 18px;
display: flex; align-items: center; justify-content: center;
transition: background 0.3s;
}
.modal-close:hover { background: #eee; }
.modal h3 {
font-family: 'Playfair Display', serif;
font-size: 24px; margin-bottom: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
.hero-inner { grid-template-columns: 1fr; text-align: center; }
.hero-desc { margin: 0 auto 40px; }
.hero-actions { justify-content: center; }
.hero-stats { justify-content: center; }
.hero-visual { max-width: 480px; margin: 40px auto 0; }
.floating-badge { display: none; }
.emi-grid { grid-template-columns: 1fr; }
.service-grid { grid-template-columns: 1fr; }
.contact-grid { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
.nav-links { display: none; }
.hamburger { display: flex; }
.nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: absolute; top: 80px; left: 0; right: 0;
    background: white;
    padding: 20px 40px;
    box-shadow: var(--shadow-md);
    gap: 16px;
}
.section { padding: 60px 20px; }
.hero { padding: 100px 20px 60px; }
.nav-inner { padding: 0 20px; }
.footer { padding: 60px 20px 20px; }
.footer-grid { grid-template-columns: 1fr; gap: 30px; }
.form-row { grid-template-columns: 1fr; }
.service-form-card { padding: 28px; }
.hero-stats { gap: 20px; }
}

