/* style.css - PROFESSIONAL CORPORATE VERSION */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Manrope:wght@300;400;600;800&display=swap');

:root {
    --navy: #051b36;
    --navy-dark: #021124;
    --gold: #c5a059;
    --gold-hover: #d4af37;
    --white: #ffffff;
    --light: #f4f7f6;
    --text: #333;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Manrope', sans-serif; color: var(--text); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

/* --- HEADER & NAVIGATION --- */
header {
    background: var(--navy);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 5%;
    background: rgba(5, 27, 54, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { height: 50px; width: 50px; border-radius: 50%; border: 2px solid var(--gold); background: #fff; padding: 2px; }
.logo-text h1 { color: var(--white); font-size: 1.1rem; letter-spacing: 1px; margin: 0; }
.logo-text span { color: var(--gold); font-size: 0.65rem; letter-spacing: 2px; font-weight: 800; display: block; }

nav ul { list-style: none; display: flex; gap: 25px; }
nav a { color: rgba(255,255,255,0.8); text-decoration: none; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; transition: var(--transition); }
nav a:hover, nav a.active { color: var(--gold); }

.menu-toggle { display: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* --- HERO SECTION --- */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(2, 17, 36, 0.9), rgba(2, 17, 36, 0.4));
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-tag { color: var(--gold); border: 1px solid var(--gold); padding: 5px 15px; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; }
.hero h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin: 20px 0; line-height: 1.1; }
.hero p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; }

.btn { padding: 12px 30px; text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; transition: var(--transition); display: inline-block; border-radius: 4px; }
.btn-gold { background: var(--gold); color: var(--navy-dark); }
.btn-gold:hover { background: var(--white); color: var(--navy); }
.btn-outline { border: 1px solid white; color: white; margin-left: 10px; }
.btn-outline:hover { background: white; color: var(--navy); }

/* --- SECTIONS --- */
.section { padding: 80px 8%; }
.bg-light { background: var(--light); }
.section-title { font-size: 2.5rem; color: var(--navy); margin-bottom: 30px; }
.section-subtitle { color: var(--gold); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; display: block; }

.split-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-img img { width: 100%; border-radius: 8px; box-shadow: 15px 15px 0 var(--gold); }

/* --- CARDS --- */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.srv-card { background: white; padding: 40px; border-radius: 8px; transition: var(--transition); border-bottom: 3px solid transparent; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.srv-card:hover { transform: translateY(-10px); border-bottom: 3px solid var(--gold); }
.srv-icon { font-size: 3rem; color: var(--navy); margin-bottom: 20px; }

/* --- FOOTER --- */
footer { background: var(--navy-dark); color: rgba(255,255,255,0.6); padding: 60px 8% 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { color: white; margin-bottom: 20px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; font-size: 0.9rem; }
.copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .menu-toggle { display: block; }
    nav { 
        display: none; position: absolute; top: 100%; left: 0; width: 100%; 
        background: var(--navy); padding: 20px; flex-direction: column;
    }
    nav.active { display: block; }
    nav ul { flex-direction: column; gap: 15px; }
    .split-wrapper { grid-template-columns: 1fr; }
    .hero { text-align: center; padding-top: 100px; }
    .btn-outline { margin-left: 0; margin-top: 10px; width: 100%; }
    .btn-gold { width: 100%; }
}