/* ====================================
   ALD Solar - Modern Solar Energy Template
   ==================================== */

/* CSS Variables */
:root {
    --primary-color: #FFA500;
    --primary-dark: #FF8C00;
    --primary-light: #FFB84D;
    --secondary-color: #2C5F8D;
    --secondary-dark: #1E4A6F;
    --secondary-light: #3A7BC8;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* ====================================
   LOADING SCREEN - Modern & Impressive
   ==================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

.loading-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.05) 0%, transparent 50%);
    animation: rotateGradient 20s linear infinite;
}

.loading-screen::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    box-shadow: 0 0 20px var(--primary-color);
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Solar System Animation */
.solar-system {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 60px;
}

/* Central Sun */
.sun-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 10;
}

.sun-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 50%, #FF8C00 100%);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 165, 0, 0.8),
    0 0 80px rgba(255, 165, 0, 0.4),
    inset 0 0 20px rgba(255, 215, 0, 0.5);
    animation: pulseSun 2s ease-in-out infinite;
}

.sun-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 165, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Orbiting Panels */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(255, 165, 0, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 140px;
    height: 140px;
    animation: rotateOrbit 3s linear infinite;
}

.orbit-2 {
    width: 170px;
    height: 170px;
    animation: rotateOrbit 4s linear infinite reverse;
}

.orbit-3 {
    width: 200px;
    height: 200px;
    animation: rotateOrbit 5s linear infinite;
}

.panel {
    position: absolute;
    width: 16px;
    height: 24px;
    background: linear-gradient(135deg, #2C5F8D 0%, #3A7BC8 100%);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(44, 95, 141, 0.6);
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.panel-1 {
    background: linear-gradient(135deg, #FFA500 0%, #FFB84D 100%);
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.8);
    animation: panelGlow 2s ease-in-out infinite;
}

.panel-2 {
    background: linear-gradient(135deg, #2C5F8D 0%, #3A7BC8 100%);
    box-shadow: 0 0 15px rgba(44, 95, 141, 0.8);
    animation: panelGlow 2s ease-in-out infinite 0.5s;
}

.panel-3 {
    background: linear-gradient(135deg, #FF8C00 0%, #FFD700 100%);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.8);
    animation: panelGlow 2s ease-in-out infinite 1s;
}

/* Energy Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    opacity: 0;
    animation: particleFloat 3s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 40%;
    left: 70%;
    animation-delay: 0.5s;
}

.particle:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: 1s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 60%;
    animation-delay: 1.5s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(6) {
    top: 70%;
    left: 40%;
    animation-delay: 2.5s;
}

/* Brand Elements */
.loading-brand {
    position: relative;
}

.brand-name {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 50%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: 3px;
    animation: brandGlow 2s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 165, 0, 0.3);
}

.brand-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 35px;
    text-transform: uppercase;
    animation: fadeInOut 2s ease-in-out infinite;
}

/* Loading Progress Bar */
.loading-progress {
    width: 280px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 20px;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg,
    var(--primary-color) 0%,
    #FFD700 50%,
    var(--primary-color) 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--primary-color);
    animation: progressAnimation 2s ease-in-out infinite;
}

.loading-status {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: dots 1.5s steps(4, end) infinite;
}

/* Animations */
@keyframes pulseSun {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(255, 165, 0, 0.8),
        0 0 80px rgba(255, 165, 0, 0.4),
        inset 0 0 20px rgba(255, 215, 0, 0.5);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 60px rgba(255, 165, 0, 1),
        0 0 100px rgba(255, 165, 0, 0.6),
        inset 0 0 30px rgba(255, 215, 0, 0.7);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes rotateOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes panelGlow {
    0%, 100% {
        opacity: 0.8;
        box-shadow: 0 0 10px rgba(255, 165, 0, 0.6);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(255, 165, 0, 1);
    }
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translate(20px, -30px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(40px, -60px) scale(0);
    }
}

@keyframes brandGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.9;
    }
}

@keyframes progressAnimation {
    0% {
        width: 0%;
        background-position: 0% 50%;
    }
    50% {
        width: 70%;
        background-position: 100% 50%;
    }
    100% {
        width: 100%;
        background-position: 200% 50%;
    }
}

@keyframes rotateGradient {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes dots {
    0%, 20% {
        content: '';
    }
    40% {
        content: '.';
    }
    60% {
        content: '..';
    }
    80%, 100% {
        content: '...';
    }
}

/* Responsive Loading Screen */
@media (max-width: 768px) {
    .solar-system {
        width: 160px;
        height: 160px;
        margin-bottom: 50px;
    }

    .sun-inner {
        width: 60px;
        height: 60px;
    }

    .orbit-1 {
        width: 110px;
        height: 110px;
    }

    .orbit-2 {
        width: 135px;
        height: 135px;
    }

    .orbit-3 {
        width: 160px;
        height: 160px;
    }

    .panel {
        width: 12px;
        height: 18px;
    }

    .brand-name {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .brand-tagline {
        font-size: 14px;
    }

    .loading-progress {
        width: 220px;
    }
}

@media (max-width: 480px) {
    .solar-system {
        width: 140px;
        height: 140px;
        margin-bottom: 40px;
    }

    .sun-inner {
        width: 50px;
        height: 50px;
    }

    .orbit-1 {
        width: 90px;
        height: 90px;
    }

    .orbit-2 {
        width: 110px;
        height: 110px;
    }

    .orbit-3 {
        width: 140px;
        height: 140px;
    }

    .panel {
        width: 10px;
        height: 15px;
    }

    .brand-name {
        font-size: 28px;
    }

    .brand-tagline {
        font-size: 12px;
    }

    .loading-progress {
        width: 180px;
    }
}

/* ====================================
   TOP HEADER (Hidden by default, shown only in mobile)
   ==================================== */
.top-header {
    display: none;
}

/* ====================================
   SLIDER TOP BAR (Inside Slider)
   ==================================== */
.slider-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px) saturate(130%);
    -webkit-backdrop-filter: blur(10px) saturate(130%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-top-bar.hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-items {
    display: flex;
    gap: 25px;
    align-items: center;
}

.contact-items .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.contact-items .contact-item:hover {
    color: var(--primary-color);
}

.social-items {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-items a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.social-items a:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* ====================================
   MAIN HEADER (Inside Slider)
   ==================================== */
.main-header {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(7px) saturate(115%);
    -webkit-backdrop-filter: blur(10px) saturate(130%);
    padding: 15px 0;
}

.main-header.scrolled {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    z-index: 9999;
}

.main-header.scrolled .nav-link {
    color: var(--text-dark);
}

.main-header.scrolled .nav-link:hover,
.main-header.scrolled .nav-link.active {
    color: var(--primary-color);
}

.main-header.scrolled .logo img {
    transform: scale(0.9);
}

.main-header.scrolled .mobile-menu-toggle span {
    background-color: var(--text-dark);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    position: relative;
}

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo visibility control based on header state */
.logo .logo-dark {
    display: block;
    opacity: 1;
}

.logo .logo-light {
    display: none;
    opacity: 0;
}

.main-header.scrolled .logo .logo-dark {
    display: none;
    opacity: 0;
}

.main-header.scrolled .logo .logo-light {
    display: block;
    opacity: 1;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--text-white);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-light);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    padding-top: 5px;
}

.header-contact-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.3px;
}

.main-header.scrolled .header-contact-label {
    color: rgba(31, 41, 55, 0.75);
}

.header-contact-phone {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    transition: var(--transition);
}

.header-contact-phone:hover {
    color: var(--primary-light);
}

.main-header.scrolled .header-contact-phone {
    color: rgba(31, 41, 55, 1);
}

.main-header.scrolled .header-contact-phone:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: var(--transition);
    border-radius: 2px;
}

.main-header.scrolled .mobile-menu-toggle span {
    background-color: var(--text-dark);
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100001;
    padding: 0;
}

/* Hide mobile contact/social on desktop */
.mobile-menu-contact,
.mobile-menu-social {
    display: none;
}

.mobile-menu-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.mobile-menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* ====================================
   BUTTONS
   ==================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--primary-color);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-outline-white:hover {
    background-color: var(--text-white);
    color: var(--primary-color);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ====================================
   HERO SLIDER
   ==================================== */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.5s;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide.fade-out {
    opacity: 0;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    will-change: transform;
}

.slide.active .slide-bg {
    animation: smoothZoom 15s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes smoothZoom {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.35) 0%, rgba(30, 64, 175, 0.25) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    max-width: 750px;
}

.slide-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.slide-title .line {
    display: block;
}

.slide-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.7;
}

.slide-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Slide Animations */
.slide .animate-text {
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .animate-text {
    animation: slideUp 0.8s ease-out forwards;
}

.slide.active .animate-text.delay-1 {
    animation-delay: 0.2s;
}

.slide.active .animate-text.delay-2 {
    animation-delay: 0.4s;
}

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

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 20;
    pointer-events: none;
}

.slider-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.25);
    pointer-events: auto;
}

.slider-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.4);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
    border-color: var(--text-white);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-size: 14px;
    z-index: 20;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ====================================
   STATS SECTION
   ==================================== */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(44, 95, 141, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-card {
    background: var(--bg-white);
    padding: 50px 35px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(255, 165, 0, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 184, 77, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.4s ease;
    position: relative;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
}

.stat-icon svg {
    transition: all 0.3s ease;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card:hover .stat-number {
    transform: scale(1.05);
}

.stat-number::after {
    content: '+';
    color: var(--primary-color);
    margin-left: 4px;
    -webkit-text-fill-color: var(--primary-color);
}

.stat-label {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 80px 0;
    }

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

    .stat-card {
        padding: 40px 30px;
    }

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

    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}

/* ====================================
   SECTION HEADER
   ==================================== */
.section-header {
    margin-bottom: 50px;
}

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

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ====================================
   ABOUT SECTION
   ==================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.badge-content {
    text-align: center;
    color: var(--text-white);
}

.badge-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 14px;
    margin-top: 5px;
}

.about-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-features {
    margin-bottom: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-dark);
}

.about-features li svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

/* ====================================
   SERVICES SECTION
   ==================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(255, 165, 0, 0.2);
    border-color: var(--primary-color);
}

.service-number {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 72px;
    font-weight: 800;
    color: rgba(255, 165, 0, 0.1);
    line-height: 1;
    z-index: 1;
    transition: all 0.5s ease;
}

.service-card:hover .service-number {
    color: rgba(255, 165, 0, 0.2);
    transform: scale(1.1);
}

.service-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.15);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(44, 95, 141, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: all 0.5s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 40px;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-card:hover .service-icon {
    transform: scale(1) rotate(360deg);
}

.service-content {
    padding: 35px 30px;
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-color);
}

.service-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 15px;
    color: var(--primary-dark);
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-number {
        font-size: 56px;
    }
}

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

.product-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-content {
    padding: 30px;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.product-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-specs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.product-specs li {
    background-color: var(--bg-light);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
}

/* ====================================
   PROJECTS SECTION
   ==================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.project-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(30, 58, 138, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    color: var(--text-white);
    text-align: center;
}

.project-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.project-meta {
    font-size: 14px;
    opacity: 0.9;
}

/* ====================================
   ARTICLES SECTION
   ==================================== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.article-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.article-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.article-content {
    padding: 30px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.article-title {
    margin-bottom: 15px;
}

.article-title a {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    transition: var(--transition);
}

.article-title a:hover {
    color: var(--primary-color);
}

.article-excerpt {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
}

.article-link:hover {
    gap: 12px;
}

/* ====================================
   CTA SECTION
   ==================================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(245, 158, 11, 0.85) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

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

/* ====================================
   CONTACT SECTION
   ==================================== */
.contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: fit-content;
}

.contact-card {
    background: var(--bg-white);
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 165, 0, 0.15);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 184, 77, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
}

.contact-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.contact-card-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-card-text a {
    color: var(--text-light);
    transition: var(--transition);
    display: inline-block;
}

.contact-card-text a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--text-white);
    padding: 35px 40px;
    text-align: center;
}

.form-header h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 15px;
    opacity: 0.95;
}

.contact-form {
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(255, 165, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 45px;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.privacy-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.privacy-link:hover {
    color: var(--primary-dark);
}

.btn-block {
    width: 100%;
    margin-top: 10px;
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 15px;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    opacity: 0.9;
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact a {
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--primary-light);
}

/* ====================================
   BACK TO TOP BUTTON
   ==================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* ====================================
   FLOAT BUTTONS (WhatsApp & Phone)
   ==================================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    z-index: 998;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.phone-float {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    z-index: 998;
    animation: pulse-phone 2s infinite;
}

.phone-float:hover {
    transform: scale(1.1);
    background-color: var(--primary-dark);
}

@keyframes pulse-phone {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 165, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
    }
}

/* ====================================
   SCROLL ANIMATIONS
   ==================================== */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

/* Tablet */
@media (max-width: 992px) {
    .section-title {
        font-size: 36px;
    }

    .slide-title {
        font-size: 42px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        align-items: flex-start;
        gap: 20px;
        overflow-y: auto;
        z-index: 99999;
    }

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

    .nav-menu .nav-link {
        color: var(--text-dark);
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 100000;
        position: relative;
    }

    .mobile-menu-close {
        display: block;
    }

    /* Mobile Menu Contact Section */
    .mobile-menu-contact {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 10px;
        width: 100%;
    }

    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--text-dark);
        font-size: 14px;
        padding: 8px 0;
        transition: var(--transition);
    }

    .mobile-contact-item:hover {
        color: var(--primary-color);
    }

    .mobile-contact-item svg {
        flex-shrink: 0;
        stroke: var(--primary-color);
    }

    .mobile-contact-item span {
        word-break: break-all;
    }

    /* Mobile Menu Social Section */
    .mobile-menu-social {
        display: flex;
        gap: 15px;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
        margin-top: auto;
        width: 100%;
        justify-content: center;
    }

    .mobile-menu-social a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--bg-light);
        border-radius: 50%;
        transition: var(--transition);
        color: var(--text-dark);
    }

    .mobile-menu-social a:hover {
        background-color: var(--primary-color);
        color: white;
        transform: translateY(-3px);
    }

    .header-contact {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-cards {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

    /* Slider butonlarını daha içeride konumlandır */
    .slider-controls {
        padding: 0 25px;
    }

    .slider-btn {
        width: 48px;
        height: 48px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

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

    .section-description {
        font-size: 16px;
    }

    .top-header {
        display: none;
    }

    .main-header {
        top: 0;
        z-index: 9999;
    }

    .slider-top-bar {
        display: none;
    }

    .slide-title {
        font-size: 32px;
    }

    .slide-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .slide-content {
        padding: 0 15px;
        max-width: 100%;
        width: 95%;
    }

    .slide-actions {
        flex-direction: column;
        gap: 12px;
    }

    .slider-controls {
        padding: 0 15px;
    }

    .slider-btn {
        width: 44px;
        height: 44px;
        background-color: rgba(255, 255, 255, 0.2);
    }

    .slider-btn svg {
        width: 20px;
        height: 20px;
    }

    .slider-dots {
        bottom: 100px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .scroll-indicator {
        bottom: 30px;
        font-size: 12px;
    }

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

    .services-grid,
    .products-grid,
    .projects-grid,
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .cta-title {
        font-size: 28px;
    }

    .cta-description {
        font-size: 16px;
    }

    .cta-features {
        flex-direction: column;
        gap: 20px;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .back-to-top {
        right: 15px;
        bottom: 80px;
        width: 45px;
        height: 45px;
    }

    .whatsapp-float,
    .phone-float {
        left: 15px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float {
        bottom: 15px;
    }

    .phone-float {
        bottom: 75px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .form-header {
        padding: 30px 25px;
    }

    .form-header h3 {
        font-size: 22px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .slide-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .section-description {
        font-size: 15px;
    }

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

    .stat-card {
        padding: 35px 25px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

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

    /* Hide large decorative elements on small screens */
    .stats-section::before {
        width: 300px;
        height: 300px;
        opacity: 0.5;
    }

    .stats-section::after {
        width: 250px;
        height: 250px;
        opacity: 0.5;
    }

    /* Optimize grid gaps */
    .services-grid,
    .products-grid,
    .projects-grid,
    .articles-grid {
        gap: 15px;
    }

    /* Product/Service cards */
    .product-content,
    .service-content,
    .project-content,
    .article-content {
        padding: 20px;
    }

    .product-title,
    .service-title,
    .project-title,
    .article-title {
        font-size: 20px;
    }

    /* About section */
    .about-text h3 {
        font-size: 24px;
    }

    .about-badge {
        bottom: 15px;
        right: 15px;
        padding: 20px;
    }

    .badge-number {
        font-size: 28px;
    }

    /* Footer */
    .footer-brand h3 {
        font-size: 20px;
    }

    .footer-widget h4 {
        font-size: 16px;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Optimize for retina displays */
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


.page-hero {
    position: relative;
    width: 100%;
    background: transparent;
}

.page-hero .sub-page-top-bar {
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
}

.page-hero .sub-page-top-bar .contact-item {
    color: #374151;
}

.page-hero .sub-page-top-bar .contact-item svg {
    stroke: #374151;
}

.page-hero .sub-page-top-bar .contact-item:hover {
    color: #f59e0b;
}

.page-hero .sub-page-top-bar .contact-item:hover svg {
    stroke: #f59e0b;
}

.page-hero .sub-page-top-bar .social-items a svg {
    fill: #374151;
}

.page-hero .sub-page-top-bar .social-items a:hover svg {
    fill: #f59e0b;
}

.page-hero .sub-page-header {
    position: relative;
    z-index: 100;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.page-hero .sub-page-header .navbar {
    padding: 1rem 0;
}

.page-hero .sub-page-header .nav-link {
    color: #1f2937;
    font-weight: 500;
    position: relative;
}

.page-hero .sub-page-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f59e0b;
    transition: width 0.3s ease;
}

.page-hero .sub-page-header .nav-link:hover::after,
.page-hero .sub-page-header .nav-link.active::after {
    width: 100%;
}

.page-hero .sub-page-header .nav-link:hover,
.page-hero .sub-page-header .nav-link.active {
    color: #f59e0b;
}

.page-hero .sub-page-header .btn-primary {
    background: #f59e0b;
    color: white;
    border: 2px solid #f59e0b;
}

.page-hero .sub-page-header .btn-primary:hover {
    background: #d97706;
    border-color: #d97706;
}

.page-hero .sub-page-header .header-contact-label {
    color: #6b7280;
    font-size: 0.85rem;
}

.page-hero .sub-page-header .header-contact-phone {
    color: #f59e0b;
    font-weight: 600;
}

.page-hero .sub-page-header .mobile-menu-toggle span {
    background: #374151;
}

.page-hero .sub-page-header .mobile-menu-close span {
    background: #374151;
}

.page-hero-content {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1f2937;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.page-hero-text {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease;
}

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

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

.breadcrumb-link svg {
    flex-shrink: 0;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.breadcrumb-current {
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 8px;
    font-weight: 500;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Quick Contact Section */
.quick-contact-section {
    padding: 80px 0 60px;
    background: #f9fafb;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.quick-contact-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.quick-contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-contact-icon svg {
    stroke: white;
}

.quick-contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.quick-contact-card a {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.quick-contact-card a:hover {
    color: #d97706;
}

.quick-contact-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0 80px;
    background: white;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-card {
    background: #f9fafb;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-form-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    text-align: center;
}

.contact-form-description {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-large svg {
    stroke: currentColor;
}

/* Map Section */
.contact-map-section {
    padding: 80px 0;
    background: #f9fafb;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 3rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
}

@media (max-width: 768px) {
    .page-hero-content {
        min-height: 300px;
        padding: 100px 0 60px;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .breadcrumb-nav {
        font-size: 0.9rem;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .breadcrumb-link,
    .breadcrumb-current {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }

    .breadcrumb-link svg {
        width: 14px;
        height: 14px;
    }

    .quick-contact-section {
        padding: 60px 0 40px;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .quick-contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-form-card {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .map-container iframe {
        height: 350px;
    }
}

/* Page Hero Section */
.page-hero {
    position: relative;
    width: 100%;
    background: transparent;
}

/* Sub-page top bar styling */
.page-hero .sub-page-top-bar {
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
}

.page-hero .sub-page-top-bar .contact-item {
    color: #374151;
}

.page-hero .sub-page-top-bar .contact-item svg {
    stroke: #374151;
}

.page-hero .sub-page-top-bar .contact-item:hover {
    color: #f59e0b;
}

.page-hero .sub-page-top-bar .contact-item:hover svg {
    stroke: #f59e0b;
}

.page-hero .sub-page-top-bar .social-items a svg {
    fill: #374151;
}

.page-hero .sub-page-top-bar .social-items a:hover svg {
    fill: #f59e0b;
}

/* Sub-page main header styling */
.page-hero .sub-page-header {
    position: relative;
    z-index: 100;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.page-hero .sub-page-header .navbar {
    padding: 1rem 0;
}

.page-hero .sub-page-header .nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.page-hero .sub-page-header .mobile-menu-toggle {
    display: none;
}

.page-hero .sub-page-header .mobile-menu-close {
    display: none;
}

.page-hero .sub-page-header .nav-link {
    color: #1f2937;
    font-weight: 500;
    position: relative;
}

.page-hero .sub-page-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f59e0b;
    transition: width 0.3s ease;
}

.page-hero .sub-page-header .nav-link:hover::after,
.page-hero .sub-page-header .nav-link.active::after {
    width: 100%;
}

.page-hero .sub-page-header .nav-link:hover,
.page-hero .sub-page-header .nav-link.active {
    color: #f59e0b;
}

.page-hero .sub-page-header .btn-primary {
    background: #f59e0b;
    color: white;
    border: 2px solid #f59e0b;
}

.page-hero .sub-page-header .btn-primary:hover {
    background: #d97706;
    border-color: #d97706;
}

.page-hero .sub-page-header .header-contact-label {
    color: #6b7280;
    font-size: 0.85rem;
}

.page-hero .sub-page-header .header-contact-phone {
    color: #f59e0b;
    font-weight: 600;
}

.page-hero .sub-page-header .mobile-menu-toggle span {
    background: #374151;
}

.page-hero .sub-page-header .mobile-menu-close span {
    background: #374151;
}

.page-hero-content {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1f2937;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero-text {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.page-hero-text {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease;
}

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

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

.breadcrumb-link svg {
    flex-shrink: 0;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.breadcrumb-current {
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}


@media (max-width: 992px) {
    .page-hero .sub-page-header .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        align-items: flex-start;
        gap: 20px;
        overflow-y: auto;
        z-index: 99999;
    }

    .page-hero .sub-page-header .nav-menu.active {
        right: 0;
    }

    .page-hero .sub-page-header .mobile-menu-toggle {
        display: flex;
        z-index: 100000;
    }

    .page-hero .sub-page-header .mobile-menu-close {
        display: block;
    }

    .page-hero .sub-page-header .header-contact {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .page-hero .sub-page-header .navbar {
        padding: 0.75rem 0;
    }

    .page-hero .sub-page-header .nav-menu {
        background: white;
    }

    .page-hero .sub-page-header .nav-menu .nav-link {
        padding: 1rem;
        border-bottom: 1px solid #f3f4f6;
    }

    .page-hero .sub-page-header .nav-menu .nav-link::after {
        display: none;
    }

    .page-hero-content {
        min-height: 300px;
        padding: 100px 0 60px;
    }

    .breadcrumb-nav {
        font-size: 0.9rem;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .breadcrumb-link,
    .breadcrumb-current {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }

    .breadcrumb-link svg {
        width: 14px;
        height: 14px;
    }
}

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

.main-container {
    overflow: hidden;
    height: 100%;
}

ul#nav-menu {
    z-index: 999999;
}

/* ====================================
   Logo Control for Sub-Pages
   ==================================== */
/* Sub-page header logo control - white background, show light logo */
.page-hero .sub-page-header .logo .logo-dark {
    display: none !important;
    opacity: 0 !important;
}

.page-hero .sub-page-header .logo .logo-light {
    display: block !important;
    opacity: 1 !important;
}
