:root{

--primary:#111111;
--secondary:#ffffff;

--gold:#b08d57;
--gold-light:#c8a36d;
--gold-dark:#8d6b3f;

--background:#faf8f5;

--surface:#ffffff;

--text:#2b2b2b;

--muted:#777777;

--border:#ececec;

--radius:18px;

--shadow-soft:
0 15px 40px rgba(0,0,0,.08);

--shadow-hover:
0 30px 70px rgba(0,0,0,.15);

--transition:
all .35s ease;

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

body{

font-family:'Inter',sans-serif;

background:var(--background);

color:var(--text);

line-height:1.8;

font-size:16px;

font-weight:400;

-webkit-font-smoothing:antialiased;

}
p{

max-width:700px;

color:var(--muted);

margin-bottom:20px;

}

h1,
h2,
h3,
h4{

font-family:'Playfair Display',serif;

font-weight:600;

line-height:1.2;

letter-spacing:.3px;

color:#111;

margin-bottom:22px;

}
h1{

font-size:clamp(42px,6vw,72px);

}

h2{

font-size:clamp(30px,4vw,46px);

}

h3{

font-size:26px;

}

.container{

width:min(1200px,92%);

margin:auto;

padding:110px 0;

}

section{

padding:110px 0;

}

a{

text-decoration:none;

color:inherit;

}

img{

max-width:100%;

display:block;

}
nav{

position:sticky;

top:0;

z-index:1000;

background:rgba(255,255,255,.90);

backdrop-filter:blur(18px);

-webkit-backdrop-filter:blur(18px);

border-bottom:1px solid rgba(255,255,255,.35);

box-shadow:

0 10px 30px rgba(0,0,0,.05);

transition:

background .3s,

box-shadow .3s,

padding .3s;

}

nav .container{

display:flex;

justify-content:space-between;

align-items:center;

padding:20px 40px;

}

nav a{

position:relative;

font-size:14px;

font-weight:600;

letter-spacing:2px;

padding:8px 0;

color:var(--text);

transition:color .3s ease;

}

nav a:hover{

color:var(--gold);

}

nav a::after{

content:"";

position:absolute;

left:0;

bottom:-6px;

width:0;

height:2px;

background:var(--gold);

transition:width .35s ease;

}

nav a:hover::after{

width:100%;

}
.hero{

min-height:90vh;

display:flex;

align-items:center;

background:

linear-gradient(
rgba(0,0,0,.45),
rgba(0,0,0,.45)
),

url('/assets/images/hero.jpg');

background-size:cover;

background-position:center;

color:white;

}

.hero h1{

font-size:72px;

color:white;

margin-bottom:25px;

max-width:800px;

}

.hero p{

font-size:22px;

max-width:650px;

margin-bottom:40px;

color:white;

}

.hero a{

display:inline-block;

background:var(--primary);

color:white;

padding:18px 40px;

transition:.3s;

}

.hero a:hover{

background:var(--gold-dark);

}
.card-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));

gap:40px;

margin-top:50px;

}

.stat-card{

background:white;

border-radius:24px;

padding:42px;

box-shadow:var(--shadow-soft);

transition:var(--transition);

border:1px solid rgba(0,0,0,.05);

}

.stat-card:hover{

transform:

translateY(-8px)

scale(1.01);

box-shadow:var(--shadow-hover);

}
footer{

background:#222;

color:white;

padding:60px 0;

margin-top:100px;

}

footer hr{

margin-bottom:30px;

opacity:.2;

}
.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 38px;

border-radius:50px;

background:var(--gold);

color:white;

text-decoration:none;

font-weight:600;

transition:var(--transition);

box-shadow:var(--shadow-soft);

border:none;

cursor:pointer;

}

.btn:hover{

transform:

translateY(-4px)

scale(1.02);

background:var(--gold-dark);

box-shadow:var(--shadow-hover);

}

.portfolio-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;

}

.portfolio-card{

background:white;
border-radius:var(--radius);
overflow:hidden;
box-shadow:var(--shadow-soft);
transition:.3s;

}

.portfolio-card:hover{

transform:translateY(-8px);

}

.portfolio-card:hover img{

transform:scale(1.05);

}

.portfolio-card img{

width:100%;

height:280px;

object-fit:cover;

transition:transform .5s ease;

}

.portfolio-card h3{

padding:15px;

}

.portfolio-card p{

padding:0 15px 20px 15px;
color:var(--text);

}
.lightbox{

position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
display:none;
justify-content:center;
align-items:center;
z-index:9999;

}

.lightbox img{

max-width:90%;
max-height:90%;
border-radius:10px;
box-shadow:0 20px 60px rgba(0,0,0,0.5);

}

.portfolio-img{

cursor:pointer;
transition:.3s;

}

.portfolio-img:hover{

transform:scale(1.03);

}
input,
textarea,
select{

width:100%;

padding:16px 20px;

border-radius:14px;

border:1px solid var(--border);

font-size:16px;

transition:var(--transition);

background:white;

margin-bottom:18px;

}


input:focus,
textarea:focus,
select:focus{

outline:none;

border-color:var(--gold);

box-shadow:0 0 0 4px rgba(176,141,87,.15);

}
img{

max-width:100%;

display:block;

border-radius:18px;

}
.status-badge{

display:inline-block;

padding:6px 14px;

border-radius:30px;

font-size:13px;

font-weight:600;

color:white;

}

.status-new{
background:#3498db;
}

.status-consultation{
background:#f39c12;
}

.status-quote{
background:#9b59b6;
}

.status-approved{
background:#16a085;
}

.status-progress{
background:#e67e22;
}

.status-completed{
background:#2ecc71;
}

.status-cancelled{
background:#e74c3c;
}
.booking-page{

max-width:1200px;

margin:80px auto;

padding:20px;

}

.booking-intro{

text-align:center;

margin-bottom:60px;

}

.booking-intro h1{

font-size:52px;

margin-bottom:20px;

}

.booking-intro p{

max-width:720px;

margin:auto;

color:var(--muted);

font-size:18px;

line-height:1.8;

}

.booking-layout{

display:grid;

grid-template-columns:2fr 1fr;

gap:40px;

align-items:start;

}

.booking-form-card{

background:white;

padding:50px;

border-radius:24px;

box-shadow:var(--shadow-soft);

}

.booking-info-card{

background:#111;

color:white;

padding:40px;

border-radius:24px;

position:sticky;

top:120px;

}

.booking-info-card h2{

color:white;

margin-bottom:25px;

}

.booking-info-card ul{

list-style:none;

padding:0;

margin:0 0 30px;

}

.booking-info-card li{

margin-bottom:16px;

line-height:1.7;

}

.booking-info-card hr{

margin:30px 0;

opacity:.2;

}

.booking-info-card h3{

color:var(--gold-light);

margin-bottom:15px;

}

.booking-info-card p{

margin-bottom:15px;

line-height:1.8;

}

.form-card{

display:flex;
flex-direction:column;
gap:8px;

}

.form-card label{

font-weight:600;
margin-top:8px;

}

.form-card input,
.form-card textarea{

margin-bottom:10px;

}

.form-card .btn{

align-self:flex-start;

}

@media(max-width:900px){

.booking-layout{

grid-template-columns:1fr;

}

.booking-info-card{

position:relative;

top:0;

}

.booking-form-card{

padding:30px;

}

}
/* ==========================
   FADE IN ANIMATIONS
========================== */

.fade-up{

opacity:0;

transform:translateY(40px);

transition:
opacity .8s ease,
transform .8s ease;

}

.fade-up.show{

opacity:1;

transform:translateY(0);

}
nav img{

transition:transform .35s ease;

}

nav img:hover{

transform:scale(1.05);

}
nav.scrolled{

background:rgba(255,255,255,.98);

box-shadow:

0 20px 45px rgba(0,0,0,.08);

}
.form-card label{

display:block;

font-weight:600;

margin-bottom:8px;

color:#111;

}

.form-card input,
.form-card textarea{

margin-bottom:24px;

}
.section-divider{

width:90px;

height:4px;

background:var(--gold);

border-radius:50px;

margin:20px 0 40px;

}
/* =========================================
   RESPONSIVE DESIGN
========================================= */

/* ---------- Tablets ---------- */

@media (max-width:992px){

.container{

width:94%;

padding:80px 0;

}

.hero{

min-height:70vh;

text-align:center;

}

.hero h1{

font-size:52px;

margin:auto auto 20px;

}

.hero p{

margin:auto auto 35px;

font-size:20px;

}

.card-grid,
.portfolio-grid{

grid-template-columns:1fr 1fr;

}

nav .container{

padding:18px 20px;

}

}

/* ---------- Mobile ---------- */

@media (max-width:768px){

.container{

width:94%;

padding:60px 0;

}

section{

padding:60px 0;

}

.hero{

padding:80px 0;

min-height:auto;

text-align:center;

}

.hero h1{

font-size:38px;

line-height:1.2;

}

.hero p{

font-size:18px;

}

.card-grid,
.portfolio-grid{

grid-template-columns:1fr;

gap:20px;

}

.stat-card{

padding:28px;

}

.form-card{

padding:30px 22px;

}

.btn{

width:100%;

}

nav .container{

flex-direction:column;

gap:20px;

padding:20px;

}

}

/* ---------- Small Phones ---------- */

@media (max-width:480px){

.hero h1{

font-size:30px;

}

.hero p{

font-size:16px;

}

h2{

font-size:30px;

}

input,
textarea,
select{

padding:14px;

}

}
/* =========================================
   UNIVERSAL CARD
========================================= */

.card{

background:var(--surface);

border:1px solid rgba(0,0,0,.06);

border-radius:24px;

padding:40px;

box-shadow:var(--shadow-soft);

transition:var(--transition);

height:100%;

display:flex;

flex-direction:column;

justify-content:space-between;

overflow:hidden;

position:relative;

}

.card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-hover);

}

.card h3{

margin-bottom:16px;

font-size:24px;

}

.card p{

color:var(--muted);

margin-bottom:18px;

}

.card strong{

margin-top:auto;

font-size:20px;

color:var(--gold);

font-weight:700;

}
.card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:4px;

background:linear-gradient(
90deg,
var(--gold),
var(--gold-light)
);

transform:scaleX(0);

transform-origin:left;

transition:.4s;

}

.card:hover::before{

transform:scaleX(1);

}
.card em{

display:inline-block;

margin-top:10px;

color:var(--gold);

font-style:normal;

font-weight:600;

letter-spacing:1px;

text-transform:uppercase;

font-size:13px;

}
/* ==========================================
   HOMEPAGE STATS STRIP
========================================== */

.stats-strip{

background:white;

border-top:1px solid var(--border);

border-bottom:1px solid var(--border);

}

.stats-row{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

text-align:center;

padding:20px 0;

}

.stat h2{

font-size:34px;

color:var(--gold);

margin-bottom:8px;

}

.stat p{

font-size:15px;

color:var(--muted);

letter-spacing:1px;

text-transform:uppercase;

}
@media(max-width:768px){

.stats-row{

grid-template-columns:repeat(2,1fr);

gap:25px;

}

}
.stat{

transition:.35s;

}

.stat:hover{

transform:translateY(-6px);

}
/* ==========================================
   PREMIUM PORTFOLIO
========================================== */

.portfolio-card{

position:relative;

overflow:hidden;

border-radius:22px;

background:white;

box-shadow:var(--shadow-soft);

transition:.45s;

}

.portfolio-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-hover);

}

.portfolio-card img{

height:320px;

width:100%;

object-fit:cover;

transition:transform .7s ease;

}

.portfolio-card:hover img{

transform:scale(1.06);

}
.portfolio-content{

padding:30px;

}

.portfolio-content h3{

margin-bottom:12px;

}

.portfolio-content p{

color:var(--muted);

line-height:1.8;

}
.portfolio-category{

display:inline-block;

margin-bottom:18px;

padding:8px 16px;

border-radius:30px;

background:#f5efe6;

color:var(--gold-dark);

font-size:12px;

font-weight:700;

letter-spacing:1px;

text-transform:uppercase;

}
.portfolio-card::after{

content:"";

position:absolute;

left:0;

bottom:0;

width:100%;

height:4px;

background:linear-gradient(
90deg,
var(--gold),
var(--gold-light)
);

transform:scaleX(0);

transform-origin:left;

transition:.4s;

}

.portfolio-card:hover::after{

transform:scaleX(1);

}
/* ===========================
   SERVICES
=========================== */

.service-price{

margin:25px 0;

font-size:18px;

color:var(--muted);

}

.service-price strong{

display:block;

font-size:34px;

margin-top:8px;

color:var(--gold);

font-family:'Playfair Display',serif;

}
.card{

background:white;

border-radius:24px;

padding:40px;

box-shadow:var(--shadow-soft);

transition:var(--transition);

display:flex;

flex-direction:column;

justify-content:space-between;

border:1px solid var(--border);

}

.card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-hover);

}
.card h2{

margin-bottom:18px;

}

.card p{

flex:1;

color:var(--muted);

margin-bottom:25px;

}
/* ===========================
   CONTACT PAGE
=========================== */

.contact-page{

display:flex;

flex-direction:column;

gap:60px;

}

.contact-intro{

text-align:center;

max-width:750px;

margin:auto;

}

.contact-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:30px;

margin-top:20px;

}

.contact-card{

background:white;

padding:35px;

border-radius:20px;

box-shadow:var(--shadow-soft);

transition:var(--transition);

border:1px solid var(--border);

}

.contact-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-hover);

}

.contact-card h3{

margin-bottom:20px;

color:var(--gold);

}

.contact-card p{

color:var(--muted);

}

.contact-card a{

color:inherit;

transition:.3s;

}

.contact-card a:hover{

color:var(--gold);

}
/* ==========================
   Booking Success Page
========================== */

.booking-success{

padding:100px 0;

}

.success-card{

background:white;

border-radius:24px;

padding:60px;

max-width:760px;

margin:auto;

text-align:center;

box-shadow:var(--shadow-soft);

}

.success-icon{

width:90px;

height:90px;

margin:auto auto 30px;

border-radius:50%;

background:var(--gold);

color:white;

display:flex;

align-items:center;

justify-content:center;

font-size:42px;

font-weight:bold;

}

.success-text{

max-width:600px;

margin:30px auto;

color:var(--muted);

}

.success-info{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

margin:40px 0;

}

.success-info div{

background:#faf8f5;

padding:25px;

border-radius:18px;

}

.reference-box{

background:#111;

color:white;

padding:20px;

border-radius:14px;

margin:35px auto;

display:inline-block;

font-size:18px;

}

.reference-box strong{

display:block;

margin-top:8px;

font-size:28px;

letter-spacing:2px;

}

.success-footer{

margin:30px auto;

color:var(--muted);

}

.success-buttons{

display:flex;

justify-content:center;

gap:20px;

margin-top:40px;

flex-wrap:wrap;

}

.btn-outline{

background:white;

color:var(--gold);

border:2px solid var(--gold);

}

.btn-outline:hover{

background:var(--gold);

color:white;

}

@media(max-width:768px){

.success-card{

padding:40px 25px;

}

.success-info{

grid-template-columns:1fr;

}

}
.flash.error{
    max-width:700px;
    margin:40px auto;
    padding:18px 22px;
    background:#fff4f4;
    border-left:5px solid #d93025;
    border-radius:12px;
    color:#8a1f11;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.flash.error p{
    margin:6px 0;
}
/* ==========================
   ADMIN LOGIN
========================== */

.login-page{

    min-height:80vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:80px 20px;

}

.login-card{

    width:100%;

    max-width:500px;

    background:white;

    border-radius:24px;

    padding:50px;

    box-shadow:var(--shadow-soft);

}

.login-card h1{

    margin-bottom:10px;

    text-align:center;

}

.login-card p{

    color:var(--muted);

    text-align:center;

    margin-bottom:35px;

}

.login-card label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

}

.login-card input{

    margin-bottom:20px;

}

.login-card .btn{

    width:100%;

}

.flash.error{

    background:#fff5f5;

    color:#c0392b;

    border-left:4px solid #c0392b;

    padding:15px;

    margin-bottom:25px;

    border-radius:10px;

}