/* ======================================
   BYOL R - Modern Industrial Design
   ====================================== */

/* CSS Variables for consistent theming */
:root {
    --primary-gold: #F4C72C;
    --primary-gold-dark: #D4A821;
    --primary-gold-light: #FFD84D;
    --dark-charcoal: #1A1A1A;
    --medium-charcoal: #2D2D2D;
    --light-charcoal: #434343;
    --text-light: #FFFFFF;
    --text-muted: #B0B0B0;
    --gradient-gold: linear-gradient(135deg, #F4C72C 0%, #D4A821 50%, #B8940E 100%);
    --gradient-dark: linear-gradient(180deg, #1A1A1A 0%, #2D2D2D 100%);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 30px rgba(244, 199, 44, 0.3);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-charcoal);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    letter-spacing: 0.02em;
}

/* Utility Classes */
.text-gold {
    color: var(--primary-gold) !important;
}

.bg-gold {
    background: var(--gradient-gold) !important;
}

/* ======================================
   HEADER & NAVIGATION
   ====================================== */

header {
    background: var(--gradient-dark);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-smooth);
    border-bottom: 2px solid transparent;
}

header.scrolled {
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-gold);
    padding: 10px 0;
}

.navbar-brand img {
    height: 50px;
    transition: var(--transition-smooth);
}

header.scrolled .navbar-brand img {
    height: 40px;
}

.sec-link {
    color: var(--text-light);
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 20px !important;
    position: relative;
    transition: var(--transition-smooth);
}

.sec-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-smooth);
}

.sec-link:hover,
.sec-link.active,
.nav-link.sec-link.active {
    color: var(--primary-gold) !important;
}

.sec-link:hover::after,
.sec-link.active::after,
.nav-link.sec-link.active::after {
    width: 80%;
    background: var(--primary-gold);
}

.navbar-toggler {
    border: 2px solid var(--primary-gold);
    padding: 10px;
    width: 50px;
    height: 50px;
    position: relative;
    background: transparent;
    transition: var(--transition-smooth);
}

.navbar-toggler:hover {
    background: rgba(244, 199, 44, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(244, 199, 44, 0.3);
}

.navbar-toggler-icon {
    display: none;
}

/* Custom Hamburger Icon */
.navbar-toggler .hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navbar-toggler .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
    transition: var(--transition-smooth);
    transform-origin: center;
}

/* Animated hamburger on open */
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
}

.lang-dropdown-toggle {
    background: rgba(244, 199, 44, 0.15);
    border: 1px solid var(--primary-gold);
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    color: var(--primary-gold);
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.lang-dropdown-toggle:hover {
    background: rgba(244, 199, 44, 0.25);
}

.lang-dropdown-toggle img {
    width: 24px;
    height: auto;
    border-radius: 3px;
}

.lang-dropdown-toggle i {
    font-size: 10px;
    transition: var(--transition-smooth);
}

.lang-dropdown:hover .lang-dropdown-toggle i {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--medium-charcoal);
    border: 1px solid var(--primary-gold);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 10px;
}

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

.lang-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.lang-dropdown-menu a:hover {
    background: rgba(244, 199, 44, 0.1);
    color: var(--primary-gold);
}

.lang-dropdown-menu a.active {
    color: var(--primary-gold);
    background: rgba(244, 199, 44, 0.15);
}

.lang-dropdown-menu img {
    width: 24px;
    height: auto;
    border-radius: 3px;
}

/* Old lang-flags kept for compatibility */
.lang-flags {
    display: none;
}

/* ======================================
   HERO SECTION
   ====================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-charcoal);
    position: relative;
    padding-top: 120px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(244, 199, 44, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(244, 199, 44, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(244, 199, 44, 0.15);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero h1 .highlight {
    color: var(--primary-gold);
    position: relative;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-gold);
    opacity: 0.3;
    transform: skewX(-15deg);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--gradient-gold);
    color: var(--dark-charcoal);
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-gold);
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(244, 199, 44, 0.5);
    color: var(--dark-charcoal);
}

.hero-cta i {
    font-size: 16px;
    transition: var(--transition-smooth);
}

.hero-cta:hover i {
    transform: translateX(5px);
}

.hero-image {
    position: relative;
    animation: floatAnimation 6s ease-in-out infinite;
}

.hero-image img {
    max-height: 550px;
    width: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(244, 199, 44, 0.2);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 199, 44, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Floating Stats in Hero */
.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 5px;
}

/* ======================================
   SECTION HEADERS
   ====================================== */

.section-header {
    padding: 100px 0 60px;
    background: var(--medium-charcoal);
    text-align: center;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--primary-gold);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ======================================
   PRODUCT SECTION (BYOL R)
   ====================================== */

.product-section {
    padding: 100px 0;
    background: var(--dark-charcoal);
    position: relative;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 80% 50%, rgba(244, 199, 44, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.product-card {
    background: var(--medium-charcoal);
    border-radius: 20px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(244, 199, 44, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.product-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.product-tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-style: italic;
}

.product-image-wrapper {
    position: relative;
    text-align: center;
    padding: 40px;
}

.product-image-wrapper img {
    max-height: 450px;
    max-width: 100%;
    width: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

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

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 199, 44, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Advantages List */
.advantages-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.advantages-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.advantages-list li:hover {
    padding-left: 10px;
    color: var(--primary-gold);
}

.advantages-list li:last-child {
    border-bottom: none;
}

.advantage-icon {
    width: 40px;
    height: 40px;
    background: rgba(244, 199, 44, 0.15);
    border: 1px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 18px;
    flex-shrink: 0;
}

/* Product Details */
.product-detail-block {
    margin-bottom: 40px;
}

.product-detail-block h3 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-detail-block h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--primary-gold);
    border-radius: 2px;
}

.product-detail-block p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* Product Gallery */
.product-gallery {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-gold);
    font-weight: 700;
}

.gallery-item {
    background: var(--dark-charcoal);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    height: 100%;
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.gallery-item p {
    color: var(--text-light);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Statistics Banner */
.stats-banner {
    background: var(--gradient-gold);
    padding: 60px 0;
    margin-top: 80px;
}

.stats-banner .stat-box {
    text-align: center;
    padding: 20px;
}

.stats-banner .stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-charcoal);
    line-height: 1;
}

.stats-banner .stat-text {
    font-size: 0.9rem;
    color: var(--dark-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 10px;
    font-weight: 600;
}

/* ======================================
   WHY SECTION
   ====================================== */

.why-section {
    padding: 100px 0;
    background: var(--medium-charcoal);
}

.why-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.why-intro p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.9;
}

.risk-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.risk-card {
    background: var(--dark-charcoal);
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.risk-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.risk-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) saturate(100%) invert(79%) sepia(68%) saturate(488%) hue-rotate(356deg) brightness(97%) contrast(97%);
}

.risk-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: var(--dark-charcoal);
    position: relative;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-light);
    margin-bottom: 30px;
}

.solution-text h2 span {
    color: var(--primary-gold);
}

.solution-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.solution-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

/* Certification Badge */
.certification-block {
    background: var(--medium-charcoal);
    border-radius: 20px;
    padding: 60px;
    margin-top: 80px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    border: 1px solid rgba(244, 199, 44, 0.2);
}

.certification-block img {
    max-width: 300px;
    border-radius: 10px;
}

.certification-text h3 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.certification-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ======================================
   ABOUT SECTION
   ====================================== */

.about-section {
    padding: 80px 0;
    background: var(--dark-charcoal);
}

.about-content h3 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

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

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.badge-item {
    background: rgba(244, 199, 44, 0.15);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-item i {
    margin-right: 8px;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

/* ======================================
   FEATURES SECTION
   ====================================== */

.features-section {
    padding: 80px 0;
    background: var(--medium-charcoal);
}

.feature-block {
    background: var(--dark-charcoal);
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-block h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.feature-block h3 i {
    margin-right: 10px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: var(--text-muted);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* Health Benefits */
.health-benefits {
    background: var(--dark-charcoal);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(244, 199, 44, 0.2);
}

.health-benefits h3 {
    color: var(--primary-gold);
}

.health-benefits > p {
    color: var(--text-muted);
}

.benefit-card {
    background: var(--medium-charcoal);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.benefit-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Technical Performance */
.technical-performance h3 {
    color: var(--primary-gold);
}

.performance-block {
    background: var(--dark-charcoal);
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    border-left: 4px solid var(--primary-gold);
}

.performance-block h4 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.performance-block h4 i {
    color: var(--primary-gold);
    margin-right: 10px;
}

.performance-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.performance-block ul li {
    color: var(--text-muted);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.performance-block ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

/* Automation Section */
.automation-section {
    background: var(--dark-charcoal);
    padding: 50px;
    border-radius: 20px;
}

.automation-section h3 {
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.automation-section p {
    color: var(--text-muted);
}

.automation-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

/* ======================================
   PRODUCTS SECTION
   ====================================== */

.products-section {
    padding: 80px 0;
    background: var(--dark-charcoal);
}

/* Promo Banner */
.promo-banner {
    background: var(--gradient-gold);
    padding: 40px 50px;
    border-radius: 20px;
}

.promo-banner h3 {
    color: var(--dark-charcoal);
    margin-bottom: 10px;
}

.promo-banner h3 i {
    margin-right: 10px;
}

.promo-banner p {
    color: var(--dark-charcoal);
    margin: 0;
}

.promo-banner .hero-cta {
    background: var(--dark-charcoal);
    color: var(--primary-gold);
}

.promo-banner .hero-cta:hover {
    background: var(--medium-charcoal);
}

/* ======================================
   PARTNERSHIP SECTION
   ====================================== */

.partnership-section {
    padding: 80px 0;
    background: var(--medium-charcoal);
}

.partner-card {
    background: var(--dark-charcoal);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.partner-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.partner-card i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.partner-card h4 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.partner-card p {
    color: var(--text-muted);
    margin: 0;
}

.conclusion-text .lead {
    font-size: 1.3rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Video Section */
.video-section {
    background: var(--dark-charcoal);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(244, 199, 44, 0.2);
}

.video-section h3 {
    color: var(--primary-gold);
}

.video-section h3 i {
    margin-right: 10px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(244, 199, 44, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* ======================================
   CERTIFICATION SECTION
   ====================================== */

.certification-section {
    padding: 80px 0;
    background: var(--dark-charcoal);
}

/* ======================================
   CONTACT / FOOTER
   ====================================== */

footer {
    background: var(--dark-charcoal);
    padding: 80px 0 40px;
    border-top: 4px solid var(--primary-gold);
}

.footer-brand img {
    height: 60px;
    margin-bottom: 25px;
}

.footer-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info li {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 5px 0;
    transition: var(--transition-smooth);
}

.footer-info li:hover {
    color: var(--text-light);
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 30px;
}

/* Contact Form */
.contact-form .form-label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.contact-form .form-control {
    background: var(--medium-charcoal);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form .form-control:focus {
    background: var(--medium-charcoal);
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(244, 199, 44, 0.1);
    color: var(--text-light);
}

.contact-form textarea {
    resize: none;
    min-height: 140px;
}

.submit-btn {
    background: var(--gradient-gold);
    color: var(--dark-charcoal);
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(244, 199, 44, 0.5);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ======================================
   ANIMATIONS
   ====================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================
   SCROLLBAR
   ====================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-charcoal);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold-light);
}

/* ======================================
   SELECTION
   ====================================== */

::selection {
    background: var(--primary-gold);
    color: var(--dark-charcoal);
}
