/* ============================================
   THE LEGAL TEAM - PREMIUM CSS
   Luxury Legal-Tech Website Stylesheet
   ============================================ */

/* CSS Variables - Brand Colors */
:root {
    --red-dark: #8B0000;
    --red-medium: #B30000;
    --red-bright: #D61A1A;
    --red-light: #FF3B30;
    --black-pure: #000000;
    --black-dark: #111111;
    --black-medium: #222222;
    --gold-dark: #B8860B;
    --gold-medium: #D4AF37;
    --gold-bright: #E6C200;
    --gold-light: #FFD700;
    --white-pure: #FFFFFF;
    --white-off: #F8F8F8;
    --gradient-gold: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-medium) 50%, var(--gold-bright) 100%);
    --gradient-red: linear-gradient(135deg, var(--red-dark) 0%, var(--red-medium) 50%, var(--red-bright) 100%);
    --gradient-dark: linear-gradient(180deg, var(--black-dark) 0%, var(--black-pure) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(139,0,0,0.95) 0%, rgba(17,17,17,0.98) 50%, rgba(0,0,0,1) 100%);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --font-heading: 'Playfair Display', 'Cinzel', serif;
    --font-body: 'Poppins', 'Inter', sans-serif;
    --font-button: 'Montserrat', sans-serif;
    --section-padding: 100px 0;
    --container-width: 1320px;
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-red: 0 4px 20px rgba(214, 26, 26, 0.3);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.4);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--black-dark); color: var(--white-pure); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }

/* TOP BAR */
.top-bar { background: var(--black-pure); border-bottom: 1px solid rgba(212, 175, 55, 0.15); padding: 8px 0; position: relative; z-index: 1001; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar-left { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.top-bar-left a { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--white-off); transition: var(--transition-fast); }
.top-bar-left a:hover { color: var(--gold-medium); }
.top-bar-left i { color: var(--gold-medium); font-size: 14px; }
.top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-right .social-icons { display: flex; gap: 12px; }
.top-bar-right .social-icons a { width: 30px; height: 30px; border-radius: 50%; background: rgba(212, 175, 55, 0.1); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--gold-medium); transition: var(--transition-fast); border: 1px solid rgba(212, 175, 55, 0.2); }
.top-bar-right .social-icons a:hover { background: var(--gold-medium); color: var(--black-pure); transform: translateY(-2px); }
.top-bar-btns { display: flex; gap: 10px; }
.top-bar-btns a { padding: 5px 15px; font-size: 12px; border-radius: 4px; font-family: var(--font-button); font-weight: 500; letter-spacing: 0.5px; }
.btn-login { background: transparent; border: 1px solid var(--gold-medium); color: var(--gold-medium); }
.btn-login:hover { background: var(--gold-medium); color: var(--black-pure); }
.btn-admin { background: var(--red-medium); color: var(--white-pure); border: 1px solid var(--red-medium); }
.btn-admin:hover { background: var(--red-bright); }

/* HEADER */
.header { position: sticky; top: 0; z-index: 1000; background: rgba(17, 17, 17, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(212, 175, 55, 0.15); transition: var(--transition-fast); }
.header.scrolled { background: rgba(0, 0, 0, 0.98); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); }
.header .container { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 55px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .brand-name { font-family: var(--font-heading); font-size: 22px; font-weight: 700; letter-spacing: 2px; color: var(--white-pure); line-height: 1.2; }
.logo-text .brand-name span { color: var(--red-bright); }
.logo-text .brand-tagline { font-size: 10px; letter-spacing: 3px; color: var(--gold-medium); text-transform: uppercase; font-family: var(--font-button); }

/* Main Navigation */
.main-nav { display: flex; align-items: center; gap: 5px; }
.main-nav > ul { display: flex; align-items: center; gap: 5px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a { display: flex; align-items: center; gap: 5px; padding: 12px 18px; font-family: var(--font-button); font-size: 13px; font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase; color: var(--white-off); border-radius: 6px; transition: var(--transition-fast); }
.main-nav > ul > li > a:hover, .main-nav > ul > li > a.active { color: var(--gold-medium); background: rgba(212, 175, 55, 0.08); }
.main-nav > ul > li > a i { font-size: 10px; transition: var(--transition-fast); }
.main-nav > ul > li:hover > a i { transform: rotate(180deg); }

/* Mega Menu */
.mega-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(20px); width: 900px; background: rgba(17, 17, 17, 0.98); backdrop-filter: blur(20px); border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 12px; padding: 30px; opacity: 0; visibility: hidden; transition: all 0.4s ease; box-shadow: var(--shadow-dark); z-index: 1001; }
.main-nav > ul > li:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.mega-menu-column h4 { font-family: var(--font-heading); font-size: 15px; color: var(--gold-medium); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid rgba(212, 175, 55, 0.2); display: flex; align-items: center; gap: 8px; }
.mega-menu-column h4 i { font-size: 14px; }
.mega-menu-column ul li { margin-bottom: 8px; }
.mega-menu-column ul li a { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--white-off); padding: 6px 10px; border-radius: 6px; transition: var(--transition-fast); }
.mega-menu-column ul li a:hover { background: rgba(212, 175, 55, 0.1); color: var(--gold-medium); padding-left: 15px; }
.mega-menu-column ul li a i { font-size: 10px; color: var(--red-bright); }

/* Buttons */
.header-cta { display: flex; align-items: center; gap: 15px; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; background: var(--gradient-gold); color: var(--black-pure); font-family: var(--font-button); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border-radius: 8px; border: none; cursor: pointer; transition: var(--transition-fast); position: relative; overflow: hidden; }
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: 0.5s; }
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; background: transparent; color: var(--gold-medium); font-family: var(--font-button); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border-radius: 8px; border: 2px solid var(--gold-medium); cursor: pointer; transition: var(--transition-fast); }
.btn-secondary:hover { background: var(--gold-medium); color: var(--black-pure); transform: translateY(-3px); }

/* Mobile Toggle */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; }
.mobile-toggle span { display: block; width: 28px; height: 2px; background: var(--gold-medium); transition: var(--transition-fast); border-radius: 2px; }

/* HERO SECTION */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--gradient-hero); }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-bg::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('../images/hero-bg.jpg') center/cover no-repeat; opacity: 0.15; }
.hero-bg::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.8) 100%); }
.hero-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; overflow: hidden; }
.particle { position: absolute; width: 4px; height: 4px; background: var(--gold-medium); border-radius: 50%; opacity: 0.3; animation: float 15s infinite; }
@keyframes float { 0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; } 25% { transform: translateY(-100px) translateX(50px); opacity: 0.6; } 50% { transform: translateY(-50px) translateX(-30px); opacity: 0.4; } 75% { transform: translateY(-150px) translateX(20px); opacity: 0.5; } }
.hero .container { position: relative; z-index: 3; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding-top: 120px; padding-bottom: 120px; }
.hero-content { animation: fadeInLeft 1s ease; }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 20px; background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.3); border-radius: 50px; font-size: 13px; color: var(--gold-medium); margin-bottom: 25px; font-family: var(--font-button); letter-spacing: 1px; }
.hero-badge i { color: var(--red-bright); }
.hero-title { font-family: var(--font-heading); font-size: 56px; font-weight: 700; line-height: 1.15; margin-bottom: 25px; color: var(--white-pure); }
.hero-title .highlight { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-title .highlight-red { color: var(--red-bright); }
.hero-subtitle { font-size: 18px; color: rgba(255, 255, 255, 0.7); margin-bottom: 35px; line-height: 1.8; max-width: 550px; }
.hero-features { display: flex; gap: 30px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-feature { display: flex; align-items: center; gap: 10px; }
.hero-feature i { width: 40px; height: 40px; border-radius: 50%; background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.3); display: flex; align-items: center; justify-content: center; color: var(--gold-medium); font-size: 16px; }
.hero-feature span { font-size: 14px; color: var(--white-off); font-weight: 500; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }

/* Hero Form */
.hero-form-wrapper { animation: fadeInRight 1s ease 0.3s both; }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
.hero-form { background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 20px; padding: 40px; box-shadow: var(--glass-shadow); }
.hero-form-header { text-align: center; margin-bottom: 30px; }
.hero-form-header h3 { font-family: var(--font-heading); font-size: 24px; color: var(--gold-medium); margin-bottom: 8px; }
.hero-form-header p { font-size: 14px; color: rgba(255, 255, 255, 0.6); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; color: var(--gold-medium); margin-bottom: 8px; font-family: var(--font-button); letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 18px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 10px; color: var(--white-pure); font-family: var(--font-body); font-size: 14px; transition: var(--transition-fast); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold-medium); background: rgba(255, 255, 255, 0.08); box-shadow: 0 0 15px rgba(212, 175, 55, 0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
.form-group select option { background: var(--black-dark); color: var(--white-pure); }
.hero-form .btn-primary { width: 100%; justify-content: center; padding: 16px; font-size: 15px; }
.form-trust { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 20px; font-size: 13px; color: rgba(255, 255, 255, 0.6); }
.form-trust i { color: var(--gold-medium); }

/* TRUST SECTION */
.trust-section { background: var(--black-pure); padding: 50px 0; border-top: 1px solid rgba(212, 175, 55, 0.1); border-bottom: 1px solid rgba(212, 175, 55, 0.1); position: relative; z-index: 10; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.trust-item { text-align: center; padding: 20px; position: relative; }
.trust-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 60%; background: rgba(212, 175, 55, 0.2); }
.trust-icon { width: 60px; height: 60px; margin: 0 auto 15px; border-radius: 50%; background: rgba(212, 175, 55, 0.1); border: 2px solid rgba(212, 175, 55, 0.3); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--gold-medium); }
.trust-number { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--gold-medium); margin-bottom: 5px; }
.trust-number span { color: var(--red-bright); }
.trust-label { font-size: 14px; color: rgba(255, 255, 255, 0.6); font-family: var(--font-button); letter-spacing: 1px; text-transform: uppercase; }

/* SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-label { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-button); font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--red-bright); margin-bottom: 15px; }
.section-label::before, .section-label::after { content: ''; width: 30px; height: 1px; background: var(--red-bright); }
.section-title { font-family: var(--font-heading); font-size: 42px; font-weight: 700; color: var(--white-pure); margin-bottom: 20px; line-height: 1.3; }
.section-title .highlight { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-subtitle { font-size: 16px; color: rgba(255, 255, 255, 0.6); line-height: 1.8; }

/* SERVICES */
.services-section { padding: var(--section-padding); background: var(--black-dark); position: relative; }
.services-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at top right, rgba(139, 0, 0, 0.08) 0%, transparent 50%), radial-gradient(ellipse at bottom left, rgba(184, 134, 11, 0.05) 0%, transparent 50%); pointer-events: none; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; position: relative; z-index: 1; }
.service-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(212, 175, 55, 0.1); border-radius: 16px; padding: 40px 30px; transition: var(--transition-medium); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gradient-gold); transform: scaleX(0); transform-origin: left; transition: var(--transition-medium); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-10px); border-color: rgba(212, 175, 55, 0.3); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--shadow-gold); background: rgba(255, 255, 255, 0.05); }
.service-icon { width: 70px; height: 70px; border-radius: 16px; background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.2); display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--gold-medium); margin-bottom: 25px; transition: var(--transition-fast); }
.service-card:hover .service-icon { background: var(--gradient-gold); color: var(--black-pure); transform: rotateY(360deg); }
.service-card h3 { font-family: var(--font-heading); font-size: 22px; color: var(--white-pure); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: rgba(255, 255, 255, 0.6); line-height: 1.7; margin-bottom: 20px; }
.service-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-button); font-size: 13px; font-weight: 600; color: var(--gold-medium); letter-spacing: 1px; text-transform: uppercase; transition: var(--transition-fast); }
.service-link:hover { gap: 15px; color: var(--gold-bright); }
.service-link i { font-size: 12px; }

/* WHY CHOOSE US */
.why-us-section { padding: var(--section-padding); background: var(--black-pure); position: relative; overflow: hidden; }
.why-us-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(139, 0, 0, 0.1) 0%, transparent 70%); pointer-events: none; }
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.why-us-image { position: relative; }
.why-us-image img { border-radius: 20px; box-shadow: var(--shadow-dark); }
.why-us-image::before { content: ''; position: absolute; top: -20px; left: -20px; width: 100%; height: 100%; border: 2px solid var(--gold-medium); border-radius: 20px; z-index: -1; opacity: 0.3; }
.why-us-content h3 { font-family: var(--font-heading); font-size: 36px; color: var(--white-pure); margin-bottom: 20px; line-height: 1.3; }
.why-us-content h3 .highlight { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.why-us-content > p { font-size: 16px; color: rgba(255, 255, 255, 0.6); line-height: 1.8; margin-bottom: 30px; }
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-feature { display: flex; gap: 20px; padding: 20px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(212, 175, 55, 0.1); border-radius: 12px; transition: var(--transition-fast); }
.why-feature:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(212, 175, 55, 0.3); transform: translateX(10px); }
.why-feature-icon { width: 50px; height: 50px; min-width: 50px; border-radius: 12px; background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.2); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gold-medium); }
.why-feature-text h4 { font-family: var(--font-heading); font-size: 18px; color: var(--white-pure); margin-bottom: 8px; }
.why-feature-text p { font-size: 14px; color: rgba(255, 255, 255, 0.6); line-height: 1.6; }

/* PROCESS */
.process-section { padding: var(--section-padding); background: var(--black-dark); position: relative; }
.process-timeline { display: flex; justify-content: space-between; align-items: flex-start; position: relative; max-width: 1000px; margin: 0 auto; }
.process-timeline::before { content: ''; position: absolute; top: 40px; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-medium), var(--gold-bright), var(--gold-medium), var(--gold-dark)); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; flex: 1; max-width: 200px; }
.process-step-number { width: 80px; height: 80px; margin: 0 auto 20px; border-radius: 50%; background: var(--gradient-dark); border: 3px solid var(--gold-medium); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--gold-medium); position: relative; box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); transition: var(--transition-fast); }
.process-step:hover .process-step-number { transform: scale(1.1); box-shadow: 0 0 30px rgba(212, 175, 55, 0.4); }
.process-step h4 { font-family: var(--font-heading); font-size: 20px; color: var(--white-pure); margin-bottom: 10px; }
.process-step p { font-size: 14px; color: rgba(255, 255, 255, 0.6); line-height: 1.6; }

/* INDUSTRIES */
.industries-section { padding: var(--section-padding); background: var(--black-pure); }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 25px; }
.industry-card { text-align: center; padding: 40px 25px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(212, 175, 55, 0.1); border-radius: 16px; transition: var(--transition-medium); cursor: pointer; }
.industry-card:hover { transform: translateY(-8px); border-color: rgba(212, 175, 55, 0.3); background: rgba(212, 175, 55, 0.05); box-shadow: var(--shadow-gold); }
.industry-icon { width: 70px; height: 70px; margin: 0 auto 20px; border-radius: 50%; background: rgba(212, 175, 55, 0.1); border: 2px solid rgba(212, 175, 55, 0.2); display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--gold-medium); transition: var(--transition-fast); }
.industry-card:hover .industry-icon { background: var(--gradient-gold); color: var(--black-pure); transform: rotate(360deg); }
.industry-card h4 { font-family: var(--font-heading); font-size: 18px; color: var(--white-pure); }

/* TESTIMONIALS */
.testimonials-section { padding: var(--section-padding); background: var(--black-dark); position: relative; }
.testimonials-slider { max-width: 900px; margin: 0 auto; position: relative; }
.testimonial-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(212, 175, 55, 0.1); border-radius: 20px; padding: 40px; text-align: center; transition: var(--transition-medium); }
.testimonial-card:hover { border-color: rgba(212, 175, 55, 0.3); box-shadow: var(--shadow-gold); }
.testimonial-quote { font-size: 48px; color: var(--gold-medium); opacity: 0.3; margin-bottom: 20px; }
.testimonial-text { font-size: 18px; color: rgba(255, 255, 255, 0.8); line-height: 1.8; margin-bottom: 30px; font-style: italic; }
.testimonial-rating { display: flex; justify-content: center; gap: 5px; margin-bottom: 20px; }
.testimonial-rating i { color: var(--gold-medium); font-size: 18px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 15px; }
.testimonial-author img { width: 60px; height: 60px; border-radius: 50%; border: 3px solid var(--gold-medium); object-fit: cover; }
.testimonial-author-info h5 { font-family: var(--font-heading); font-size: 18px; color: var(--white-pure); }
.testimonial-author-info span { font-size: 14px; color: var(--gold-medium); }

/* FAQ */
.faq-section { padding: var(--section-padding); background: var(--black-pure); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1000px; margin: 0 auto; }
.faq-item { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(212, 175, 55, 0.1); border-radius: 12px; overflow: hidden; transition: var(--transition-fast); }
.faq-item:hover { border-color: rgba(212, 175, 55, 0.3); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; cursor: pointer; transition: var(--transition-fast); }
.faq-question h4 { font-family: var(--font-body); font-size: 16px; font-weight: 500; color: var(--white-pure); }
.faq-question i { color: var(--gold-medium); font-size: 18px; transition: var(--transition-fast); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 25px 20px; font-size: 14px; color: rgba(255, 255, 255, 0.6); line-height: 1.8; }

/* CTA */
.cta-section { padding: 100px 0; background: var(--gradient-red); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('../images/pattern.png') center/300px repeat; opacity: 0.05; }
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-content h2 { font-family: var(--font-heading); font-size: 42px; color: var(--white-pure); margin-bottom: 20px; }
.cta-content p { font-size: 18px; color: rgba(255, 255, 255, 0.8); margin-bottom: 35px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.cta-buttons .btn-primary { background: var(--white-pure); color: var(--red-dark); }
.cta-buttons .btn-primary:hover { background: var(--white-off); }
.cta-buttons .btn-secondary { border-color: var(--white-pure); color: var(--white-pure); }
.cta-buttons .btn-secondary:hover { background: var(--white-pure); color: var(--red-dark); }

/* BLOG */
.blog-section { padding: var(--section-padding); background: var(--black-dark); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.blog-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(212, 175, 55, 0.1); border-radius: 16px; overflow: hidden; transition: var(--transition-medium); }
.blog-card:hover { transform: translateY(-8px); border-color: rgba(212, 175, 55, 0.3); box-shadow: var(--shadow-gold); }
.blog-image { position: relative; overflow: hidden; height: 220px; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-medium); }
.blog-card:hover .blog-image img { transform: scale(1.1); }
.blog-category { position: absolute; top: 15px; left: 15px; padding: 6px 14px; background: var(--red-medium); color: var(--white-pure); font-size: 12px; font-family: var(--font-button); font-weight: 500; border-radius: 50px; letter-spacing: 0.5px; }
.blog-content { padding: 25px; }
.blog-meta { display: flex; gap: 15px; margin-bottom: 12px; font-size: 13px; color: rgba(255, 255, 255, 0.5); }
.blog-meta i { color: var(--gold-medium); margin-right: 5px; }
.blog-content h3 { font-family: var(--font-heading); font-size: 20px; color: var(--white-pure); margin-bottom: 12px; line-height: 1.4; transition: var(--transition-fast); }
.blog-card:hover .blog-content h3 { color: var(--gold-medium); }
.blog-content p { font-size: 14px; color: rgba(255, 255, 255, 0.6); line-height: 1.7; margin-bottom: 15px; }
.blog-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-button); font-size: 13px; font-weight: 600; color: var(--gold-medium); letter-spacing: 0.5px; transition: var(--transition-fast); }
.blog-link:hover { gap: 12px; }

/* FOOTER */
.footer { background: var(--black-pure); border-top: 1px solid rgba(212, 175, 55, 0.15); position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gradient-gold); }
.footer-top { padding: 80px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo img { height: 50px; }
.footer-brand p { font-size: 14px; color: rgba(255, 255, 255, 0.6); line-height: 1.8; margin-bottom: 25px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.2); display: flex; align-items: center; justify-content: center; color: var(--gold-medium); font-size: 16px; transition: var(--transition-fast); }
.footer-social a:hover { background: var(--gold-medium); color: var(--black-pure); transform: translateY(-3px); }
.footer-column h4 { font-family: var(--font-heading); font-size: 18px; color: var(--gold-medium); margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-column h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--gradient-gold); }
.footer-column ul li { margin-bottom: 12px; }
.footer-column ul li a { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255, 255, 255, 0.6); transition: var(--transition-fast); }
.footer-column ul li a:hover { color: var(--gold-medium); padding-left: 5px; }
.footer-column ul li a i { font-size: 10px; color: var(--red-bright); }
.footer-contact p { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(255, 255, 255, 0.6); margin-bottom: 15px; line-height: 1.6; }
.footer-contact p i { color: var(--gold-medium); margin-top: 3px; font-size: 16px; }
.footer-newsletter p { font-size: 14px; color: rgba(255, 255, 255, 0.6); margin-bottom: 15px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input { flex: 1; padding: 12px 15px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 8px; color: var(--white-pure); font-family: var(--font-body); font-size: 14px; }
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--gold-medium); }
.newsletter-form button { padding: 12px 18px; background: var(--gradient-gold); border: none; border-radius: 8px; color: var(--black-pure); cursor: pointer; font-size: 16px; transition: var(--transition-fast); }
.newsletter-form button:hover { transform: scale(1.05); }
.footer-bottom { border-top: 1px solid rgba(212, 175, 55, 0.1); padding: 25px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.footer-bottom p { font-size: 13px; color: rgba(255, 255, 255, 0.5); }
.footer-bottom-links { display: flex; gap: 25px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255, 255, 255, 0.5); transition: var(--transition-fast); }
.footer-bottom-links a:hover { color: var(--gold-medium); }

/* FLOATING BUTTONS */
.floating-buttons { position: fixed; bottom: 30px; right: 30px; z-index: 999; display: flex; flex-direction: column; gap: 15px; }
.float-btn { width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--white-pure); cursor: pointer; transition: var(--transition-fast); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); position: relative; }
.float-btn:hover { transform: scale(1.1) translateY(-5px); }
.float-btn.whatsapp { background: #25D366; }
.float-btn.call { background: var(--red-medium); }
.float-btn.booking { background: var(--gold-dark); width: auto; padding: 0 20px; border-radius: 50px; font-size: 14px; font-family: var(--font-button); font-weight: 600; gap: 8px; }
.float-btn .tooltip { position: absolute; right: 70px; top: 50%; transform: translateY(-50%); padding: 8px 15px; background: var(--black-dark); border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 8px; font-size: 13px; white-space: nowrap; opacity: 0; visibility: hidden; transition: var(--transition-fast); }
.float-btn:hover .tooltip { opacity: 1; visibility: visible; }

/* ANIMATIONS */
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes glow { 0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); } 50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.4); } }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* PAGE HEADER */
.page-header { padding: 160px 0 80px; background: var(--gradient-hero); position: relative; text-align: center; }
.page-header::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('../images/hero-bg.jpg') center/cover no-repeat; opacity: 0.1; }
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-family: var(--font-heading); font-size: 48px; color: var(--white-pure); margin-bottom: 15px; }
.page-header p { font-size: 18px; color: rgba(255, 255, 255, 0.7); max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 20px; font-size: 14px; }
.breadcrumb a { color: var(--gold-medium); }
.breadcrumb span { color: rgba(255, 255, 255, 0.5); }
.breadcrumb i { color: var(--gold-medium); font-size: 12px; }

/* CONTENT SECTIONS */
.content-section { padding: var(--section-padding); background: var(--black-dark); }
.content-grid { display: grid; grid-template-columns: 1fr 350px; gap: 40px; }
.content-main { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(212, 175, 55, 0.1); border-radius: 16px; padding: 40px; }
.content-main h2 { font-family: var(--font-heading); font-size: 32px; color: var(--white-pure); margin-bottom: 20px; }
.content-main h3 { font-family: var(--font-heading); font-size: 24px; color: var(--gold-medium); margin: 30px 0 15px; }
.content-main p { font-size: 15px; color: rgba(255, 255, 255, 0.7); line-height: 1.8; margin-bottom: 15px; }
.content-main ul { margin: 15px 0; padding-left: 20px; }
.content-main ul li { font-size: 15px; color: rgba(255, 255, 255, 0.7); margin-bottom: 10px; position: relative; padding-left: 20px; }
.content-main ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--gold-medium); font-size: 12px; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 25px; }
.sidebar-widget { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(212, 175, 55, 0.1); border-radius: 16px; padding: 25px; }
.sidebar-widget h4 { font-family: var(--font-heading); font-size: 18px; color: var(--gold-medium); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(212, 175, 55, 0.2); }
.sidebar-menu li { margin-bottom: 8px; }
.sidebar-menu li a { display: flex; align-items: center; gap: 10px; padding: 10px 15px; font-size: 14px; color: rgba(255, 255, 255, 0.7); border-radius: 8px; transition: var(--transition-fast); }
.sidebar-menu li a:hover, .sidebar-menu li a.active { background: rgba(212, 175, 55, 0.1); color: var(--gold-medium); }
.sidebar-menu li a i { color: var(--red-bright); font-size: 10px; }
.sidebar-form .form-group { margin-bottom: 15px; }
.sidebar-form .form-group input, .sidebar-form .form-group textarea { padding: 12px 15px; font-size: 13px; }
.sidebar-form .btn-primary { width: 100%; justify-content: center; padding: 12px; font-size: 13px; }

/* TEAM */
.team-section { padding: var(--section-padding); background: var(--black-pure); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.team-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(212, 175, 55, 0.1); border-radius: 16px; overflow: hidden; text-align: center; transition: var(--transition-medium); }
.team-card:hover { transform: translateY(-10px); border-color: rgba(212, 175, 55, 0.3); box-shadow: var(--shadow-gold); }
.team-image { position: relative; overflow: hidden; height: 280px; }
.team-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-medium); }
.team-card:hover .team-image img { transform: scale(1.1); }
.team-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); transform: translateY(100%); transition: var(--transition-fast); }
.team-card:hover .team-overlay { transform: translateY(0); }
.team-social { display: flex; justify-content: center; gap: 12px; }
.team-social a { width: 35px; height: 35px; border-radius: 50%; background: rgba(212, 175, 55, 0.2); display: flex; align-items: center; justify-content: center; color: var(--gold-medium); font-size: 14px; transition: var(--transition-fast); }
.team-social a:hover { background: var(--gold-medium); color: var(--black-pure); }
.team-info { padding: 25px; }
.team-info h4 { font-family: var(--font-heading); font-size: 20px; color: var(--white-pure); margin-bottom: 5px; }
.team-info span { font-size: 14px; color: var(--gold-medium); font-family: var(--font-button); letter-spacing: 1px; }

/* PRICING */
.pricing-section { padding: var(--section-padding); background: var(--black-dark); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.pricing-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(212, 175, 55, 0.1); border-radius: 20px; padding: 40px 30px; text-align: center; transition: var(--transition-medium); position: relative; overflow: hidden; }
.pricing-card.featured { border-color: var(--gold-medium); transform: scale(1.05); }
.pricing-card.featured::before { content: 'MOST POPULAR'; position: absolute; top: 20px; right: -35px; background: var(--gradient-gold); color: var(--black-pure); padding: 5px 40px; font-size: 11px; font-family: var(--font-button); font-weight: 700; letter-spacing: 1px; transform: rotate(45deg); }
.pricing-card:hover { transform: translateY(-10px); border-color: rgba(212, 175, 55, 0.3); box-shadow: var(--shadow-gold); }
.pricing-card.featured:hover { transform: scale(1.05) translateY(-10px); }
.pricing-icon { width: 80px; height: 80px; margin: 0 auto 25px; border-radius: 50%; background: rgba(212, 175, 55, 0.1); border: 2px solid rgba(212, 175, 55, 0.2); display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--gold-medium); }
.pricing-card h3 { font-family: var(--font-heading); font-size: 24px; color: var(--white-pure); margin-bottom: 10px; }
.pricing-card .price { font-family: var(--font-heading); font-size: 48px; font-weight: 700; color: var(--gold-medium); margin-bottom: 5px; }
.pricing-card .price span { font-size: 16px; color: rgba(255, 255, 255, 0.5); }
.pricing-card .period { font-size: 14px; color: rgba(255, 255, 255, 0.5); margin-bottom: 25px; }
.pricing-features { text-align: left; margin-bottom: 30px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; padding: 10px 0; font-size: 14px; color: rgba(255, 255, 255, 0.7); border-bottom: 1px solid rgba(212, 175, 55, 0.05); }
.pricing-features li i { color: var(--gold-medium); font-size: 14px; }
.pricing-features li.not-included { color: rgba(255, 255, 255, 0.3); }
.pricing-features li.not-included i { color: var(--red-bright); }

/* LOGIN & REGISTER */
.auth-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--gradient-hero); padding: 40px 20px; position: relative; }
.auth-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('../images/hero-bg.jpg') center/cover no-repeat; opacity: 0.1; }
.auth-container { position: relative; z-index: 1; width: 100%; max-width: 500px; }
.auth-card { background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 20px; padding: 50px 40px; box-shadow: var(--glass-shadow); }
.auth-logo { text-align: center; margin-bottom: 30px; }
.auth-logo img { height: 70px; margin: 0 auto; }
.auth-logo h2 { font-family: var(--font-heading); font-size: 28px; color: var(--gold-medium); margin-top: 15px; }
.auth-logo p { font-size: 14px; color: rgba(255, 255, 255, 0.6); margin-top: 5px; }
.auth-form .form-group { margin-bottom: 20px; }
.auth-form .form-group label { display: block; font-size: 13px; color: var(--gold-medium); margin-bottom: 8px; font-family: var(--font-button); }
.auth-form .btn-primary { width: 100%; justify-content: center; margin-top: 10px; }
.auth-divider { display: flex; align-items: center; gap: 15px; margin: 25px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: rgba(212, 175, 55, 0.2); }
.auth-divider span { font-size: 13px; color: rgba(255, 255, 255, 0.5); }
.google-btn { width: 100%; padding: 14px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 10px; color: var(--white-pure); font-family: var(--font-button); font-size: 14px; display: flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer; transition: var(--transition-fast); }
.google-btn:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--gold-medium); }
.google-btn img { width: 20px; height: 20px; }
.auth-footer { text-align: center; margin-top: 25px; font-size: 14px; color: rgba(255, 255, 255, 0.6); }
.auth-footer a { color: var(--gold-medium); font-weight: 600; }
.auth-footer a:hover { text-decoration: underline; }

/* ADMIN DASHBOARD */
.admin-body { background: var(--black-dark); }
.admin-sidebar { width: 280px; background: var(--black-pure); border-right: 1px solid rgba(212, 175, 55, 0.1); position: fixed; top: 0; left: 0; height: 100vh; overflow-y: auto; z-index: 1000; transition: var(--transition-fast); }
.admin-sidebar-header { padding: 25px; border-bottom: 1px solid rgba(212, 175, 55, 0.1); text-align: center; }
.admin-sidebar-header img { height: 50px; margin: 0 auto 10px; }
.admin-sidebar-header h3 { font-family: var(--font-heading); font-size: 18px; color: var(--gold-medium); }
.admin-sidebar-header p { font-size: 12px; color: rgba(255, 255, 255, 0.5); margin-top: 5px; }
.admin-nav { padding: 20px 0; }
.admin-nav li { margin-bottom: 5px; }
.admin-nav li a { display: flex; align-items: center; gap: 12px; padding: 12px 25px; font-size: 14px; color: rgba(255, 255, 255, 0.7); transition: var(--transition-fast); border-left: 3px solid transparent; }
.admin-nav li a:hover, .admin-nav li a.active { background: rgba(212, 175, 55, 0.05); color: var(--gold-medium); border-left-color: var(--gold-medium); }
.admin-nav li a i { font-size: 18px; width: 25px; text-align: center; }
.admin-main { margin-left: 280px; min-height: 100vh; }
.admin-header { background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(212, 175, 55, 0.1); padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 100; }
.admin-header h2 { font-family: var(--font-heading); font-size: 24px; color: var(--white-pure); }
.admin-header-right { display: flex; align-items: center; gap: 20px; }
.admin-search { position: relative; }
.admin-search input { padding: 10px 15px 10px 40px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 8px; color: var(--white-pure); font-size: 14px; width: 250px; }
.admin-search input::placeholder { color: rgba(255, 255, 255, 0.4); }
.admin-search i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--gold-medium); }
.admin-user { display: flex; align-items: center; gap: 10px; }
.admin-user img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--gold-medium); }
.admin-user span { font-size: 14px; color: var(--white-pure); }
.admin-content { padding: 30px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; margin-bottom: 40px; }
.stat-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(212, 175, 55, 0.1); border-radius: 16px; padding: 25px; transition: var(--transition-fast); }
.stat-card:hover { border-color: rgba(212, 175, 55, 0.3); transform: translateY(-5px); }
.stat-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.2); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gold-medium); margin-bottom: 15px; }
.stat-card h4 { font-size: 14px; color: rgba(255, 255, 255, 0.6); margin-bottom: 10px; font-family: var(--font-button); }
.stat-card .stat-number { font-family: var(--font-heading); font-size: 32px; font-weight: 700; color: var(--gold-medium); }
.stat-card .stat-change { font-size: 13px; color: #4CAF50; margin-top: 5px; }
.stat-card .stat-change.negative { color: var(--red-bright); }
.admin-table-container { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(212, 175, 55, 0.1); border-radius: 16px; overflow: hidden; }
.admin-table-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; border-bottom: 1px solid rgba(212, 175, 55, 0.1); }
.admin-table-header h3 { font-family: var(--font-heading); font-size: 20px; color: var(--white-pure); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { padding: 15px 25px; text-align: left; font-family: var(--font-button); font-size: 13px; font-weight: 600; color: var(--gold-medium); text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid rgba(212, 175, 55, 0.1); background: rgba(212, 175, 55, 0.02); }
.admin-table td { padding: 15px 25px; font-size: 14px; color: rgba(255, 255, 255, 0.7); border-bottom: 1px solid rgba(212, 175, 55, 0.05); }
.admin-table tr:hover td { background: rgba(212, 175, 55, 0.02); }
.status-badge { padding: 5px 12px; border-radius: 50px; font-size: 12px; font-family: var(--font-button); font-weight: 500; }
.status-badge.completed { background: rgba(76, 175, 80, 0.1); color: #4CAF50; border: 1px solid rgba(76, 175, 80, 0.2); }
.status-badge.pending { background: rgba(255, 193, 7, 0.1); color: #FFC107; border: 1px solid rgba(255, 193, 7, 0.2); }
.status-badge.processing { background: rgba(33, 150, 243, 0.1); color: #2196F3; border: 1px solid rgba(33, 150, 243, 0.2); }

/* RESPONSIVE */
@media (max-width: 1200px) { .mega-menu { width: 700px; } .mega-menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 992px) { .hero .container { grid-template-columns: 1fr; text-align: center; } .hero-content { order: 1; } .hero-form-wrapper { order: 2; max-width: 500px; margin: 0 auto; } .hero-features { justify-content: center; } .hero-buttons { justify-content: center; } .hero-title { font-size: 42px; } .trust-grid { grid-template-columns: repeat(2, 1fr); } .trust-item:nth-child(2)::after { display: none; } .why-us-grid { grid-template-columns: 1fr; } .why-us-image { order: 2; } .why-us-content { order: 1; } .process-timeline { flex-wrap: wrap; gap: 30px; } .process-timeline::before { display: none; } .process-step { flex: 0 0 calc(50% - 15px); } .faq-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: repeat(2, 1fr); } .main-nav { display: none; } .mobile-toggle { display: flex; } .header-cta { display: none; } .content-grid { grid-template-columns: 1fr; } .admin-sidebar { transform: translateX(-100%); } .admin-main { margin-left: 0; } }
@media (max-width: 768px) { .hero-title { font-size: 32px; } .section-title { font-size: 32px; } .trust-grid { grid-template-columns: 1fr; } .trust-item::after { display: none; } .process-step { flex: 0 0 100%; } .footer-grid { grid-template-columns: 1fr; } .footer-bottom .container { flex-direction: column; text-align: center; } .top-bar-left { justify-content: center; width: 100%; } .top-bar-right { justify-content: center; width: 100%; } .floating-buttons { bottom: 20px; right: 20px; } .page-header h1 { font-size: 36px; } }
@media (max-width: 480px) { .hero-form { padding: 25px 20px; } .hero-title { font-size: 28px; } .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 12px; } .pricing-card.featured { transform: scale(1); } .pricing-card.featured:hover { transform: scale(1) translateY(-10px); } }
