:root {

    /* Backgrounds */
    --bg-main: #0D0D0D;
    /* Pure Black */
    --bg-secondary: #1A1A1A;
    /* Deep Charcoal */
    --bg-light: #FFFDE7;
    /* Light Yellow Cream */
    --bg-glass: rgba(13, 13, 13, 0.75);

    /* Primary Accents */
    --saffron: #FF6B00;
    /* Deep Saffron */
    --saffron-light: #FF8C42;
    /* Light Saffron */
    --yellow: #FFB800;
    /* Premium Gold Yellow */
    --yellow-light: #FFD966;
    /* Soft Yellow */
    --light-yellow: #FFFDE7;
    /* Cream / Light Yellow */

    /* Green Accent */
    --green: #5DBB63;
    /* Light Green */
    --green-light: #8ED870;
    /* Soft Light Green */
    --green-glow: rgba(93, 187, 99, 0.3);

    /* Legacy aliases (for backward compat) */
    --accent-blue: #FF6B00;
    /* Saffron as primary */
    --accent-blue-glow: rgba(255, 107, 0, 0.35);
    --accent-green: #5DBB63;
    /* Light Green as secondary */

    /* Text */
    --text-primary: #FFFFFF;
    --text-dark: #0D0D0D;
    --text-secondary: #A8A8A8;
    --text-muted: #5A5A5A;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Effects */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --glass-border: 1px solid rgba(255, 107, 0, 0.15);
    --glass-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);

    /* Gradients */
    --grad-saffron: linear-gradient(135deg, #FF6B00 0%, #FFB800 100%);
    --grad-green: linear-gradient(135deg, #5DBB63 0%, #8ED870 100%);
    --grad-hero: linear-gradient(135deg, #0D0D0D 0%, #1A1200 50%, #0D0D0D 100%);
    --grad-gold: linear-gradient(90deg, #FF6B00, #FFB800, #5DBB63);
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #cbd5e1;
    background-color: #0a0f1c;
    color: #f8fafc;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    color: #111827;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 92%;
    max-width: 1536px;
    margin: 0 auto;
}

.highlight {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================================
   SEARCH OVERLAY
   ========================================= */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 15vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-box-container {
    width: 90%;
    max-width: 700px;
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.search-overlay.active .search-box-container {
    transform: translateY(0);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.search-icon-inner {
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-right: 15px;
}

#search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
    background: transparent;
}

#search-input::placeholder {
    color: #a0aec0;
    font-weight: 300;
}

.close-search {
    font-size: 2.5rem;
    color: #a0aec0;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.close-search:hover {
    color: #ff3333;
}

.search-results {
    max-height: 50vh;
    overflow-y: auto;
    background: #fff;
}

.search-result-item {
    display: block;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    text-decoration: none;
    transition: background 0.2s;
}

.search-result-item:hover {
    background: #f4f7f6;
}

.search-result-item h4 {
    color: var(--accent-blue);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.search-result-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.no-results {
    padding: 30px;
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    font-family: var(--font-heading);
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent-blue), #FF3300);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-blue-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 103, 31, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
}

.btn-outline:hover {
    background: var(--accent-blue);
    color: #000;
    box-shadow: 0 0 15px var(--accent-blue-glow);
}

/* =========================================
   DROPDOWN MENU
   ========================================= */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 220px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: var(--border-radius-md);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu,
.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.dropdown-link:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--accent-blue);
    padding-left: 25px;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 15, 28, 0.85);
    /* Obsidian Glass */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 153, 51, 0.15);
    /* Sapphire glow line */
    transition: var(--transition);
}

.top-bar {
    background: linear-gradient(90deg, #1f2937 0%, #FF9933 50%, #1f2937 100%);
    /* Sapphire Premium Gradient */
    color: #ffffff;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Ticker Animation */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    white-space: nowrap;
}

.ticker {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 25s linear infinite;
}

.ticker:hover {
    animation-play-state: paused;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

.main-header {
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled .main-header {
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--accent-blue);
    /* Deep Blue */
}

.logo img {
    height: 45px;
    width: auto;
    border-radius: 50%;
}

.logo-sub {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 400;
    margin-left: 5px;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-list li {
    white-space: nowrap;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: #cbd5e1;
    /* Dark text for light navbar */
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #FF671F;
    /* Royal Blue */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF671F;
    /* Premium Gold */
    transition: width 0.3s ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-nav {
    background: linear-gradient(135deg, #FF671F 0%, #FF9933 100%);
    color: #fff;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 103, 31, 0.2);
    border: none;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 103, 31, 0.4);
    background: linear-gradient(135deg, #111827 0%, #FF671F 100%);
    color: #fff;
}

.header-icon {
    font-size: 1.2rem;
    color: #cbd5e1;
    cursor: pointer;
    transition: color 0.3s;
}

.header-icon:hover {
    color: var(--accent-blue);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 30px;
    color: #f8fafc;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-phone:hover {
    background: #fff;
    color: var(--accent-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.phone-icon {
    color: var(--accent-blue);
    font-size: 1.1rem;
}

.mobile-only-btn {
    display: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #333;
    /* Dark bars */
}

/* Fix Hero padding to account for taller header */
.hero {
    padding-top: 100px;
}


/* =========================================
   HERO SECTION (SPLIT LAYOUT)
   ========================================= */
.hero {
    min-height: 85vh;
    padding-top: 100px;
    /* Offset for header */
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at right, rgba(255, 103, 31, 0.08) 0%, transparent 60%);
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-image-area {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-size: 1.2rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--text-primary);
    animation: fadeUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeUp 1s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 20px;
    animation: fadeUp 1s ease-out 0.4s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   INNER PAGES HERO SECTION
   ========================================= */
.inner-hero {
    height: 40vh;
    min-height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('assets/hero-bg.png') no-repeat center center/cover;
    margin-bottom: 20px;
}

.inner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 15, 22, 0.95) 0%, rgba(10, 15, 22, 0.7) 100%);
    z-index: 1;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    margin-top: 60px;
    /* Offset for sticky header */
}

.inner-hero-title {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: fadeUp 0.8s ease-out;
}

.inner-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    animation: fadeUp 0.8s ease-out 0.2s both;
}

/* =========================================
   SECTIONS & TYPOGRAPHY
   ========================================= */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* =========================================
   PRODUCTS SECTION (PREMIUM CARDS)
   ========================================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: #111827;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 103, 31, 0.08);
    border-color: rgba(255, 103, 31, 0.1);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-blue);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 103, 31, 0.3);
}

.product-badge.accent {
    background: var(--accent-green);
    box-shadow: 0 4px 10px rgba(0, 179, 0, 0.3);
}

.product-details {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-details h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.product-details p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.product-specs {
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.product-specs li {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.product-specs .icon {
    margin-right: 8px;
    font-size: 1rem;
}

.product-card .btn {
    width: 100%;
    margin-top: auto;
}

/* =========================================
   ABOUT SECTION (SPLIT LAYOUT)
   ========================================= */
.about {
    background: #111827;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    text-align: left;
    background: #f8f9fa;
    padding: 25px;
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--accent-blue);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 600;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: #05080b;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand,
.footer-links,
.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 15px;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-blue);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent-blue);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
   ========================================= */
@media screen and (max-width: 768px) {
    .nav-list {
        position: absolute;
        top: 100%;
        left: -100%;
        flex-direction: column;
        background: var(--bg-secondary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
        padding: 20px 0;
    }

    .nav-list.active {
        left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .stats {
        gap: 30px;
    }
}

/* =========================================
   CONTACT FORM
   ========================================= */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 10px rgba(255, 103, 31, 0.2);
}

.contact-form button {
    width: 100%;
}

.form-status {
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
}

.form-status.success {
    color: var(--accent-green);
}

.form-status.error {
    color: #ff3333;
}



/* =========================================
   ADDITIONAL RESPONSIVENESS FIXES
   ========================================= */
@media screen and (max-width: 768px) {

    /* Fix Hero Sections and Grids */
    .hero .container,
    div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 30px !important;
    }

    .hero-content {
        margin: 0 auto;
    }

    /* Fix Footer */
    .footer-container,
    .footer-links {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center;
    }

    .footer-brand,
    .footer-links>div,
    .footer-contact {
        flex: unset !important;
        width: 100% !important;
    }

    .footer-brand p {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Fix Newsletter */
    .newsletter-form,
    div[style*="display: flex; justify-content: center; max-width: 500px"] {
        flex-direction: column !important;
    }

    .newsletter-form input {
        border-radius: 30px !important;
        text-align: center;
    }

    .newsletter-form button {
        border-radius: 30px !important;
        width: 100%;
        margin-top: 10px;
    }
}


/* =========================================
   HEADER MOBILE FIXES
   ========================================= */
@media screen and (max-width: 768px) {
    .desktop-only-btn {
        display: none !important;
    }

    .header-phone .phone-text {
        display: none;
    }

    .header-phone {
        padding: 8px !important;
        border-radius: 50% !important;
        justify-content: center;
        width: 40px;
        height: 40px;
    }

    .header-actions {
        gap: 15px !important;
    }

    .logo {
        font-size: 1.4rem !important;
    }
}


/* =========================================
   OVERLAP FIXES
   ========================================= */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }

    .inner-hero-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }

    .logo {
        font-size: 1.2rem !important;
        gap: 5px !important;
    }

    .logo-sub {
        font-size: 1rem !important;
        margin-left: 3px !important;
    }

    .logo img {
        height: 35px !important;
    }
}


/* =========================================
   PREMIUM LOGO TEXT
   ========================================= */
.logo-text-iyans {
    background: linear-gradient(135deg, #FF671F 0%, #FF9933 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.logo-text-industries {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #94a3b8;
    /* Slate */
    font-size: 0.95rem;
    margin-left: 8px;
    white-space: nowrap;
}

/* Footer variant */
.footer-iyans {
    background: linear-gradient(135deg, #ffffff 0%, #bbbbbb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-industries {
    color: #999;
}

@media screen and (max-width: 768px) {
    .logo-text-iyans {
        letter-spacing: 1px;
    }

    .logo-text-industries {
        letter-spacing: 2px;
        font-size: 0.9rem;
        margin-left: 5px;
    }
}


/* =========================================
   SPLIT SECTION GRID
   ========================================= */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

@media screen and (max-width: 900px) {
    .split-section {
        grid-template-columns: 1fr;
    }
}


/* Dark Mode Overrides */
body {
    background-color: #0a0f1c !important;
    color: #f8fafc !important;
}

.premium-card.dark-mode-card {
    background: rgba(31, 41, 55, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

.premium-card.dark-mode-card h3 {
    color: #f8fafc !important;
}

/* =========================================
   PREMIUM ABOUT PAGE ENHANCEMENTS
   ========================================= */

.section-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.text-accent {
    color: var(--accent-green);
}

.premium-about {
    gap: 80px;
}

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

.glass-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-left: none !important;
    position: relative;
    overflow: hidden;
    padding: 30px !important;
    text-align: center !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 103, 31, 0.3) !important;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.stat-icon {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.premium-image-reveal {
    position: relative;
    padding: 20px;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--accent-blue);
    filter: blur(100px);
    opacity: 0.15;
    z-index: 0;
}

.about-main-img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    aspect-ratio: 4/5;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--accent-blue), #FF671F);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(255, 103, 31, 0.3);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
}

.exp-years {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.exp-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Mission & Vision */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 103, 31, 0.2);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 103, 31, 0.1);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    margin-bottom: 25px;
}

.mv-card h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.mv-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Core Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    background: rgba(31, 41, 55, 0.8);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Manufacturing */
.manufacturing {
    background: #0a0f1c;
    /* Darker bg */
}

.manufacturing-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-list {
    margin-top: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #cbd5e1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.large {
    grid-column: 1 / -1;
    height: 250px;
}

.gallery-item:not(.large) {
    height: 200px;
}

/* Premium CTA */
.premium-cta {
    position: relative;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=1920') center/cover fixed;
    padding: 120px 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 28, 0.85);
    backdrop-filter: blur(5px);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media screen and (max-width: 992px) {
    .premium-stats {
        grid-template-columns: 1fr;
    }

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

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .manufacturing-container {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        bottom: 10px;
        left: 10px;
        padding: 15px;
    }

    .exp-years {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
    }
}