
:root{

--bg:#050505;
--bg-secondary:#0b0b0b;
--gold:#c8a96a;
--gold-soft:#e5d2a3;
--text:#f4f1eb;
--muted:rgba(255,255,255,.68);
--border:rgba(255,255,255,.08);

--container:1420px;
--radius:28px;

}

html{
scroll-behavior:smooth;
}

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

body{
font-family:'Inter',sans-serif;
background:var(--bg);
color:var(--text);
overflow-x:hidden;
line-height:1.7;
-webkit-font-smoothing:antialiased;
text-rendering:optimizeLegibility;
}

.ambient-grid{
position:fixed;
inset:0;
pointer-events:none;
background-image:linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
linear-gradient(90deg,rgba(255,255,255,.02) 1px, transparent 1px);
background-size:90px 90px;
opacity:.1;
}

.left-strip{
position:fixed;
left:0;
top:0;
bottom:0;
width:8px;
background-image:repeating-conic-gradient(var(--gold) 0% 25%,#000 0% 50%);
background-size:10px 10px;
z-index:9999;
}

.container{
width:min(var(--container),calc(100% - 60px));
margin:auto;
position:relative;
z-index:2;
}

.narrow{
max-width:920px;
}

.navbar{
position:fixed;
top:0;
left:0;
right:0;
height:84px;
background:rgba(0,0,0,.74);
backdrop-filter:blur(16px);
border-bottom:1px solid var(--border);
z-index:1000;
transition:
background .5s ease,
border-color .5s ease,
backdrop-filter .5s ease;
}

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

.logo{
font-family:'Teko',sans-serif;
font-size:38px;
text-decoration:none;
color:var(--gold);
letter-spacing:.05em;
}

.desktop-nav{
display:flex;
gap:34px;
}

.desktop-nav a{
font-family:'Teko',sans-serif;
letter-spacing:.14em;
text-transform:uppercase;
text-decoration:none;
color:rgba(255,255,255,.74);
transition:color .4s ease;
}


.desktop-nav a:hover{
color:var(--gold);
}

.nav-btn,
.gold-btn,
.outline-btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:16px 34px;
font-family:'Teko',sans-serif;
letter-spacing:.14em;
text-transform:uppercase;
text-decoration:none;
transition:.5s ease;
will-change:transform;
}

.gold-btn:hover,
.nav-btn:hover,
.outline-btn:hover{
transform:translateY(-2px);
}

.gold-btn:focus,
.nav-btn:focus,
.outline-btn:focus,
.desktop-nav a:focus{
outline:1px solid rgba(200,169,106,.6);
outline-offset:4px;
}

.nav-btn,
.gold-btn{
background:linear-gradient(135deg,var(--gold-soft),var(--gold));
color:#000;
}

.outline-btn{
border:1px solid rgba(200,169,106,.3);
color:var(--gold);
}

.hero{
position:relative;
min-height:100vh;
display:flex;
align-items:center;
padding:180px 0 140px;
overflow:hidden;
}

.hero-bg{
position:absolute;
inset:0;
background:url('https://u3.karspa.in/imgs/works/2/2.webp') center/cover no-repeat;
transform:scale(1.05);
}

.about-bg{
background:url('https://u3.karspa.in/imgs/works/2/3.webp') center/cover no-repeat;
}

.about-spacing{
margin-top:22px;
}

.about-points{
margin-top:28px;
}

.hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(115deg,rgba(0,0,0,.96),rgba(0,0,0,.56));
}

.hero-grid,
.editorial-grid{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:90px;
align-items:center;
position:relative;
z-index:2;
}

.editorial-grid-three{
display:grid;
grid-template-columns:1.1fr .7fr .9fr;
gap:60px;
align-items:center;
}

.eyebrow,
.section-label,
.card-index,
.process-number,
.panel-label,
.case-tag{
font-family:'Teko',sans-serif;
letter-spacing:.22em;
text-transform:uppercase;
color:var(--gold);
}

h1,
h2{
font-family:'Teko',sans-serif;
font-size:clamp(72px,9vw,150px);
letter-spacing:.01em;
line-height:.84;
margin:18px 0 26px;
}

h1 span,
h2 span{
color:var(--gold);
}

.hero-text,
.section-text,
.footer-text,
.footer-small{
font-size:18px;
color:var(--muted);
}

.hero-buttons{
display:flex;
gap:18px;
margin-top:40px;
flex-wrap:wrap;
}

.hero-buttons-large{
margin-top:54px;
}

.hero-buttons-medium{
margin-top:44px;
}

.hero-text-spacing{
margin-top:22px;
}

.hero-points-spacing{
margin-top:28px;
}

.section-spacing-top{
margin-top:22px;
}

.hero-panel,
.service-card,
.process-card,
.review-card,
.case-card{
background:rgba(255,255,255,.03);
border:1px solid rgba(200,169,106,.12);
padding:44px;
border-radius:var(--radius);
backdrop-filter:blur(14px);
transition: transform .5s ease, border-color .5s ease, background .5s ease;
}

/* ==========================================
   RELATED KNOWLEDGE CARDS
========================================== */

.service-card{
    text-decoration:none;
    color:inherit;
    cursor:pointer;
    height:100%;
    display:flex;
    flex-direction:column;
    align-items:stretch;
}

.service-card:hover h3{
    color:var(--gold);
    transition:color .4s ease;
}

.service-card:focus{
    outline:1px solid rgba(200,169,106,.6);
    outline-offset:4px;
}

.service-card p{
    color:var(--muted);
}
.services-grid{
    align-items:stretch;
}

/* ==========================================
   KNOWLEDGE CARDS
========================================== */

.knowledge-card{
    text-decoration:none;
    color:inherit;
    cursor:pointer;
}

.knowledge-card h3{
    transition:color .4s ease;
}

.knowledge-card:hover h3{
    color:var(--gold);
}

.knowledge-card:focus{
    outline:1px solid rgba(200,169,106,.6);
    outline-offset:4px;
}

.hero-panel h3,
.service-card h3,
.process-card h3,
.case-card h3{
font-family:'Cormorant Garamond',serif;
font-size:42px;
font-weight:500;
margin:18px 0 14px;

line-height:1;
}

.section{
padding:100px 0;
}

.dark{
background:var(--bg-secondary);
}

.speed-divider{
position:relative;
height:2px;
overflow:hidden;
background:rgba(255,255,255,.03);
}

.speed-divider::before{
content:'';
position:absolute;
inset:0;
background:linear-gradient(90deg,transparent,var(--gold),transparent);
animation:speed 2.2s linear infinite;
}

.speed-divider::after{
content:'';
position:absolute;
inset:-2px;
background:radial-gradient(circle at center,rgba(200,169,106,.28),transparent 70%);
}

@keyframes speed{
0%{transform:translateX(-100%)}
100%{transform:translateX(100%)}
}

.brand-strip-section{
overflow:hidden;
padding:28px 0;
}

.brand-scroll{
display:flex;
gap:60px;
white-space:nowrap;
animation:marquee 20s linear infinite;
}

.brand-scroll:hover{
animation-play-state:paused;
}

.brand-scroll span{
font-family:'Teko',sans-serif;
letter-spacing:.2em;
color:rgba(255,255,255,.52);
}

@keyframes marquee{
0%{transform:translateX(0)}
100%{transform:translateX(-50%)}
}

.services-grid,
.process-grid,
.case-grid,
.reviews-grid{
display:grid;
gap:24px;
margin-top:54px;
}

.services-grid,
.case-grid,
.reviews-grid{
grid-template-columns:repeat(3,minmax(0,1fr));
align-items:stretch;
}

.process-grid{
grid-template-columns:repeat(3,1fr);
}

.editorial-image,
.map-panel{
min-height:720px;
border-radius:var(--radius);
border:1px solid rgba(200,169,106,.12);
position:relative;
overflow:hidden;
}

.editorial-image{
background:url('https://u3.karspa.in/imgs/works/2/6_1.webp') center/cover no-repeat;
}

.editorial-image::after,
.map-panel::after{
content:'';
position:absolute;
inset:0;
background:linear-gradient(to top,rgba(0,0,0,.32),transparent);
}

.map-panel{
background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
url('https://u3.karspa.in/imgs/works/2/7_1.webp') center/cover no-repeat;
}

.experience-points,
.location-meta{
display:flex;
flex-direction:column;
gap:16px;
margin-top:34px;
}

.experience-points div,
.location-meta div,
.review-author,
.footer-heading{
font-family:'Teko',sans-serif;
letter-spacing:.14em;
text-transform:uppercase;
}

.review-service{
color:var(--muted);
margin-top:4px;
}

.review-meta{
margin-top:26px;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr 1.2fr;
gap:40px;
padding:110px 0 120px;
border-top:1px solid var(--border);
}

.footer-brand{
font-family:'Teko',sans-serif;
font-size:38px;
color:var(--gold);
margin-bottom:18px;
}

.footer-heading{
margin-bottom:18px;
color:var(--gold);
}

.footer-grid ul{
list-style:none;
display:flex;
flex-direction:column;
gap:12px;
color:var(--muted);
}

.mobile-toggle{
display:none;
}

.mobile-menu{
display:block;
}
.reveal{
opacity:0;
transform:translateY(34px);
transition:1s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

.hero-panel:hover,
.service-card:hover,
.process-card:hover,
.case-card:hover,
.review-card:hover{
transform:translateY(-6px);
border-color:rgba(200,169,106,.32);
transition:.5s ease;
}

.review-text{
font-size:17px;
line-height:1.9;
color:var(--muted);
}

.section-text{
max-width:760px;
}

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

.quote-text{
font-family:'Cormorant Garamond',serif;
font-size:clamp(42px,5vw,82px);
line-height:1.05;
color:var(--text);
}

@media(max-width:980px){

.desktop-nav,
.nav-btn{
display:none;
}

.mobile-toggle{
display:block;
background:none;
border:none;
font-size:28px;
color:#fff;
}

.mobile-menu{
position:fixed;
display:block;
top:84px;
left:0;
right:0;
background:rgba(5,5,5,.94);
backdrop-filter:blur(14px);
padding:28px;
z-index:999;
border-bottom:1px solid rgba(255,255,255,.06);
box-shadow:0 20px 60px rgba(0,0,0,.45);
opacity:0;
visibility:hidden;
transform:translateY(-10px);
transition:
opacity .4s ease,
transform .4s ease,
visibility .4s ease;
}

.mobile-menu.active{
display:block;
opacity:1;
visibility:visible;
transform:translateY(0);
}

.mobile-menu a{
display:block;
padding:16px 0;
font-family:'Teko',sans-serif;
letter-spacing:.14em;
text-transform:uppercase;
text-decoration:none;
color:#fff;
}

.hero-grid,
.editorial-grid,
.services-grid,
.process-grid,
.case-grid,
.reviews-grid,
.footer-grid{
grid-template-columns:1fr;
}

h1,
h2{
font-size:clamp(42px,8vw,52px);
line-height:.88;
}

.hero-buttons{
flex-direction:column;
}

.gold-btn,
.outline-btn{
width:100%;
}

.editorial-image,
.map-panel{
min-height:420px;
}

.left-strip{
width:5px;
}

.section{
padding:110px 0;
}

.hero{
padding:150px 0 120px;
}

}

.faq-list{
margin-top:60px;
}

.faq-item{
border-top:1px solid rgba(255,255,255,.08);
}

.faq-question{
width:100%;
background:none;
border:none;
padding:28px 0;
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;

font-family:'Teko',sans-serif;
font-size:32px;
letter-spacing:.05em;
color:var(--text);

text-align:left;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .5s ease;
}

.faq-answer p{
padding:0 0 28px;
max-width:850px;
color:var(--muted);
}

.faq-item.active .faq-answer{
max-height:1200px;
}

.faq-item.active .faq-icon{
transform:rotate(45deg);
}
.faq-answer ul{
    margin:20px 0;
    padding-left:20px;
}

.faq-answer li{
    margin-bottom:10px;
    color:var(--muted);
    line-height:1.8;
}
.faq-question:focus{
    outline:1px solid rgba(200,169,106,.6);
    outline-offset:4px;
}

@media (prefers-reduced-motion: reduce){

    *{
        animation:none !important;
        transition:none !important;
        scroll-behavior:auto !important;
    }

}

.hero-content{
display:flex;
flex-direction:column;
justify-content:center;
}

@media(max-width:980px){

.faq-question{
font-size:22px;
}

}

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

.quote{
font-family:'Cormorant Garamond',serif;
font-size:clamp(42px,5vw,82px);
line-height:1.05;
max-width:1000px;
margin:0 auto;
color:var(--text);
font-style:italic;
}

.quote-divider{
width:120px;
height:1px;
background:rgba(200,169,106,.35);
margin:40px auto;
}

.quote-attribution{
font-family:'Teko',sans-serif;
letter-spacing:.18em;
text-transform:uppercase;
color:var(--gold);
}

.price-highlight{
    font-family:'Teko',sans-serif;
    font-size:clamp(54px,7vw,90px);
    line-height:1;
    color:var(--gold);
    margin:20px 0;
}


.mobile-fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-fixed-footer a {
    flex: 1;
    text-align: center;
    color: #b0b0b0;
    font-family: 'Mona Sans', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-fixed-footer a i {
    font-size: 22px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.mobile-fixed-footer a:hover {
    color: #fff;
}

.mobile-fixed-footer a:hover i {
    transform: translateY(-3px);
    color: #fff;
}

.mobile-fixed-footer a span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Call Button Pop-out Effect */
.mobile-fixed-footer a.call-action {
    color: #fff;
}

.mobile-fixed-footer .call-btn {
    background: #DDF160;
    padding: 0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin-top: -30px;
    margin-bottom: 5px;
    box-shadow: 0 4px 15px rgba(116, 71, 130, 0.6);
    border: 3px solid #0f0f0f;
    transition: all 0.3s ease;
}

.mobile-fixed-footer .call-btn i {
    font-size: 20px;
    color: #fff;
    margin-bottom: 0;
}

.mobile-fixed-footer a.call-action:hover .call-btn {
    background: #7d5fe7;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(116, 71, 130, 0.6);
}

/* Adjust body padding so content doesn't get hidden behind the footer */
body {
    padding-bottom: 90px;
}

/* Mobile specific adjustments */
@media (max-width: 576px) {
    .mobile-fixed-footer a i {
        font-size: 20px;
    }

    .mobile-fixed-footer a span {
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    .mobile-fixed-footer .call-btn {
        width: 46px;
        height: 46px;
        margin-top: -26px;
    }
}
    