/* ===== DOXA Land Management - Brand Stylesheet ===== */
/* Brand fonts */
@font-face { font-family:'Gotham'; src:url('assets/fonts/Gotham-Light.otf') format('opentype'); font-weight:300; }
@font-face { font-family:'Gotham'; src:url('assets/fonts/Gotham-Book.otf') format('opentype'); font-weight:400; }
@font-face { font-family:'Gotham'; src:url('assets/fonts/Gotham-Medium.otf') format('opentype'); font-weight:500; }
@font-face { font-family:'Gotham'; src:url('assets/fonts/Gotham-Bold.otf') format('opentype'); font-weight:700; }
@font-face { font-family:'Gotham'; src:url('assets/fonts/Gotham-Black.otf') format('opentype'); font-weight:900; }

:root {
    --burgundy: #500000;
    --burgundy-light: #700000;
    --burgundy-dark: #300000;
    --burgundy-glow: #8b0000;
    --cream: #f5efe6;
    --cream-dark: #d4c9b8;
    --navy: #ffffff;
    --navy-light: #f8f9fa;
    --navy-mid: #e9ecef;
    --charcoal: #f1f3f5;
    --slate: #dee2e6;
    --text: #343a40;
    --text-muted: #6c757d;
    --white: #212529;
    --glass: rgba(0,0,0,0.03);
    --glass-border: rgba(0,0,0,0.08);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:80px; }
body { font-family:'Gotham',sans-serif; background:var(--navy); color:var(--text); line-height:1.7; overflow-x:hidden; -webkit-font-smoothing:antialiased; }
img[src*="logo"], img[src*="icon"] { image-rendering:-webkit-optimize-contrast; image-rendering:crisp-edges; transform:translateZ(0); backface-visibility:hidden; }

/* === PRELOADER === */
#preloader { position:fixed; inset:0; z-index:10000; background:linear-gradient(135deg,var(--navy) 0%,#f8f9fa 50%,var(--navy) 100%); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:2rem; transition:opacity .6s,visibility .6s; }
#preloader.hidden { opacity:0; visibility:hidden; pointer-events:none; }
.loader-logo { height:80px; width:auto; opacity:0; animation:loaderFadeIn 1s .3s ease forwards; filter:drop-shadow(0 0 40px rgba(255,255,255,0.08)); }
@keyframes loaderFadeIn { to{opacity:1} }
.loader-bar { width:200px; height:2px; background:var(--slate); border-radius:2px; overflow:hidden; }
.loader-fill { width:0; height:100%; background:linear-gradient(90deg,rgba(255,255,255,0.3),rgba(255,255,255,0.7)); animation:loadFill 1.8s ease-in-out forwards; }
@keyframes loadFill { to{width:100%} }

/* === UTILITY === */
.container { max-width:1280px; margin:0 auto; padding:0 2rem; }
.text-gradient { background:linear-gradient(135deg,var(--burgundy-light),var(--burgundy-glow),var(--cream-dark)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.text-gradient-white { background:linear-gradient(135deg,rgba(255,255,255,1) 0%,rgba(255,255,255,0.45) 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.section { padding:8rem 0; position:relative; overflow:hidden; }
.section-bg-texture { position:absolute; inset:0; background-image:url('assets/images/topo-texture.png'); background-size:cover; opacity:0.12; pointer-events:none; }

/* === SECTION HEADERS === */
.section-header { text-align:center; margin-bottom:4rem; }
.section-tag { display:inline-flex; align-items:center; gap:.5rem; font-family:'Gotham',sans-serif; font-size:.8rem; font-weight:500; color:var(--burgundy-light); text-transform:uppercase; letter-spacing:3px; margin-bottom:1rem; }
.section-tag::before,.section-tag::after { content:''; width:30px; height:1px; background:var(--burgundy-light); opacity:.5; }
.section-header h2 { font-family:'Gotham',sans-serif; font-size:clamp(2rem,4vw,3.2rem); font-weight:600; color:var(--white); line-height:1.2; margin-bottom:1rem; }
.section-desc { color:var(--text-muted); font-size:1.05rem; max-width:600px; margin:0 auto; }

/* === BUTTONS === */
.btn { display:inline-flex; align-items:center; gap:.6rem; padding:.9rem 2rem; border-radius:50px; font-family:'Gotham',sans-serif; font-size:.9rem; font-weight:500; text-decoration:none; cursor:pointer; border:none; transition:var(--transition); position:relative; overflow:hidden; letter-spacing:.3px; }
.btn-primary { background:linear-gradient(135deg,var(--burgundy),var(--burgundy-dark)); color:#ffffff; }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(80,0,0,0.45); background:linear-gradient(135deg,var(--burgundy-light),var(--burgundy)); }
.btn-outline { background:transparent; border:1.5px solid rgba(0,0,0,0.25); color:var(--white); }
.btn-outline:hover { border-color:var(--burgundy-light); color:var(--burgundy-light); }
.btn-light { border-color:rgba(0,0,0,0.4); color:var(--white); }
.btn-light:hover { background:var(--burgundy); border-color:var(--burgundy); color:#ffffff; }
.btn-full { width:100%; justify-content:center; }

/* === NAVBAR === */
.navbar { position:fixed; top:0; left:0; right:0; z-index:1000; padding:1.2rem 0; transition:var(--transition); }
.navbar.scrolled { background:rgba(255,255,255,0.95); backdrop-filter:blur(20px); border-bottom:1px solid var(--glass-border); padding:.7rem 0; }
.nav-container { max-width:1280px; margin:0 auto; padding:0 2rem; display:grid; grid-template-columns:1fr auto 1fr; align-items:center; }
.nav-logo { text-decoration:none; display:flex; align-items:center; gap:.6rem; overflow:hidden; max-width:0; opacity:0; transition:max-width .5s cubic-bezier(0.25,0.46,0.45,0.94), opacity .4s ease; justify-self:start; }
.navbar.scrolled .nav-logo { max-width:250px; opacity:1; }
.nav-logo-full { height:40px; width:auto; flex-shrink:0; }
.nav-links { display:flex; list-style:none; gap:2rem; }
.nav-link { text-decoration:none; color:var(--text-muted); font-family:'Gotham',sans-serif; font-size:.85rem; font-weight:400; letter-spacing:.5px; transition:var(--transition); position:relative; }
.nav-link::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:1.5px; background:var(--burgundy-light); transition:var(--transition); }
.nav-link:hover,.nav-link.active { color:var(--white); }
.nav-link:hover::after,.nav-link.active::after { width:100%; }
.nav-cta { padding:.6rem 1.5rem; border:1.5px solid rgba(255,255,255,0.35); border-radius:50px; color:var(--white); text-decoration:none; font-family:'Gotham',sans-serif; font-size:.82rem; font-weight:500; transition:var(--transition); letter-spacing:.3px; justify-self:end; }
.nav-cta:hover { background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.6); color:var(--white); }
.hamburger { display:none; background:none; border:none; cursor:pointer; padding:.5rem; }
.hamburger span { display:block; width:24px; height:2px; background:var(--white); margin:5px 0; transition:var(--transition); }

/* === HERO === */
.hero { min-height:100vh; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.hero-bg-wrapper { position:absolute; inset:0; }
.hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; transform:scale(1.1); animation:heroZoom 20s ease-in-out infinite alternate; }
@keyframes heroZoom { from{transform:scale(1.1)} to{transform:scale(1)} }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(180deg,rgba(255,255,255,.75) 0%,rgba(255,255,255,.35) 40%,rgba(255,255,255,.6) 70%,rgba(255,255,255,.92) 100%); }
.hero-particles { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.particle { position:absolute; width:2px; height:2px; background:rgba(255,255,255,0.6); border-radius:50%; opacity:0; animation:float 8s ease-in-out infinite; }
@keyframes float { 0%{opacity:0;transform:translateY(100vh)} 10%{opacity:.4} 90%{opacity:.4} 100%{opacity:0;transform:translateY(-10vh)} }
.hero-content { position:relative; z-index:2; text-align:center; max-width:900px; padding:5rem 2rem 0; display:flex; flex-direction:column; align-items:center; }
.hero-logo { height:clamp(120px,18vw,180px); width:auto; margin-bottom:1.5rem; display:block; filter:drop-shadow(0 4px 30px rgba(255,255,255,0.06)); }
.hero-badge { display:inline-flex; align-items:center; gap:.6rem; padding:.5rem 1.2rem; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.15); border-radius:50px; font-family:'Gotham',sans-serif; font-size:.75rem; color:var(--white); letter-spacing:2px; text-transform:uppercase; margin-bottom:2rem; backdrop-filter:blur(12px); }
.badge-dot { width:6px; height:6px; background:var(--white); border-radius:50%; animation:pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }
.hero h1 { font-family:'Gotham',sans-serif; font-size:clamp(2.5rem,6vw,4.5rem); font-weight:700; color:var(--white); line-height:1.15; margin-bottom:1.5rem; text-shadow:0 2px 40px rgba(0,0,0,0.3); }
.hero-subtitle { font-size:clamp(.95rem,1.6vw,1.15rem); color:rgba(255,255,255,0.65); max-width:680px; margin:0 auto 2.5rem; line-height:1.8; }
.hero-actions { display:flex; gap:1rem; justify-content:center; margin-bottom:4rem; flex-wrap:wrap; }
.hero-stats { display:flex; align-items:center; justify-content:center; gap:2.5rem; flex-wrap:wrap; padding:2rem 3rem; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1); border-radius:var(--radius-lg); backdrop-filter:blur(20px); }
.stat { text-align:center; }
.stat-number,.stat-prefix,.stat-suffix { font-family:'Gotham',sans-serif; font-size:clamp(1.8rem,3vw,2.5rem); font-weight:700; color:var(--white); }
.stat-label { display:block; font-family:'Gotham',sans-serif; font-size:.75rem; color:rgba(255,255,255,0.5); letter-spacing:1.5px; text-transform:uppercase; margin-top:.3rem; }
.stat-divider { width:1px; height:40px; background:rgba(255,255,255,0.15); }
.scroll-indicator { position:absolute; bottom:2rem; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:.5rem; }
.scroll-indicator span { font-family:'Gotham',sans-serif; font-size:.65rem; color:rgba(255,255,255,0.4); letter-spacing:2px; text-transform:uppercase; }
.scroll-line { width:1px; height:40px; background:linear-gradient(180deg,rgba(255,255,255,0.4),transparent); animation:scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:1;height:40px} 50%{opacity:.3;height:25px} }

/* === ABOUT === */
.about { background:var(--navy-light); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.about-lead { font-size:1.15rem; color:var(--text); font-weight:400; margin-bottom:1.5rem; line-height:1.9; border-left:3px solid var(--burgundy); padding-left:1.5rem; }
.about-content p { color:var(--text-muted); margin-bottom:1.2rem; }
.about-content .btn { margin-top:1rem; }
.about-image { position:relative; }
.about-img-wrapper { border-radius:var(--radius-lg); overflow:hidden; position:relative; box-shadow:0 25px 60px rgba(0,0,0,0.4); }
.about-img-wrapper img { width:100%; height:450px; object-fit:cover; display:block; }
.about-img-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(80,0,0,0.2),transparent); }
.about-floating-card { position:absolute; bottom:-1.5rem; left:-1.5rem; display:flex; align-items:center; gap:1rem; padding:1rem 1.5rem; background:rgba(80,0,0,0.85); border:1px solid rgba(112,0,0,0.4); border-radius:var(--radius); backdrop-filter:blur(20px); }
.floating-icon { color:var(--cream); }
.floating-text { font-family:'Gotham',sans-serif; font-size:.82rem; color:var(--cream); letter-spacing:.3px; }

/* === SERVICES === */
.services { background:var(--navy); }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.service-card { padding:2.5rem 2rem; background:var(--glass); border:1px solid var(--glass-border); border-radius:var(--radius-lg); transition:var(--transition); position:relative; overflow:hidden; cursor:default; }
.service-card:hover { background:rgba(80,0,0,0.1); border-color:rgba(80,0,0,0.35); transform:translateY(-6px); box-shadow:0 20px 50px rgba(0,0,0,0.3); }
.service-icon { width:56px; height:56px; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,rgba(80,0,0,0.25),rgba(80,0,0,0.08)); border-radius:14px; margin-bottom:1.5rem; }
.service-icon svg { width:28px; height:28px; color:var(--burgundy-light); }
.service-card h3 { font-family:'Gotham',sans-serif; font-size:1.1rem; font-weight:700; color:var(--white); margin-bottom:.8rem; letter-spacing:.2px; }
.service-card p { font-size:.9rem; color:var(--text-muted); line-height:1.7; }
.service-hover-line { position:absolute; bottom:0; left:0; width:0; height:2px; background:linear-gradient(90deg,var(--burgundy),var(--burgundy-light)); transition:var(--transition); }
.service-card:hover .service-hover-line { width:100%; }

/* === ACHIEVEMENTS === */
.achievements { position:relative; }
.achievements-bg { position:absolute; inset:0; background-size:cover; background-position:center; background-attachment:fixed; }
.achievements-overlay { position:absolute; inset:0; background:linear-gradient(180deg,var(--navy) 0%,rgba(255,255,255,.5) 50%,var(--navy) 100%); }
.achievements .container { position:relative; z-index:2; }
.achievements-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:1.5rem; }
.achievement-card { padding:2.5rem 2rem; background:rgba(255,255,255,0.65); border:1px solid var(--glass-border); border-radius:var(--radius-lg); backdrop-filter:blur(10px); transition:var(--transition); }
.achievement-card:hover { border-color:rgba(80,0,0,0.4); transform:translateY(-4px); }
.achievement-number { font-family:'Gotham',sans-serif; font-size:2.5rem; font-weight:700; color:var(--burgundy-light); opacity:.35; margin-bottom:.5rem; }
.achievement-card h3 { font-family:'Gotham',sans-serif; font-size:1.05rem; font-weight:700; color:var(--white); margin-bottom:.8rem; }
.achievement-card p { font-size:.88rem; color:var(--text-muted); line-height:1.7; }

/* === TESTIMONIALS === */
.testimonials { background:var(--navy-light); }
.testimonial-carousel { position:relative; overflow:hidden; }
.testimonial-track { display:flex; transition:transform .6s cubic-bezier(0.25,0.46,0.45,0.94); }
.testimonial-card { min-width:100%; padding:3rem; background:var(--glass); border:1px solid var(--glass-border); border-radius:var(--radius-lg); backdrop-filter:blur(10px); }
.testimonial-quote { font-family:'Gotham',sans-serif; font-size:5rem; color:var(--burgundy-light); opacity:.3; line-height:.8; margin-bottom:1rem; }
.testimonial-card>p { font-size:1.05rem; color:var(--text); line-height:1.9; font-style:italic; margin-bottom:2rem; max-width:800px; }
.testimonial-author { display:flex; align-items:center; gap:1rem; }
.author-info { display:flex; flex-direction:column; }
.author-info strong { font-family:'Gotham',sans-serif; font-size:.95rem; color:var(--white); }
.author-info span { font-size:.82rem; color:var(--burgundy-light); }
.carousel-controls { display:flex; align-items:center; justify-content:center; gap:1.5rem; margin-top:2rem; }
.carousel-btn { width:48px; height:48px; border-radius:50%; border:1px solid var(--glass-border); background:var(--glass); color:var(--text-muted); cursor:pointer; display:flex; align-items:center; justify-content:center; transition:var(--transition); }
.carousel-btn:hover { border-color:var(--burgundy-light); color:var(--burgundy-light); }
.carousel-dots { display:flex; gap:.5rem; }
.carousel-dot { width:8px; height:8px; border-radius:50%; background:var(--slate); cursor:pointer; transition:var(--transition); border:none; }
.carousel-dot.active { background:var(--burgundy-light); width:24px; border-radius:4px; }

/* === CONTACT === */
.contact { position:relative; }
.contact-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.contact-overlay { position:absolute; inset:0; background:linear-gradient(180deg,var(--navy),rgba(255,255,255,.9),var(--navy)); }
.contact .container { position:relative; z-index:2; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; }
.contact-info .section-tag { margin-bottom:.5rem; }
.contact-info h2 { font-family:'Gotham',sans-serif; font-size:clamp(1.8rem,3vw,2.5rem); font-weight:600; color:var(--white); margin-bottom:1rem; line-height:1.3; }
.contact-info>p { color:var(--text-muted); margin-bottom:2rem; line-height:1.8; }
.contact-methods { display:flex; flex-direction:column; gap:1.2rem; }
.contact-method { display:flex; align-items:center; gap:1rem; padding:1rem 1.5rem; background:var(--glass); border:1px solid var(--glass-border); border-radius:var(--radius); transition:var(--transition); text-decoration:none; }
.contact-method:hover { border-color:rgba(80,0,0,0.4); }
.method-icon { width:48px; height:48px; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,rgba(80,0,0,0.25),rgba(80,0,0,0.08)); border-radius:12px; color:var(--burgundy-light); flex-shrink:0; }
.contact-method strong { display:block; color:var(--white); font-family:'Gotham',sans-serif; font-size:.92rem; }
.contact-method span { color:var(--text-muted); font-size:.82rem; }
.contact-form-wrapper { padding:2.5rem; background:rgba(255,255,255,0.7); border:1px solid var(--glass-border); border-radius:var(--radius-lg); backdrop-filter:blur(20px); }
.contact-form h3 { font-family:'Gotham',sans-serif; font-size:1.2rem; font-weight:700; color:var(--white); margin-bottom:1.5rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { margin-bottom:1rem; }
.form-group input,.form-group select,.form-group textarea { width:100%; padding:.9rem 1.2rem; background:rgba(255,255,255,0.05); border:1px solid var(--glass-border); border-radius:var(--radius); color:var(--text); font-family:'Gotham',sans-serif; font-size:.88rem; transition:var(--transition); outline:none; }
.form-group input::placeholder,.form-group textarea::placeholder { color:var(--text-muted); }
.form-group select { cursor:pointer; appearance:none; color:var(--text-muted); }
.form-group select option { background:var(--navy); color:var(--text); }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color:var(--burgundy-light); background:rgba(80,0,0,0.08); }
.form-group textarea { resize:vertical; min-height:100px; }

/* === CAREERS CTA === */
.careers-cta { padding:4rem 0; background:var(--navy-light); }
.careers-banner { display:flex; align-items:center; justify-content:space-between; gap:2rem; padding:3rem; background:linear-gradient(135deg,rgba(80,0,0,0.15),rgba(80,0,0,0.03)); border:1px solid rgba(80,0,0,0.3); border-radius:var(--radius-lg); }
.careers-content h3 { font-family:'Gotham',sans-serif; font-size:1.5rem; color:var(--white); margin-bottom:.5rem; }
.careers-content p { color:var(--text-muted); }

/* === FOOTER === */
.footer { padding:4rem 0 2rem; background:var(--charcoal); border-top:1px solid var(--glass-border); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; margin-bottom:3rem; }
.footer-logo { margin-bottom:1.2rem; }
.footer-logo-full { height:50px; width:auto; opacity:0.9; }
.footer-brand p { color:var(--text-muted); font-size:.88rem; line-height:1.7; max-width:300px; }
.footer-col h4 { font-family:'Gotham',sans-serif; font-size:.85rem; font-weight:700; color:var(--white); margin-bottom:1rem; letter-spacing:.5px; text-transform:uppercase; }
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:.6rem; }
.footer-col a { color:var(--text-muted); text-decoration:none; font-size:.85rem; transition:var(--transition); }
.footer-col a:hover { color:var(--burgundy-light); }
.footer-bottom { padding-top:2rem; border-top:1px solid var(--glass-border); text-align:center; }
.footer-bottom p { color:var(--text-muted); font-size:.8rem; letter-spacing:.3px; }

/* === ANIMATIONS === */
[data-animate] { opacity:0; transform:translateY(30px); transition:opacity .8s,transform .8s; }
[data-animate="fade-down"] { transform:translateY(-30px); }
[data-animate="fade-right"] { transform:translateX(-40px); }
[data-animate="fade-left"] { transform:translateX(40px); }
[data-animate].visible { opacity:1; transform:translate(0); }

/* === RESPONSIVE === */
@media(max-width:1024px) { .services-grid{grid-template-columns:repeat(2,1fr)} .about-grid,.contact-grid{grid-template-columns:1fr} .footer-grid{grid-template-columns:1fr 1fr} }
@media(max-width:768px) { .nav-links,.nav-cta{display:none} .nav-links.active{display:flex;flex-direction:column;position:absolute;top:100%;left:0;right:0;background:rgba(12,18,34,.97);padding:2rem;gap:1.5rem;backdrop-filter:blur(20px);border-bottom:1px solid var(--glass-border)} .hamburger{display:block} .hamburger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)} .hamburger.active span:nth-child(2){opacity:0} .hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)} .services-grid{grid-template-columns:1fr} .hero-stats{flex-direction:column;gap:1.5rem;padding:1.5rem} .stat-divider{width:40px;height:1px} .form-row{grid-template-columns:1fr} .careers-banner{flex-direction:column;text-align:center} .footer-grid{grid-template-columns:1fr} .section{padding:5rem 0} .hero-logo{height:65px} }

/* === RESUME MODAL === */
.modal-overlay { position:fixed; inset:0; z-index:9000; background:rgba(0,0,0,0.5); backdrop-filter:blur(8px); display:flex; align-items:center; justify-content:center; padding:1.5rem; opacity:0; visibility:hidden; transition:opacity .35s ease, visibility .35s ease; }
.modal-overlay.active { opacity:1; visibility:visible; }
.modal-card { position:relative; width:100%; max-width:540px; max-height:90vh; overflow-y:auto; background:#ffffff; border:1px solid var(--glass-border); border-radius:var(--radius-lg); padding:2.5rem; box-shadow:0 40px 80px rgba(0,0,0,0.2); transform:translateY(20px) scale(0.97); transition:transform .35s cubic-bezier(0.25,0.46,0.45,0.94); }
.modal-overlay.active .modal-card { transform:translateY(0) scale(1); }
.modal-close { position:absolute; top:1.2rem; right:1.2rem; background:var(--navy-light); border:1px solid var(--glass-border); border-radius:50%; width:36px; height:36px; display:flex; align-items:center; justify-content:center; cursor:pointer; color:var(--text-muted); transition:var(--transition); }
.modal-close:hover { background:rgba(80,0,0,0.08); border-color:var(--burgundy-light); color:var(--burgundy-light); }
.modal-header { display:flex; align-items:center; gap:1rem; margin-bottom:2rem; }
.modal-icon { width:52px; height:52px; flex-shrink:0; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,rgba(80,0,0,0.12),rgba(80,0,0,0.04)); border:1px solid rgba(80,0,0,0.2); border-radius:14px; color:var(--burgundy-light); }
.modal-header h3 { font-family:'Gotham',sans-serif; font-size:1.3rem; font-weight:700; color:var(--white); margin-bottom:.2rem; }
.modal-header p { color:var(--text-muted); font-size:.85rem; }
.modal-form .form-group { margin-bottom:.9rem; }
.file-upload-label { display:block; cursor:pointer; }
.file-upload-label input[type="file"] { position:absolute; width:1px; height:1px; opacity:0; pointer-events:none; }
.file-upload-ui { display:flex; align-items:center; gap:.8rem; padding:.9rem 1.2rem; background:var(--navy-light); border:1.5px dashed var(--glass-border); border-radius:var(--radius); color:var(--text-muted); font-size:.88rem; transition:var(--transition); }
.file-upload-ui:hover { border-color:var(--burgundy-light); color:var(--burgundy-light); background:rgba(80,0,0,0.04); }
.file-upload-ui.has-file { border-color:var(--burgundy-light); border-style:solid; color:var(--burgundy-light); background:rgba(80,0,0,0.06); }
body.modal-open { overflow:hidden; }

