/* ═══════════════════════════════════════════
   amsee enterprises — Premium Design System
   ═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --gold: #C6A34E;
    --gold-light: #E8D5A3;
    --gold-glow: rgba(198, 163, 78, 0.15);
    --cream: #FAF8F4;
    --cream-deep: #F3EFE8;
    --dark: #1A1714;
    --dark-soft: #2D2924;
    --text: #3D3830;
    --text-muted: #8A8279;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --font-sanskrit: 'Tiro Devanagari Hindi', serif;
    --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: default;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 7rem 0;
}

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

/* ── Custom Cursor + Shimmer ── */
* { cursor: none !important; }

.cursor-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, background 0.2s ease;
    box-shadow: 0 0 8px rgba(198, 163, 78, 0.9), 0 0 16px rgba(198, 163, 78, 0.5);
    opacity: 0;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(198, 163, 78, 0.6);
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, opacity 0.3s ease;
    opacity: 0;
}

body:hover .cursor-dot,
body:hover .cursor-ring {
    opacity: 1;
}

.cursor-glow {
    position: fixed;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198,163,78,0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* Hover states for interactive elements */
a:hover ~ .cursor-dot,
button:hover ~ .cursor-dot {
    transform: translate(-50%, -50%) scale(1.8);
}

/* Shimmer sparkle particles */
@keyframes shimmer-float {
    0%   { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(0); opacity: 0; }
}

.cursor-shimmer {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    animation: shimmer-float var(--dur, 700ms) ease-out forwards;
}

@keyframes shimmer-star {
    0%   { transform: translate(-50%, -50%) rotate(0deg) scale(1); opacity: 1; }
    100% { transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) rotate(180deg) scale(0); opacity: 0; }
}

.cursor-shimmer.star {
    animation: shimmer-star var(--dur, 800ms) ease-out forwards;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.2rem;
    height: 1px;
    background: var(--gold);
}

.section-label.light {
    color: var(--gold-light);
}

.section-label.light::before {
    background: var(--gold-light);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto 3rem;
}

.title-underline {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin-bottom: 2rem;
}

.title-underline.center {
    margin: 0 auto 2rem;
}

.sanskrit {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-family: var(--font-sanskrit);
    font-weight: 400;
    letter-spacing: 2px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.4s var(--ease);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 0.85rem;
    transition: transform 0.4s var(--ease);
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(198,163,78,0.3);
}

.btn-primary:hover {
    background: var(--dark);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1.5px solid rgba(61,56,48,0.2);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    margin-top: 1.5rem;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* ═══════════════════════════
   NAVBAR
   ═══════════════════════════ */

.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    padding: 0.7rem 1.8rem;
    z-index: 1000;
    transition: all 0.5s var(--ease);
    background: rgba(250, 248, 244, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(198, 163, 78, 0.12);
    border-radius: 60px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}

.navbar.scrolled {
    top: 12px;
    background: rgba(250, 248, 244, 0.95);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    padding: 0.5rem 1.8rem;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    animation: navLogoSpin 20s linear infinite;
}

@keyframes navLogoSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text);
    transition: all 0.3s var(--ease);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    letter-spacing: 0.2px;
}

.nav-links li a:hover {
    color: var(--gold);
    background: var(--gold-glow);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 0.55rem 1.6rem !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 12px rgba(198,163,78,0.25);
}

.nav-cta:hover {
    background: var(--dark) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s var(--ease);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════
   HERO
   ═══════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(160deg, #FAF8F4 0%, #F5F0E8 30%, #FBF9F5 60%, #F0EBE0 100%);
    padding-top: 6rem;
    padding-bottom: 14rem;
}

/* Hero Background Image Backdrop */
.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('sites/refined_2.png');
    background-size: cover;
    background-position: center 35%;
    opacity: 0.30; /* bolder presence as requested */
    mix-blend-mode: luminosity; /* blends purely through lightness to keep the gold/cream tones */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 85%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 85%);
    pointer-events: none;
}

/* Canvas for particle network */
.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Subtle architectural grid texture */
.hero-grid-texture {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.025;
    background-image:
        linear-gradient(rgba(198,163,78,1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(198,163,78,1) 1px, transparent 1px);
    background-size: 80px 80px;
}

/* Corner accents — architectural bracket details */
.corner-accent {
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}

.corner-accent::before,
.corner-accent::after {
    content: '';
    position: absolute;
    background: var(--gold);
    opacity: 0.15;
}

.corner-accent.top-left { top: 40px; left: 40px; }
.corner-accent.top-left::before { top: 0; left: 0; width: 1px; height: 60px; }
.corner-accent.top-left::after { top: 0; left: 0; width: 60px; height: 1px; }

.corner-accent.top-right { top: 40px; right: 40px; }
.corner-accent.top-right::before { top: 0; right: 0; width: 1px; height: 60px; }
.corner-accent.top-right::after { top: 0; right: 0; width: 60px; height: 1px; }

.corner-accent.bottom-left { bottom: 40px; left: 40px; }
.corner-accent.bottom-left::before { bottom: 0; left: 0; width: 1px; height: 60px; }
.corner-accent.bottom-left::after { bottom: 0; left: 0; width: 60px; height: 1px; }

.corner-accent.bottom-right { bottom: 40px; right: 40px; }
.corner-accent.bottom-right::before { bottom: 0; right: 0; width: 1px; height: 60px; }
.corner-accent.bottom-right::after { bottom: 0; right: 0; width: 60px; height: 1px; }

/* Floating geometric shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: floatShape 20s ease-in-out infinite;
    z-index: 1;
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -15%;
    right: -10%;
    background: radial-gradient(circle, rgba(198,163,78,0.12) 0%, transparent 65%);
    animation-duration: 25s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -8%;
    left: -6%;
    background: radial-gradient(circle, rgba(198,163,78,0.08) 0%, transparent 65%);
    animation-duration: 18s;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 15%;
    left: 12%;
    background: radial-gradient(circle, rgba(198,163,78,0.06) 0%, transparent 65%);
    animation-duration: 22s;
    animation-delay: -10s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 10px) scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 850px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(198,163,78,0.2);
    border-radius: 50px;
    background: rgba(198,163,78,0.04);
    backdrop-filter: blur(5px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-main-text {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 0.8rem;
    font-weight: 400;
    line-height: 1.8;
}

.hero-sub-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Rotating Logo — BIG and prominent */
.hero-logo-wrap {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-ring-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198,163,78,0.12) 0%, rgba(198,163,78,0.03) 50%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
}

.hero-rotating-logo {
    width: 200px;
    height: 200px;
    animation: rotateGlobe 10s linear infinite;
    filter: drop-shadow(0 12px 30px rgba(198,163,78,0.25));
}

@keyframes rotateGlobe {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3%;
    right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    writing-mode: vertical-lr;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--gold);
    animation: scrollPulse 2s ease-in-out infinite;
    transform-origin: top;
}

@keyframes scrollPulse {
    0% { transform: scaleY(0); opacity: 0; }
    50% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0); opacity: 0; }
}

/* ═══════════════════════════
   STATS
   ═══════════════════════════ */

.stats {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
    display: inline-block;
    font-weight: 700;
}

.stat-plus {
    font-size: 3rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--gold);
}

.stat-item p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.1);
}

/* ═══════════════════════════
   ABOUT
   ═══════════════════════════ */

.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.image-accent {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--gold-light);
    border-radius: 12px;
    z-index: 1;
    opacity: 0.6;
}

.image-tag {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--gold);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(198,163,78,0.3);
}

.about-text .section-title {
    font-size: 2.2rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.highlight-text {
    padding: 1.5rem;
    background: var(--cream);
    border-left: 3px solid var(--gold);
    margin: 2rem 0;
    font-style: italic;
    color: var(--text);
    font-weight: 400;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.highlight-quote {
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-right: 8px;
}

/* ═══════════════════════════
   SERVICES
   ═══════════════════════════ */

.services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: left;
    transition: all 0.5s var(--ease);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(198,163,78,0.2);
}

.service-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--gold);
    transition: all 0.4s var(--ease);
}

.service-card:hover .service-icon-wrap {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(198,163,78,0.06);
    line-height: 1;
    transition: all 0.4s var(--ease);
}

.service-card:hover .service-number {
    color: rgba(198,163,78,0.12);
}

/* ═══════════════════════════
   PORTFOLIO
   ═══════════════════════════ */

.portfolio {
    background: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,23,20,0.95) 0%, rgba(26,23,20,0.3) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
    transition: all 0.5s var(--ease);
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(198,163,78,0.3);
    border-radius: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s var(--ease);
}

.portfolio-item:hover .portfolio-tag {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    transform: translateY(10px);
    transition: all 0.5s var(--ease);
}

.portfolio-item:hover .portfolio-content h3 {
    transform: translateY(0);
}

.portfolio-content p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s var(--ease) 0.1s;
}

.portfolio-item:hover .portfolio-content p {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════
   TESTIMONIALS
   ═══════════════════════════ */

.testimonials {
    background: var(--cream);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s var(--ease);
    position: relative;
}

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

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.2rem;
}

.stars i {
    color: var(--gold);
    font-size: 0.85rem;
}

.review-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    line-height: 1.8;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--cream);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.client-info h4 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
    font-weight: 600;
}

.client-location {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ═══════════════════════════
   FAQ
   ═══════════════════════════ */

.faq {
    background: var(--white);
}

.faq-container {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question h3 {
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 500;
    transition: color 0.3s var(--ease);
}

.faq-question:hover h3 {
    color: var(--gold);
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s var(--ease);
}

.faq-toggle i {
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: all 0.4s var(--ease);
}

.faq-item.active .faq-toggle {
    background: var(--gold);
    border-color: var(--gold);
    transform: rotate(45deg);
}

.faq-item.active .faq-toggle i {
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* ═══════════════════════════
   CONTACT SECTION
   ═══════════════════════════ */

.contact-section {
    padding: 8rem 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--white);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.03);
    border: 1px solid rgba(198,163,78,0.15);
}

.contact-info .section-label {
    margin-bottom: 1rem;
}

.contact-info .section-title {
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-contact-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.contact-method .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-glow);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}

.contact-method:hover .icon-box {
    transform: translateY(-3px);
    background: var(--gold);
    color: var(--white);
}

.contact-method h4 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    color: var(--dark);
    font-weight: 600;
}

.contact-method p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Form */
.contact-form-container {
    background: #FAF8F4;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(198,163,78,0.1);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input, 
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem 1.2rem;
    background: var(--white);
    border: 1px solid rgba(198,163,78,0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    transition: all 0.3s var(--ease);
    resize: none;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C6A34E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1em;
}

.form-group select:invalid,
.form-group select option[value=""] {
    color: #999;
}

.form-group input:focus, 
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-glow);
}

.form-group label {
    position: absolute;
    left: 1.2rem;
    top: 1.2rem;
    color: #999;
    font-size: 1rem;
    transition: all 0.3s var(--ease);
    pointer-events: none;
    background: transparent;
    padding: 0;
}

/* Floating Label Logic */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -0.7rem;
    left: 1rem;
    font-size: 0.85rem;
    color: var(--gold);
    background: var(--white);
    padding: 0 0.5rem;
    font-weight: 500;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    border: none;
    padding: 1.2rem;
    font-size: 1.05rem;
    cursor: pointer;
}

/* ═══════════════════════════
   FOOTER
   ═══════════════════════════ */

.footer {
    background: var(--dark);
    color: var(--white);
    padding-top: 5rem;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
}

.footer-logo-img {
    width: 35px;
    height: 35px;
    opacity: 0.8;
}

.footer-brand h2 {
    font-size: 1.6rem;
    letter-spacing: 3px;
    color: var(--white);
}

.footer-brand p {
    color: rgba(255,255,255,0.4);
    font-size: 0.95rem;
    max-width: 380px;
    line-height: 1.8;
}

.footer-contact h3, .footer-links h3 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

.contact-list i {
    color: var(--gold);
    font-size: 0.85rem;
    width: 16px;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.4);
    transition: all 0.3s var(--ease);
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    color: rgba(255,255,255,0.25);
    font-size: 0.85rem;
}

/* ═══════════════════════════
   ANIMATIONS
   ═══════════════════════════ */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.fade-in.left {
    transform: translateX(-40px);
}

.fade-in.right {
    transform: translateX(40px);
}

.fade-in.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ═══════════════════════════
   RESPONSIVE
   ═══════════════════════════ */

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

@media (max-width: 992px) {
    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    .about-grid, .portfolio-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-image {
        margin-bottom: 2rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        gap: 3rem;
    }
    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: 94%;
        top: 12px;
        padding: 0.6rem 1.2rem;
        border-radius: 16px;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 280px;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
        padding: 2rem;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.5s var(--ease);
        border-radius: 0;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .sanskrit {
        font-size: 2.2rem;
    }
    
    .hero-main-text {
        font-size: 1.1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-rotating-logo {
        width: 90px;
        height: 90px;
    }

    .hero-logo-wrap {
        bottom: 5%;
    }

    .scroll-indicator {
        display: none;
    }

    .image-tag {
        right: 10px;
    }

    .section {
        padding: 5rem 0;
    }

    .footer-cta {
        padding: 3rem 1.5rem;
        margin-top: -2rem;
    }

    .footer-cta h2 {
        font-size: 1.5rem;
    }
}
