:root {
    --navy: #0A1128;
    --navy-light: #162243;
    --gold: #C5A059;
    --gold-hover: #DFB566;
    --gold-muted: rgba(197, 160, 89, 0.1);
    --cream: #FAF9F6;
    --cream-dark: #F0EDE5;
    --text-primary: #2C3539;
    --text-muted: #80888E;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Lato', sans-serif; color: var(--text-primary); background-color: var(--cream); overflow-x: hidden;}
h1, h2, h3, h4, h5, .logo { font-family: 'Playfair Display', serif; }
a { text-decoration: none; transition: 0.3s; }
.mt-20 { margin-top: 20px;} .mt-40 { margin-top: 40px;} .mb-20 { margin-bottom: 20px;}
.py-120 { padding: 120px 0; }
.text-center { text-align: center; }
.text-white { color: #fff;}
.font-white { color: #fff; font-family: 'Playfair Display', serif;}
.block { display: block; width: 100%; text-align: center;}

/* Noise */
.noise-overlay { position: fixed; inset: 0; background: url('https://www.transparenttextures.com/patterns/cubes.png'); opacity: 0.03; pointer-events: none; z-index: 9999;}

.container { max-width: 1240px; margin: 0 auto; padding: 0 5%; }
.cream-bg { background-color: var(--cream); }
.dark-bg { background-color: var(--navy); color: #fff; }

/* Buttons */
.btn-gold-solid { background: linear-gradient(135deg, #C5A059, #DFB566); color: var(--navy); padding: 16px 36px; font-weight: 700; letter-spacing: 1px; font-family: 'Lato'; text-transform: uppercase; font-size: 13px; display: inline-block; border-radius: 2px; box-shadow: 0 10px 30px rgba(197,160,89,0.3); border: transparent;}
.btn-gold-solid:hover { background: linear-gradient(135deg, #DFB566, #EBD293); transform: translateY(-3px); box-shadow: 0 15px 40px rgba(197,160,89,0.5);}
.btn-outline-gold { background: transparent; color: var(--gold); border: 1px solid var(--gold); padding: 16px 36px; font-weight: 700; border-radius: 2px; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; cursor: pointer; display: inline-flex; align-items: center; gap: 10px;}
.btn-outline-gold:hover { background: var(--gold-muted); color: var(--gold-hover); }

/* Navigation */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 30px 0; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.navbar.scrolled { padding: 15px 0; background: rgba(10, 17, 40, 0.95); backdrop-filter: blur(10px); box-shadow: 0 4px 30px rgba(0,0,0,0.1); border-bottom: 1px solid rgba(197,160,89,0.2);}
.navbar-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 700; letter-spacing: 2px; color: var(--navy); transition: 0.4s;}
.navbar.scrolled .logo { color: var(--gold); }
.logo-sub { font-size: 10px; font-family: 'Lato'; color: var(--gold); display: block; letter-spacing: 4px; font-weight: 400;}
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links .nav-link { color: var(--navy); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; position: relative;}
.navbar.scrolled .nav-links .nav-link { color: #fff; }
.nav-links .nav-link::after { content: ''; position: absolute; width: 0%; height: 2px; bottom: -5px; left: 0; background: var(--gold); transition: 0.3s; }
.nav-links .nav-link:hover::after { width: 100%; }
.menu-toggle { display: none; color: var(--gold); font-size: 24px; }

/* Hero */
.hero { height: 100vh; min-height: 800px; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; right: 0; top: 0; width: 65%; height: 100%; background: url('../images/hero.png') center/cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--cream) 0%, rgba(250,249,246,0.9) 30%, transparent 100%); }
.hero-content { position: relative; z-index: 10; }
.hero-text-box { max-width: 650px; }
.hero-tag { font-family: 'Lato'; color: var(--gold); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; border-left: 2px solid var(--gold); padding-left: 15px; margin-bottom: 30px; display: block;}
.hero h1 { font-size: 5rem; line-height: 1.05; color: var(--navy); margin-bottom: 25px; }
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400;}
.hero p { font-size: 1.2rem; line-height: 1.8; color: var(--text-muted); }

/* Scroll Ind */
.scroll-indicator { position: absolute; bottom: 40px; left: 5%; display: flex; align-items: center; gap: 15px; }
.scroll-indicator span { font-size: 11px; font-weight: 700; color: var(--navy); letter-spacing: 2px; }
.mouse { width: 24px; height: 36px; border: 2px solid var(--navy); border-radius: 12px; position: relative;}
.mouse::before { content:''; position: absolute; left: 50%; top: 6px; transform: translateX(-50%); width: 4px; height: 6px; background: var(--gold); border-radius: 2px; animation: scrollDown 2s infinite; }
@keyframes scrollDown { 0% { top: 6px; opacity: 1; } 100% { top: 20px; opacity: 0; } }

/* Sections */
.sub-heading { font-family: 'Lato'; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 3px; font-size: 12px; margin-bottom: 15px; display: block;}
.section-header h2 { font-size: 3rem; color: var(--navy); margin-bottom: 25px; }
.divider { width: 60px; height: 2px; background: var(--gold); margin: 0 auto; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px;}
.service-card { background: #fff; padding: 50px 40px; border: 1px solid var(--cream-dark); border-radius: 2px; transition: 0.4s ease; position: relative; overflow: hidden; z-index: 1;}
.service-card::after { content:''; position: absolute; inset: 0; border: 1px solid var(--gold); opacity: 0; transform: scale(0.95); transition: 0.4s; z-index: -1; border-radius: 2px;}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(10,17,40,0.05); }
.service-card:hover::after { opacity: 1; transform: scale(1); }
.s-icon { font-size: 35px; color: var(--gold); margin-bottom: 30px; }
.service-card h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 15px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 30px;}
.gold-link { color: var(--gold); font-weight: 700; font-family: 'Lato'; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 8px;}
.gold-link:hover { color: var(--navy); gap: 12px; }

/* Parallax */
.parallax-section { background: url('../images/hero.png') center/cover fixed; padding: 150px 0; position: relative; text-align: center;}
.parallax-overlay { position: absolute; inset: 0; background: rgba(10,11,16,0.85); }
.parallax-content { position: relative; z-index: 2; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 40px; }
.stat-box { color: #fff; }
.stat-number { font-size: 5rem; font-family: 'Playfair Display'; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 15px;}
.stat-label { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600;}

/* Cases */
.case-grid { display: grid; gap: 60px; margin-top: 60px; }
.case-item { display: flex; align-items: center; gap: 60px; }
.case-item.reverse { flex-direction: row-reverse; }
.case-img { flex: 1; height: 500px; background-size: cover; background-position: center; border-radius: 4px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); position: relative; overflow: hidden; border: 1px solid rgba(197,160,89,0.3);}
.case-img::after { content:''; position: absolute; inset:0; background: var(--navy); opacity:0.2; transition: 0.5s; }
.case-item:hover .case-img::after { opacity: 0; }
.case-info { flex: 1; padding: 40px; }
.case-tag { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; display: block;}
.case-info h3 { font-size: 2.5rem; margin-bottom: 25px; line-height: 1.2; }
.case-info p { color: #A0AAB2; font-size: 1.1rem; }

/* Contact */
.contact-wrapper { display: flex; gap: 60px; background: #fff; padding: 60px; border-radius: 4px; box-shadow: 0 40px 80px rgba(10,17,40,0.06); border: 1px solid var(--cream-dark);}
.contact-text { flex: 1; }
.contact-text h2 { font-size: 2.5rem; color: var(--navy); }
.contact-details p { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; color: var(--text-primary); font-weight: 600;}
.contact-details i { color: var(--gold); font-size: 20px;}
.contact-form-box { flex: 1; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;}
.elegant-input { wwidth: 100%; border: none; border-bottom: 1px solid #CCC; padding: 15px 0; font-family: 'Lato'; font-size: 16px; background: transparent; transition: 0.3s; color: var(--navy); outline: none; width:100%;}
.elegant-input:focus { border-color: var(--gold); }

/* Footer */
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: var(--text-muted); font-size: 14px; transition: 0.3s;}
.footer-links a:hover { color: var(--gold); }
.footer-bottom { padding-top: 30px; text-align: center; color: var(--text-muted); font-size: 13px;}

/* Modal */
.modal { position: fixed; inset: 0; background: rgba(10,17,40,0.95); backdrop-filter: blur(8px); z-index: 2000; display: none; align-items: center; justify-content: center; opacity: 0; transition: 0.4s;}
.modal.open { display: flex; opacity: 1; }
.modal-box { background: var(--cream); width: 100%; max-width: 900px; padding: 50px; position: relative; border-radius: 4px; transform: scale(0.95); transition: 0.4s;}
.modal.open .modal-box { transform: scale(1); }
.close-modal { position: absolute; right: 25px; top: 20px; font-size: 40px; color: var(--navy); cursor: pointer; font-family: 'Lato'; font-weight: 300; transition: 0.3s;}
.close-modal:hover { color: var(--gold); }

@media(max-width: 992px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .hero-bg { width: 100%; opacity: 0.1; }
    .hero-bg::after { display: none; }
    .hero h1 { font-size: 3.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .case-item, .case-item.reverse { flex-direction: column; }
    .contact-wrapper { flex-direction: column; padding: 40px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* Premium Footer Supplements */
.footer-grid-premium { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.border-bottom-gold { border-bottom: 1px solid rgba(212, 175, 55, 0.2); }
.social-icons { display: flex; gap: 15px;}
.social-icons a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); color: var(--gold); transition: 0.3s; font-size:16px;}
.social-icons a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold);}
.newsletter-col p { line-height: 1.6; }
.pt-60 { padding-top: 60px; }
.pb-60 { padding-bottom: 60px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px;}
@media(max-width: 992px) {
    .footer-grid-premium { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

