:root {
    --bg-black: #0B0B0B;
    --bg-darker: #050505;
    --accent-yellow: #F4B400;
    --accent-glow: rgba(244, 180, 0, 0.3);
    --text-white: #FFFFFF;
    --text-gray: #A0A0A0;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: var(--accent-yellow);
    box-shadow: 0 0 25px var(--accent-glow);
    transform: translateY(-5px);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding { padding: 80px 0; }
.bg-darker { background-color: var(--bg-darker); }
.text-center { text-align: center; }
.highlight { color: var(--accent-yellow); }
.sub-title { color: var(--accent-yellow); font-weight: 600; letter-spacing: 2px; font-size: 14px; text-transform: uppercase; }
.section-heading { font-size: 36px; margin-top: 10px; font-weight: 700; }
.text-gradient {
    background: linear-gradient(135deg, #FFFFFF, var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background-color: var(--accent-yellow);
    color: #000;
}
.btn-primary:hover {
    background-color: #ffd000;
    box-shadow: 0 0 20px var(--accent-glow);
}
.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--glass-border);
}
.btn-outline:hover {
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

/* Navbar */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 800; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.logo-icon { color: var(--accent-yellow); }
.nav-menu ul { display: flex; list-style: none; gap: 25px; }
.nav-menu a { color: var(--text-white); text-decoration: none; font-weight: 500; transition: color 0.3s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--accent-yellow); }

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: radial-gradient(circle at center, #1a1500 0%, #0b0b0b 70%);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 850px; }
.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(244, 180, 0, 0.1);
    border: 1px solid var(--accent-yellow);
    border-radius: 20px;
    color: var(--accent-yellow);
    font-size: 14px;
    margin-bottom: 20px;
}
.hero-title { font-size: 52px; line-height: 1.2; margin-bottom: 20px; font-weight: 800; }
.hero-subtitle { color: var(--text-gray); font-size: 18px; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 15px; justify-content: center; }

/* Marquee Bar */
.marquee-bar {
    background: var(--accent-yellow);
    color: #000;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-content { display: flex; gap: 50px; font-weight: 700; animation: marquee 15s linear infinite; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }

/* Stats */
.stat-card { text-align: center; }
.stat-icon { font-size: 40px; color: var(--accent-yellow); margin-bottom: 15px; }
.stat-number { font-size: 44px; font-weight: 800; color: #fff; }
.stat-label { color: var(--text-gray); font-size: 14px; }

/* Footer */
.footer { background: var(--bg-darker); border-top: 1px solid var(--glass-border); padding-top: 60px; }
.footer-col h4 { margin-bottom: 20px; color: var(--accent-yellow); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--text-gray); text-decoration: none; transition: 0.3s; }
.footer-col a:hover { color: var(--accent-yellow); }
.footer-bottom { padding: 25px 0; border-top: 1px solid var(--glass-border); margin-top: 40px; color: var(--text-gray); }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* ==========================================
   SERVICES PAGE STYLES (Ծառայությունների էջ)
   ========================================== */

.services-detail {
    background-color: var(--bg-black);
    position: relative;
}

/* Իկոնայի կլոր շրջանակը */
.service-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(244, 180, 0, 0.1);
    border: 1px solid var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

/* Hover էֆեկտ՝ քարտի վրա մկնիկը պահելիս */
.glass-card:hover .service-icon-box {
    background: var(--accent-yellow);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px var(--accent-glow);
}

.glass-card:hover .service-icon-box .service-icon {
    color: #000; /* Hover-ի ժամանակ իկոնան դառնում է սև */
}

.service-icon {
    font-size: 30px;
    color: var(--accent-yellow);
    transition: color 0.3s ease;
}

/* Վերնագրեր և տեքստեր */
.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-white);
}

.service-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Ծառայության առավելությունների ցուցակը (Checklist) */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    font-size: 14px;
    color: #E0E0E0;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list li i {
    color: var(--accent-yellow);
    font-size: 14px;
}

/* Spacing Helper Classes */
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
/* ==========================================
   PRICES PAGE STYLES (Գների էջ)
   ========================================== */
.prices-section {
    background-color: var(--bg-black);
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 25px;
}

/* Ամենապահանջված քարտի առանձնացված glow էֆեկտը */
.highlight-card {
    border-color: var(--accent-yellow);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: scale(1.03);
}

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-yellow);
    color: #000;
    font-weight: 800;
    font-size: 12px;
    padding: 5px 15px;
    border-radius: 20px;
    text-transform: uppercase;
}

.price-icon {
    font-size: 42px;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.price-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-desc {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 38px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.price-amount span {
    font-size: 16px;
    color: var(--accent-yellow);
    font-weight: 600;
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.price-features li {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li i {
    color: var(--accent-yellow);
}

/* Custom Table Styles */
.price-table-box {
    padding: 30px;
}

.table-heading {
    font-size: 22px;
    font-weight: 700;
}

.table-responsive {
    overflow-x: auto;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    text-align: left;
}

.custom-table th, .custom-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--glass-border);
}

.custom-table th {
    color: var(--accent-yellow);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.custom-table td {
    color: #e0e0e0;
    font-size: 15px;
}

.price-tag {
    background: rgba(244, 180, 0, 0.15);
    color: var(--accent-yellow);
    border: 1px solid var(--accent-yellow);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.free-tag {
    background: rgba(0, 230, 118, 0.15);
    color: #00E676;
    border-color: #00E676;
}

.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
/* ==========================================
   PARTNERS PAGE STYLES (Գործընկերների էջ)
   ========================================== */

.category-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.partner-card {
    text-align: center;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.partner-icon {
    font-size: 40px;
    color: var(--accent-yellow);
    transition: transform 0.3s ease, color 0.3s ease;
}

.partner-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
}

/* Hover էֆեկտ՝ դեղին glow և մեծացում */
.partner-card:hover {
    border-color: var(--accent-yellow);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-8px) scale(1.03);
}

.partner-card:hover .partner-icon {
    transform: scale(1.15);
}
/* ==========================================
   CONTACT PAGE STYLES (Կոնտակտային էջ)
   ========================================== */

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 25px;
}

.contact-icon {
    font-size: 28px;
    color: var(--accent-yellow);
    margin-top: 4px;
}

.contact-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-white);
}

.contact-card p {
    color: var(--text-gray);
    font-size: 14px;
}

.contact-form-wrapper {
    padding: 35px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ddd;
    font-size: 14px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-yellow);
    box-shadow: 0 0 10px var(--accent-glow);
    background: rgba(255, 255, 255, 0.08);
}

.w-100 { width: 100%; }
.gap-40 { gap: 40px; }
.mb-30 { margin-bottom: 30px; }
.mt-60 { margin-top: 60px; }
/* ==========================================
   HEADER & HAMBURGER NAVIGATION STYLES
   ========================================== */

/* Navbar Base */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
}

.logo-icon {
    color: var(--accent-yellow);
    font-size: 22px;
}

/* Desktop Navigation Menu */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

/* Underline Animation on Hover */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-yellow);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-yellow);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Hamburger Toggle Button (Hidden on Desktop) */
.mobile-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--accent-yellow);
    font-size: 22px;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: var(--accent-yellow);
    color: #000;
    box-shadow: 0 0 15px var(--accent-glow);
}

/* ==========================================
   MOBILE & TABLET RESPONSIVE MENU
   ========================================== */
@media (max-width: 992px) {
    /* Show Hamburger Button */
    .mobile-toggle {
        display: flex;
    }

    /* Mobile Sidebar Menu Navigation */
    .nav-menu {
        position: fixed;
        top: 75px;
        right: -100%; /* Hidden off-screen */
        width: 300px;
        height: calc(100vh - 75px);
        background: rgba(11, 11, 11, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-left: 1px solid var(--glass-border);
        padding: 40px 30px;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
        overflow-y: auto;
    }

    /* Open Menu State */
    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .nav-menu a {
        font-size: 18px;
        width: 100%;
        display: block;
    }

    .nav-cta .btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .nav-menu {
        width: 100%; /* Full screen menu on small phones */
    }
    
    .nav-cta .btn {
        display: none;
    }
}
/* ==========================================
   MILENIUM GAZ - Full Responsive Stylesheet
   ========================================== */

/* ------------------------------------------
   1. LARGE DESKTOPS & LAPTOPS (Max-width: 1200px)
   ------------------------------------------ */
@media (max-width: 1200px) {
    .container {
        width: 92%;
    }

    .hero-title {
        font-size: 44px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ------------------------------------------
   2. TABLETS & SMALL LAPTOPS (Max-width: 992px)
   ------------------------------------------ */
@media (max-width: 992px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-heading {
        font-size: 30px;
    }

    /* --- Navbar & Mobile Hamburger Menu --- */
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 75px);
        background: rgba(11, 11, 11, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--glass-border);
        padding: 40px 30px;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.9);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .nav-menu a {
        font-size: 18px;
        width: 100%;
        display: block;
    }

    /* --- Hero Section --- */
    .hero-section {
        min-height: auto;
        padding: 140px 0 80px 0 !important;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    /* --- General Layout Grids --- */
    .grid-2, 
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* --- Contact Page Grid --- */
    .contact-section .grid-2 {
        grid-template-columns: 1fr;
    }

    /* --- Highlighted Price Card Reset --- */
    .highlight-card {
        transform: scale(1);
    }
}

/* ------------------------------------------
   3. MOBILE PHONES (Max-width: 768px)
   ------------------------------------------ */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }

    .section-heading {
        font-size: 26px;
    }

    .sub-title {
        font-size: 12px;
    }

    /* --- Hero Section --- */
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    /* --- Grids Collapse to 1 Column --- */
    .grid-2, 
    .grid-3, 
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* --- Partner Cards Grid --- */
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* --- Custom Price Table Responsive --- */
    .price-table-box {
        padding: 20px 15px;
    }

    .custom-table th, 
    .custom-table td {
        padding: 12px 10px;
        font-size: 13px;
    }

    .price-amount {
        font-size: 32px;
    }

    /* --- Contact Form & Cards --- */
    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-card {
        padding: 15px 20px;
    }

    /* --- Live Prices Marquee --- */
    .marquee-content {
        gap: 25px;
        font-size: 13px;
    }
}

/* ------------------------------------------
   4. SMALL PHONES (Max-width: 576px)
   ------------------------------------------ */
@media (max-width: 576px) {
    .container {
        width: 95%;
    }

    .logo {
        font-size: 20px;
    }

    .logo-icon {
        font-size: 18px;
    }

    /* Hide Navigation CTA button on header for small screens */
    .nav-cta .btn {
        display: none;
    }

    /* Mobile Menu Full Width */
    .nav-menu {
        width: 100%;
    }

    .hero-title {
        font-size: 24px;
    }

    .partner-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 36px;
    }

    .footer-content {
        gap: 30px;
    }
}
/* ==========================================
   PERFECT BRAND LOGO & HEADER STYLES
   ========================================== */

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Wrapper */
.logo-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 2px 0;
}

/* WebP Logo Image Styling */
.brand-logo-img {
    height: 52px; /* Իդեալական բարձրություն Header-ի համար */
    width: auto;  /* Aspect ratio-ն չի խախտվում */
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(244, 180, 0, 0.25)); /* Թեթև դեղին glow */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover-ի ժամանակ փայլն ու չափսը մեծանում են */
.logo-brand:hover .brand-logo-img {
    transform: scale(1.06);
    filter: drop-shadow(0 0 16px rgba(244, 180, 0, 0.65));
}

/* Responsive adjustment for mobiles */
@media (max-width: 768px) {
    .brand-logo-img {
        height: 42px; /* Փոքր էկրանների վրա ավելի հարմար չափս */
    }
}