/* ========================================
🎨 BLACK & GOLD THEME - PROFESSIONAL ELEGANT
Black Primary | Gold Accents | White Clean
======================================== */
:root {
    /* BRAND GOLD - PRIMARY */
    --brand-primary: #c9a961;
    --brand-primary-dark: #a68845;
    --brand-primary-light: #f5f0e6;
    --brand-accent: #d4af37;
    --brand-yellow-soft: #f8f5ed;

    /* TEXT COLORS */
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #999999;
    --text-white: #ffffff;
    --text-on-yellow: #1a1a1a;
    --text-on-gold: #1a1a1a;

    /* BACKGROUNDS */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-light: #2a2a2a;
    --bg-yellow-subtle: #1f1f1f;
    --bg-dark: #000000;
    
    /* GRADIENTS */
    --gradient-primary: linear-gradient(135deg, #c9a961 0%, #d4af37 100%);
    --gradient-yellow-soft: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-hero: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 60%, #2a2a2a 100%);

    /* UTILITIES */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.7);
    --shadow-yellow: 0 4px 20px rgba(201, 169, 97, 0.4);
}

/* ========================================
    GLOBAL STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}


body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 400;
    background: var(--bg-primary);

    width: 100%;
    max-width: 100vw;
    position: relative;
}


/* Fix for container overflow */
/* .container,
.container-fluid {
    overflow-x: hidden;
    max-width: 100%;
} */

.row {
    margin-left: 0;
    margin-right: 0;
}

/* ========================================
    TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    color: var(--text-primary);
    margin-bottom: 1rem !important;
    letter-spacing: -0.3px !important;
}

p, .lead, .text-muted {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.text-muted {
    color: var(--text-muted) !important;
}

.btn, button {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0px !important;
}

.nav-link, .navbar-nav .nav-link {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}

/* ========================================
    NAVBAR - BLACK WITH GOLD ACCENTS
======================================== */
.navbar .container {
    max-width: 1500px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: none;
}

.navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    padding: 1rem 0;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.navbar:not(.home-page .navbar) {
    background: rgba(0, 0, 0, 0.98) !important;
    box-shadow: var(--shadow-yellow);
}

.navbar-brand {
    color: var(--brand-primary) !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    margin-right: auto;
}

.navbar-toggler {
    margin-left: auto;
    border: none;
    padding: 0.5rem;

    border-color: var(--brand-primary) !important;
    padding: 0.5rem;
    border: 2px solid var(--brand-primary) !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(201, 169, 97, 0.25) !important;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c9a961' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 1.5em;
    height: 1.5em;
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--brand-primary) !important;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 8px;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(0, 0, 0, 0.98) !important;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
}

.home-page .navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.2);
}

.home-page .navbar.scrolled {
    background: rgba(0, 0, 0, 0.98) !important;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background: #1a1a1a;
    border: 1px solid rgba(201, 169, 97, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    padding: 10px;
    margin-top: 0px;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-item:hover {
    background: rgba(201, 169, 97, 0.15);
    color: var(--brand-primary) !important;
}

img.company-logo {
    position: relative;
    width: 50px;
    height: 50px;
    margin-right: 0.5rem;
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .navbar > .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-brand {
        flex: 0 0 auto;
        max-width: 70%;
    }
    
    .navbar-toggler {
        flex: 0 0 auto;
        margin-left: auto;
        background-color: rgba(201, 169, 97, 0.2);
    }
    
    img.company-logo {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
    }
    
    .brand-text {
        font-size: 16px;
    }

    .navbar-collapse {
        background: #1a1a1a;
        margin-top: 12px;
        padding: 16px 20px;
        border-radius: 16px;
        box-shadow: var(--shadow-yellow);
        border: 1px solid rgba(201, 169, 97, 0.2);
    }

    .navbar-collapse .nav-link {
        padding: 12px 0 !important;
        font-size: 18px !important;
    }

    .navbar-collapse .nav-link:hover {
        background: rgba(201, 169, 97, 0.15);
        border-radius: 8px;
        padding-left: 12px !important;
    }
}

/* ========================================
    HERO SECTION - BLACK WITH GOLD
======================================== */
.hero {
    min-height: 95vh;
    padding: 140px 0 30px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    display: flex;
    flex-direction: column;
    padding-bottom: 0 !important;
    z-index: 1 !important;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    right: 10%;
    top: 20%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, rgba(212, 175, 55, 0.08) 40%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    /* z-index: 0; */
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 354%;
    inset: 0;
    background-image: url(../images/logo-eg.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    opacity: 0.03;
    transform: translate(0%, -50%);
    pointer-events: none;
    /* z-index: 0; */
    mix-blend-mode: plus-lighter;
}

@media (max-width: 767px) {
    .hero::after {
        width: 280px;
        height: 280px;
        right: 50%;
        top: 10%;
        transform: translateX(50%);
        filter: blur(40px);
        opacity: 0.6;
    }

    .hero::before {
        height: 237%;
        background-size: contain;
    }
}

@media (max-width: 991px) {
    .hero::after {
        width: 420px;
        height: 420px;
        right: 50%;
        top: 15%;
        transform: translateX(50%);
        filter: blur(50px);
    }

    .hero::before {
        height: 290%;
        background-size: contain;
    }
}



.hero-content {
    position: relative;
    /* z-index: 5; */
}

.hero h1 {
    font-size: clamp(32px, 4.5vw, 52px) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    color: var(--brand-primary) !important;
}

.rotating-text-container {
    height: 36px;
    overflow: hidden;
    position: relative;
}

.rotating-text h2 {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: clamp(18px, 2.3vw, 26px) !important;
    font-weight: 400 !important;
    letter-spacing: 1.2px !important;
    color: var(--text-secondary) !important;
    text-transform: uppercase;
    opacity: 0;
    animation: rotateTextFast 6s infinite;
}

.rotating-text h2:nth-child(1) { animation-delay: 0s; }
.rotating-text h2:nth-child(2) { animation-delay: 2s; }
.rotating-text h2:nth-child(3) { animation-delay: 4s; }

@keyframes rotateTextFast {
    0% { opacity: 0; transform: translateY(60px); }
    5% { opacity: 1; transform: translateY(0); }
    30% { opacity: 1; transform: translateY(0); }
    35% { opacity: 0; transform: translateY(-60px); }
    100% { opacity: 0; transform: translateY(-60px); }
}

/* Buttons */
.btn-primary-custom {
    background: var(--gradient-primary) !important;
    border: none !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    color: var(--text-on-gold) !important;
    transition: var(--transition-smooth) !important;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4) !important;
}

.btn-primary-custom:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.6) !important;
}

.btn-outline-custom {
    border: 2px solid var(--brand-primary) !important;
    color: var(--brand-primary) !important;
    padding: 12px 32px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    background: transparent !important;
    transition: var(--transition-smooth) !important;
}

.btn-outline-custom:hover {
    background: var(--brand-primary) !important;
    color: var(--text-on-gold) !important;
}

/* Hero Visual Elements */
.hero-visual-wrapper {
    position: relative;
    width: 100%;
    height: 420px;            
    display: flex;
    justify-content: center;
    align-items: flex-end;     
    pointer-events: none;
    margin-top: auto;         
    padding: 0;
    align-items: flex-end;
}

.hero > .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.hero-person-image {
    display: block;
    max-height: 100%;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
    pointer-events: auto;
    z-index: 2;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.8));
    align-self: flex-end;
}

.hero-tag {
    position: absolute;
    background: rgba(201, 169, 97, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 20px 28px;
    box-shadow: 0 8px 32px rgba(201, 169, 97, 0.4);
    border: 2px solid var(--brand-primary);
    z-index: 3;
    pointer-events: auto;
}

.hero-tag h3 {
    margin: 0 !important;
    font-size: 26px !important;
    font-weight: 600 !important;
    color: var(--text-on-gold) !important;
}

.hero-content,
.hero-visual-wrapper,
.hero::before,
.hero::after {
    z-index: inherit; /* Don't exceed hero's z-index */
}

/* Desktop Tag Positions */
.tag-left { left: 10%; top: 13%; }
.tag-right { right: 16%; top: 30%; }
.tag-bottom { left: 33%; bottom: 3%; }

/* ========================================
    HERO MOBILE RESPONSIVE
======================================== */

@media (min-width: 1500px) {
    .hero-visual-wrapper {
        height: 480px;
    }
}

@media (min-width: 992px) and (max-width: 1499px) {
    .hero-visual-wrapper {
        height: 420px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-visual-wrapper {
        height: 360px;
    }

    .hero-tag {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-visual-wrapper {
        height: 300px;
    }

    .hero-tag {
        display: none;
    }
}

@media (max-width: 400px) {
    .hero-visual-wrapper {
        height: 260px;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .hero-visual-wrapper {
        height: 220px;
    }
}

/* ========================================
    COMPLIANCE SECTION - BLACK WITH GOLD
======================================== */
.compliance-section {
    background: #1a1a1a;
    padding: 60px 0;
    border-top: 4px solid var(--brand-primary);
}

.compliance-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.compliance-item:hover {
    transform: translateY(-10px);
}

.compliance-item h3 {
    font-size: 24px !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    color: var(--brand-primary) !important;
}

.compliance-item p {
    font-size: 18px !important;
    font-weight: 400 !important;
    margin: 0 !important;
    color: var(--text-secondary) !important;
}

/* ========================================
    MISSION SECTION
======================================== */
.mission-section {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-primary);
}

.mission-section h2 {
    font-weight: 600 !important;
    margin-bottom: 2rem !important;
    color: var(--brand-primary) !important;
    position: relative;
    display: inline-block;
}

.mission-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.mission-section p {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: var(--text-secondary) !important;
    max-width: 1000px;
    margin: 0 auto !important;
    line-height: 1.7 !important;
}

/* ========================================
    PRODUCTS SECTION - MEMBERSHIP CARDS
======================================== */

.products-section {
    background: #1a1a1a;
    padding: 80px 0;
}

.section-subtitle{
    font-size: 18px;
    color: var(--text-secondary);
}

.membership-card {
    background: #0a0a0a;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid rgba(201, 169, 97, 0.2);
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.membership-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.4);
    border-color: var(--brand-primary);
}

.membership-card:hover::before {
    transform: scaleX(1);
}

.membership-card.recommended {
    border: 2px solid var(--brand-primary);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.recommended-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-primary);
    color: var(--text-on-gold);
    padding: 8px 45px;
    transform: rotate(45deg);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-yellow);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-yellow);
}

.card-title {
    /* font-size: 1.75rem; */
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 10px;
}

.card-subtitle {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    position: relative;
    padding-left: 35px;
    color: var(--text-secondary);
    font-weight: 500;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--text-on-gold);
    background: var(--brand-primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Buttons */
.btn-gradient {
    background: var(--gradient-primary);
    color: var(--text-on-gold);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gradient::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: left 0.5s ease;
}

.btn-gradient:hover::before {
    left: 100%;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-yellow);
    color: var(--text-on-gold);
}

.btn:hover {
    background-color: var(--brand-accent);
}

.btn-outline-gradient {
    background: transparent;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-gradient:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-on-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-yellow);
}

.pricing-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

/* Primary gold button */
.price-btn {
    flex: 1;
    text-align: center;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, #b9963b, #e6c76b);
    color: #000;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid rgba(201, 169, 97, 0.6);
}

/* Hover glow */
.price-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(201, 169, 97, 0.35);
}

/* Secondary subtle button */
.price-btn-outline {
    background: transparent;
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.price-btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Mobile */
@media (max-width: 576px) {
    .pricing-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }
}


/* ========================================
    FRAMEWORK SECTION
======================================== */
.framework-section {
    background: var(--gradient-hero);
    padding: 80px 0;
    text-align: center;
}

.framework-section h2 {
    font-size: 36px !important;
    font-weight: 600 !important;
    color: var(--brand-primary) !important;
}

.framework-section p {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: var(--text-secondary) !important;
    line-height: 1.7 !important;
    max-width: 1000px;
    margin: 0 auto !important;
}

/* ========================================
    PREMIUM SERVICES (MODERN CARDS)
======================================== */
.product-card-modern {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(201, 169, 97, 0.2);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.product-card-modern:hover {
    transform: translateY(-12px);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(212, 175, 55, 0.15) 100%);
    border-color: var(--brand-primary);
    box-shadow: 0 16px 48px rgba(201, 169, 97, 0.3);
}

.product-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px 40px;
}

.icon-wrapper {
    width: 140px;
    height: 140px;
    background: rgba(201, 169, 97, 0.12);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    transition: var(--transition-smooth);
}

.product-card-modern:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: rgba(201, 169, 97, 0.2);
}

.product-content {
    background: rgba(10, 10, 10, 0.95);
    border-radius: 28px 28px 0 0;
    padding: 32px 28px 24px;
    margin-top: auto;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.product-content h3 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--brand-primary) !important;
}

.product-content p {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: var(--text-secondary) !important;
    line-height: 1.6 !important;
}

@media (max-width: 768px) {
    .product-card-modern {
        min-height: 380px;
    }
    
    .product-visual {
        padding: 50px 30px 30px;
    }
    
    .icon-wrapper {
        width: 120px;
        height: 120px;
    }
}

/* ========================================
    ACHIEVEMENTS SECTION
======================================== */
.achievements-section {
    background: #1a1a1a;
}

.achievement-item {
    padding: 20px 10px;
    text-align: center;
}

.achievement-item:not(:last-child) {
    border-right: 1px solid rgba(201, 169, 97, 0.2);
}

@media (max-width: 768px) {
    .achievement-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(201, 169, 97, 0.2);
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}

.achievement-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-on-gold);
    font-size: 22px;
}

.achievement-item h4 {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: var(--brand-primary) !important;
}

.achievement-item p {
    font-size: 18px !important;
    color: var(--text-secondary);
}

/* ========================================
    FOUNDERS SECTION
======================================== */
/* .founders-section {
    background: var(--bg-primary);
}

.slider-container {
    max-width: 520px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--brand-primary);
    border-radius: 20px;
    overflow: hidden;
}

.founder-quote {
    background: var(--gradient-primary);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-yellow);
}

.founder-quote p {
    font-size: 1.05rem;
    color: var(--text-on-gold);
    line-height: 1.7;
}

.founder-quote h5 {
    color: var(--text-on-gold);
} */

/* ========================================
    FOUNDERS SECTION - BALANCED SIZE
======================================== */
.founders-section {
    background: var(--bg-primary);
    padding: 80px 0;
}

.founders-section h2 {
    /* color: var(--page-heading); */
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 3rem;
}

/* Centered row with vertical alignment */
.founders-section .row {
    display: flex;
    align-items: center !important;
    max-width: 1200px;
    margin: 0 auto;
}

/* Image Wrapper - Balanced size */
.founder-image-wrapper {
    width: 100%;
    max-width: 420px;
    height: 480px;
    margin: 0 auto;
    border: 3px solid var(--brand-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Quote Box - Compact but not too small */
.founder-quote {
    background: var(--gradient-primary);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-yellow);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-quote .fa-quote-left {
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.founder-quote p {
    font-size: 1.05rem;
    color: var(--text-white);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.founder-quote p:last-of-type {
    margin-bottom: 1.5rem;
}

.founder-quote h5 {
    color: var(--text-on-gold);
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0;
}

/* Large Desktop */
@media (min-width: 1400px) {
    .founders-section .row {
        max-width: 1300px;
    }
}

/* Laptop */
@media (max-width: 1199px) {
    .founder-image-wrapper {
        max-width: 380px;
        height: 440px;
    }
    
    .founder-quote {
        padding: 2.5rem 2rem;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .founders-section {
        padding: 60px 0;
    }
    
    .founders-section .row {
        align-items: flex-start;
    }
    
    .founder-image-wrapper {
        max-width: 350px;
        height: 400px;
        margin-bottom: 2rem;
    }
    
    .founder-quote {
        padding: 2.5rem 2rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .founder-image-wrapper {
        max-width: 100%;
        height: 380px;
    }
    
    .founder-quote {
        padding: 2rem 1.5rem;
    }
    
    .founder-quote p {
        font-size: 1rem;
    }
}


/* ========================================
    CONTACT SECTION
======================================== */
.contact-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.contact-section h2 {
    font-size: 36px !important;
    font-weight: 600 !important;
    color: var(--brand-primary) !important;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

/* .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-primary);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid rgba(201, 169, 97, 0.2);
    transition: var(--transition-smooth);
} */

.contact-info-item:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.3);
    transform: translateX(5px);
}

.contact-icon-modern {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-on-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-info-item:hover .contact-icon-modern {
    transform: scale(1.1) rotate(-5deg);
}

.contact-details {
    flex: 1;
    min-width: 0;
    width: 100%;
    overflow: hidden;
}

.contact-details h5 {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: var(--brand-primary) !important;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 16px !important;
    color: var(--text-secondary) !important;
    margin-bottom: 0;
    word-break: break-all;
    overflow-wrap: anywhere;
    white-space: normal;
    line-height: 1.6;
}

.contact-info-item .contact-details {
    flex: 1;
    min-width: 0; /* Important for flexbox text overflow */
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-primary);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid rgba(63, 43, 189, 0.1);
    transition: var(--transition-smooth);
    width: 100%;
    overflow: hidden;
}


@media (max-width: 768px) {
    .contact-info-item {
        padding: 24px;
        gap: 15px;
    }
    
    .contact-icon-modern {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .contact-info-item {
        padding: 20px;
    }
}

/* ========================================
    FOOTER
======================================== */
footer {
    background: #000000;
    padding: 60px 0 30px;
    border-top: 4px solid var(--brand-primary);
    color: var(--text-white);
}

footer h5 {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: var(--brand-primary) !important;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--brand-primary);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--brand-primary);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    color: var(--text-on-gold);
}

.social-links a:hover {
    background: var(--brand-accent);
    transform: translateY(-5px);
    color: var(--text-on-gold);
}

.disclaimer {
    background: rgba(201, 169, 97, 0.1);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    border-left: 5px solid var(--brand-primary);
    border-right: 5px solid var(--brand-primary);
}

.disclaimer p {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.8 !important;
}

.footer p {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Page layout css */

.page-wrapper {
    padding: 130px 0 50px;
}

.page-title {
    color: var(--brand-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.page-content h2 {
    color: var(--brand-primary);
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.page-content p,
.page-content li {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.page-content ul {
    padding-left: 1.2rem;
}

.page-card {
    background: #0a0a0a;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
    border: 1px solid rgba(201, 169, 97, 0.2);
}


/* ========================================
    SCROLL TO TOP
======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 2px solid var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    background: var(--brand-primary);
    color: var(--text-on-gold);
}

/* ========================================
    RESPONSIVE TYPOGRAPHY
======================================== */
@media (max-width: 768px) {
    /* h1 { font-size: 32px !important; }
    h2 { font-size: 28px !important; }
    h3 { font-size: 22px !important; } */
    
    .hero {
        padding: 100px 0 10px;
    }
    
    .product-card {
        margin-bottom: 20px;
    }
    
    .slider-container {
        height: 400px;
    }
}

/* Telegram flot icon */
.telegram-float {
    position: fixed;
    bottom: 110px;
    right: 25px;
    z-index: 1000;
}

.telegram-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0088cc;
    display: flex;
    justify-content: center;
    align-items: center;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(0, 136, 204, 0);
	}
}

.telegram-icon svg {
  fill: #fff;
  width: 30px;
  height: 30px;
}


.telegram-card {
    justify-content: center;
    /* text-align: center; */
}

#services .telegram-icon {
    width: 130px;
    height: 130px;
    margin: 0px auto 20px;
    border-radius: 20px;
    background: linear-gradient(135deg,#0088cc,#00aaff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.telegram-card .card-title {
    margin-bottom: 10px;
}



/* ========================================
    UTILITY CLASSES
======================================== */
.text-yellow { color: var(--brand-primary) !important; }
.bg-yellow { background: var(--brand-primary) !important; }
.bg-yellow-gradient { background: var(--gradient-primary) !important; }
.border-yellow { border-color: var(--brand-primary) !important; }
.shadow-yellow { box-shadow: var(--shadow-yellow) !important; }