/* ========================================
   AGENCIALEADS.COM - SULTAN LUXURY TECH
   Global Stylesheet
   ======================================== */

   :root {
    --navy-deep: #0A1128;
    --navy-medium: #0F1A3A;
    --navy-light: #1A2A4A;
    --gold-primary: #D4AF37;
    --gold-dark: #B8942E;
    --gold-light: #E5C158;
    --ivory: #F5F0E8;
    --white: #FFFFFF;
    --charcoal: #1A1A1A;
    --gray-light: #B8C5D6;
    --gray-mid: #5A6E8A;
    --success: #00C853;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy-deep);
    color: var(--gray-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.gold-text {
    color: var(--gold-primary);
    font-family: 'Playfair Display', serif;
}

.logo-gold {
    color: var(--gold-primary);
    font-weight: 800;
}

.logo-white {
    color: var(--white);
    font-weight: 800;
}

.logo-crown {
    color: var(--gold-primary);
    margin-left: 4px;
    font-size: 0.9rem;
}

/* ========== HEADER ========== */
.header-luxury {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 16px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-light);
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold-primary);
}

.btn-nav-gold {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    color: var(--navy-deep);
    font-weight: 700;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-nav-gold:hover {
    transform: translateY(-2px);
    gap: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--gold-primary);
    transition: 0.3s;
}

/* ========== HERO SECTION ========== */
.hero-luxury {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
}

.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
}

.glow-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold-primary), transparent);
    top: -200px;
    right: -100px;
}

.glow-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 100, 200, 0.3), transparent);
    bottom: -150px;
    left: -100px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.hero-content {
    flex: 1.2;
    min-width: 300px;
}

.badge-gold {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-primary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 550px;
    margin-bottom: 30px;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-primary);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-mid);
}

.btn-cta-gold {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    padding: 16px 38px;
    border-radius: 4px;
    text-decoration: none;
    color: var(--navy-deep);
    font-weight: 700;
    transition: all 0.4s;
    border: none;
    cursor: pointer;
}

.btn-cta-gold.full-width {
    width: 100%;
    justify-content: center;
}

.btn-cta-gold:hover {
    transform: translateY(-3px);
    gap: 18px;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--gold-primary);
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    color: var(--gold-primary);
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: var(--navy-deep);
    gap: 12px;
}

.trust-badge {
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-icons i {
    font-size: 1.5rem;
    color: var(--gray-mid);
    margin-right: 12px;
    transition: 0.3s;
}

.trust-icons i:hover {
    color: var(--gold-primary);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    min-width: 400px;
}

.office-frame {
    position: relative;
    background: rgba(15, 26, 58, 0.4);
    backdrop-filter: blur(2px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.office-image-container {
    position: relative;
}

.office-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.glass-reflection {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transform: skewX(-20deg);
    animation: reflection 8s infinite;
}

@keyframes reflection {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.hologram-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(10, 17, 40, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.hologram-title {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.metrics-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.metric-card {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold-primary);
}

.trend-up { color: var(--success); }
.trend-down { color: #FF6B6B; }

.chart-3d {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    height: 60px;
    margin-top: 15px;
}

.bar {
    width: 25px;
    background: linear-gradient(180deg, var(--gold-primary), var(--gold-dark));
    border-radius: 4px 4px 0 0;
}

.bar1 { height: 40px; }
.bar2 { height: 55px; }
.bar3 { height: 30px; }
.bar4 { height: 65px; }
.bar5 { height: 48px; }

.chart-label {
    text-align: center;
    margin-top: 10px;
    font-size: 0.7rem;
    color: var(--gold-primary);
}

/* ========== CLIENTS SECTION ========== */
.clients-section {
    padding: 60px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.section-label {
    text-align: center;
    color: var(--gold-primary);
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 30px;
}

.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.client-logo img {
    max-width: 120px;
    opacity: 0.6;
    transition: 0.3s;
}

.client-logo img:hover {
    opacity: 1;
}

/* ========== PAGE HERO ========== */
.page-hero {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-medium));
}

.page-hero-content h1 {
    font-size: 3rem;
    margin: 20px 0;
}

/* ========== ABOUT PAGE ========== */
.about-main {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.mission-vision {
    padding: 60px 0;
    background: var(--navy-medium);
}

.mv-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.mv-card {
    flex: 1;
    text-align: center;
    padding: 40px 20px;
    background: rgba(10, 17, 40, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.mv-card.gold-border {
    border-color: var(--gold-primary);
}

.mv-card i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.mv-card h3 {
    margin-bottom: 15px;
}

.leadership {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-card {
    text-align: center;
    max-width: 280px;
}

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold-primary);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-title {
    color: var(--gold-primary);
    font-size: 0.9rem;
    margin: 8px 0;
}

/* ========== SERVICES PAGE ========== */
.services-grid-section {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card-large {
    background: var(--navy-medium);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: 0.3s;
}

.service-card-large:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
}

.service-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.service-card-large h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--success);
}

.service-pricing {
    margin: 20px 0;
    font-size: 1.1rem;
}

/* ========== FORM PAGE ========== */
.form-hero {
    padding: 60px 0 30px;
    text-align: center;
}

.lead-form-section {
    padding: 40px 0 80px;
}

.form-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    background: var(--navy-medium);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-info {
    flex: 1;
}

.form-info h3 {
    margin-bottom: 20px;
}

.form-info ul {
    list-style: none;
}

.form-info li {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-info li i {
    color: var(--gold-primary);
}

.guarantee {
    margin-top: 30px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    text-align: center;
}

.luxury-form {
    flex: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 500;
}

.required {
    color: var(--gold-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(10, 17, 40, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.form-note {
    font-size: 0.75rem;
    text-align: center;
    margin-top: 20px;
}

.form-note a {
    color: var(--gold-primary);
}

/* ========== CTA BANNER ========== */
.cta-banner {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--navy-medium), var(--navy-deep));
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* ========== FOOTER ========== */
.footer-luxury {
    background: var(--navy-deep);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin: 10px 0;
}

.footer-col a {
    text-decoration: none;
    color: var(--gray-light);
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--gold-primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--gold-primary);
    color: var(--navy-deep);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 0.8rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .hero-title { font-size: 2.5rem; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .stats-row { justify-content: center; }
    .trust-badge { justify-content: center; }
    .about-grid { flex-direction: column; text-align: center; }
    .about-stats { justify-content: center; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--navy-deep);
        width: 70%;
        height: 100vh;
        padding: 40px;
        transition: 0.3s;
        border-right: 2px solid var(--gold-primary);
    }
    .nav-menu.active { left: 0; }
    .hero-visual { min-width: 280px; }
    .hero-title { font-size: 2rem; }
    .page-hero-content h1 { font-size: 2rem; }
    .form-container { padding: 25px; }
    .services-grid { grid-template-columns: 1fr; }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content, .hero-visual {
    animation: fadeInUp 0.8s ease-out;
}