/* CSS Variables - Premium Blue, Gold, White */
:root {
    --primary: #003366; /* Navy Blue */
    --dark:    #001F3F; /* Dark Blue */
    --blue-light: #E6F0FA; /* Pale Blue */
    --gold:    #D4AF37;
    --light-gold: #F9F1D8;
    --white:   #ffffff;
    --text-dark: #1A2530;
    --text-muted: #556B82;
    --radius: 12px;
    --shadow: 0 8px 25px rgba(0, 51, 102, 0.1);
    --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Prompt', sans-serif !important; }
html { scroll-behavior: smooth; }
body { background-color: var(--blue-light); color: var(--text-dark); line-height: 1.6; font-weight: 300; }
h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.3; color: var(--dark); margin-bottom: 15px; }
a { text-decoration: none; transition: 0.3s; }
img { max-width: 100%; display: block; object-fit: cover; }

/* Navigation */
.navbar { background: rgba(255, 255, 255, 0.98); position: sticky; top: 0; z-index: 1000; padding: 15px 20px; border-bottom: 3px solid var(--primary); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 20px; list-style: none; }
.nav-links a { color: var(--dark); font-weight: 500; font-size: 1rem; }
.nav-links a:hover { color: var(--gold); }
@media (max-width: 768px) { .nav-links { display: none; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 30px; border-radius: 30px; font-weight: 500; font-size: 1.1rem; transition: all .3s; box-shadow: 0 4px 10px rgba(0,0,0,.15); cursor: pointer; border: none; }
.btn-gold { background: linear-gradient(45deg, var(--gold), #F3D078, var(--gold)); color: var(--dark); border: 2px solid var(--gold); font-weight: 600; }
.btn-gold:hover { box-shadow: 0 6px 20px rgba(212,175,55,.4); transform: translateY(-2px); }
.btn-blue { background: linear-gradient(45deg, var(--primary), var(--dark)); color: var(--white); border: 2px solid var(--primary); }
.btn-blue:hover { box-shadow: 0 6px 15px rgba(0,51,102,.4); transform: translateY(-2px); }
.btn-line { background: linear-gradient(45deg, #00C300, #00A300); color: var(--white); font-weight: 600; }

/* Layout & Grids */
.section { padding: 80px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.grid-6 { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 15px; }

/* Elements */
.section-title { text-align: center; font-size: 2.2rem; color: var(--primary); margin-bottom: 40px; font-weight: 700; }
.section-title::after { content: ''; display: block; width: 70px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--gold)); margin: 14px auto 0; border-radius: 3px; }
.section-title.light { color: var(--gold); }
.section-title.light::after { background: linear-gradient(90deg, var(--gold), var(--white), var(--gold)); }

.card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border-bottom: 4px solid var(--gold); overflow: hidden; transition: 0.3s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,51,102,.15); }
.card-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.card-body { padding: 25px; }
.card h3 { color: var(--primary); font-size: 1.2rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

.step-list { list-style: none; background: var(--white); padding: 40px; border-radius: 14px; border: 1px solid var(--gold); box-shadow: var(--shadow); }
.step-list li { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px dashed var(--gold); font-size: 1.05rem; }
.step-list li:last-child { border: none; }
.step-num { min-width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--gold)); color: var(--white); font-weight: 700; display: flex; align-items: center; justify-content: center; }

.fs-loc-pill { display: inline-block; background: var(--white); border: 1px solid var(--gold); color: var(--primary); padding: 8px 18px; border-radius: 30px; font-size: 0.95rem; margin: 5px; transition: 0.3s; }
.fs-loc-pill:hover { background: var(--primary); color: var(--gold); border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }

.portfolio-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; border: 2px solid var(--gold); transition: 0.3s; }
.portfolio-img:hover { transform: scale(1.03); }

.form-control { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 8px; font-size: 1rem; margin-bottom: 15px; outline: none; }
.form-control:focus { border-color: var(--gold); }

.footer { background: var(--dark); color: var(--white); padding: 60px 20px 20px; border-top: 4px solid var(--gold); }