/* Custom CSS for G-Tech Header */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

/* Sticky header styles */
.header-section.sticky {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background: transparent;
    min-height: 80px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-link {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
    text-decoration: none;
    color: #667eea;
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

/* Sticky web menu logo */
.web-menu-section.sticky .logo-text {
    color: #000000;
    text-shadow: none;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: white !important;
    font-weight: 600;
    padding: 1rem 1.5rem !important;
    border-radius: 6px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    min-height: 50px;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* Sticky web menu navigation links */
.web-menu-section.sticky .navbar-nav .nav-link {
    color: #000000 !important;
    text-shadow: none;
}

.web-menu-section.sticky .navbar-nav .nav-link:hover {
    color: #000000 !important;
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Dropdown Arrow - Force inline positioning */
.dropdown-toggle::after {
    margin-left: 5px !important;
    border-top: 0.3em solid white;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
    position: static !important;
    display: inline-block !important;
    vertical-align: middle !important;
    float: none !important;
}

/* Sticky header dropdown arrows */
.header-section.sticky .dropdown-toggle::after {
    border-top: 0.3em solid #333;
}

.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Override Bootstrap dropdown positioning */
.navbar-nav .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    transform: none !important;
}

/* Dropdown Styles */
.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: #333;
    font-weight: 500;
    transition: all 0.15s ease;
    border-radius: 0;
    margin: 0;
    position: relative;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #2c3e50;
    transform: translateX(5px);
}

/* Dropdown show/hide - Show on hover */
.dropdown:hover .dropdown-menu,
.dropdown.show .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Create larger hover area for dropdown */
.dropdown {
    position: relative;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
    z-index: 1000;
}

/* Dropdown Arrow - Force inline positioning */
.dropdown-toggle::after {
    margin-left: 5px !important;
    border-top: 0.3em solid white;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
    position: static !important;
    display: inline-block !important;
    vertical-align: middle !important;
    float: none !important;
}

/* Sticky header dropdown arrows */
.header-section.sticky .dropdown-toggle::after {
    border-top: 0.3em solid #333;
}

.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Override Bootstrap dropdown positioning */
.navbar-nav .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    transform: none !important;
}

/* Dropdown Styles */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    margin-top: 1rem;
    background: white;
    border: 1px solid rgba(102, 126, 234, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;
}

.dropdown-item {
    padding: 1rem 2rem;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 0.5rem;
    position: relative;
    min-height: 45px;
    display: flex;
    align-items: center;
}



/* Add extra padding to dropdown menu for better hover area */
.dropdown-menu {
    padding: 0.75rem 0;
}

/* Dropdown show/hide - Show on hover */
.dropdown:hover .dropdown-menu,
.dropdown.show .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Create larger hover area for dropdown */
.dropdown {
    position: relative;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
    z-index: 1000;
}

/* Quote Button - Updated to black */
.quote-btn {
    background: #000000;
    border: 2px solid #000000;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: white;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: white;
    background: #333333;
    border-color: #333333;
}

.quote-btn:active {
    transform: translateY(-1px);
}

/* Hero Slider Styles */
.hero-slider {
    height: 800px;
    background: #CF0B32;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 80%);
}

/* Product Information Styles */
.product-info {
    padding: 1rem;
    position: relative;
    z-index: 10;
}

.slide-content {
    display: none;
    animation: fadeInUp 0.8s ease-out;
}

/* Mobile slide content padding */
@media (max-width: 991.98px) {
    .slide-content {
        padding-top: 50px;
    }
}

.slide-content.active {
    display: block;
}

.product-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.product-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.product-description {
    font-size: 1.1rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.product-btn {
    border: 2px solid white;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
    color: white;
}

.product-btn:hover {
    background: white;
    color: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Product Image Container */
.product-image-container {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slide-image {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    animation: fadeInScale 0.8s ease-out;
}

.slide-image.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CNC Machine Visualization */
.cnc-machine {
    position: relative;
    width: 450px;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.machine-body {
    width: 400px;
    height: 250px;
    background: linear-gradient(145deg, #d0d0d0, #e8e8e8);
    border-radius: 8px;
    position: relative;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 2px 5px rgba(255, 255, 255, 0.8);
    border: 3px solid #b0b0b0;
    overflow: hidden;
}

.machine-door {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 160px;
    background: #2c3e50;
    border-radius: 5px;
    border: 2px solid #34495e;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.6);
}

.door-grid {
    width: 240px;
    height: 120px;
    background: #34495e;
    border-radius: 3px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(8, 1fr);
    gap: 1px;
    padding: 8px;
    position: relative;
}

.door-grid::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: screenGlow 4s ease-in-out infinite;
}

.door-handles {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.handle {
    width: 6px;
    height: 30px;
    background: #95a5a6;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.control-panel {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 120px;
    height: 80px;
    background: #34495e;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
    border: 1px solid #2c3e50;
}

.screen-display {
    width: 90px;
    height: 50px;
    background: #2c3e50;
    border-radius: 3px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.screen-display::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 0, 0.1) 50%, transparent 70%);
    animation: screenGlow 3s ease-in-out infinite;
}

.control-buttons {
    display: flex;
    gap: 4px;
}

.control-buttons::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    box-shadow: 0 0 5px #e74c3c;
}

.control-buttons::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #27ae60;
    border-radius: 50%;
    box-shadow: 0 0 5px #27ae60;
}

.indicator-lights {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 8px currentColor;
    animation: lightBlink 2s ease-in-out infinite;
}

.light.red {
    background: #CF0B32;
    animation-delay: 0s;
}

.light.yellow {
    background: #f39c12;
    animation-delay: 0.7s;
}

.light.green {
    background: #27ae60;
    animation-delay: 1.4s;
}

.model-name {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%) rotate(90deg);
    font-size: 0.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 1px;
    background: #34495e;
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
}

.brand-logo {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.brand-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: #e74c3c;
    letter-spacing: 0.5px;
}

.chinese-chars {
    font-size: 0.6rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2px;
}

.machine-base {
    width: 450px;
    height: 25px;
    background: #2c3e50;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-feet {
    display: flex;
    gap: 80px;
    align-items: center;
}

.foot {
    width: 15px;
    height: 8px;
    background: #34495e;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Different machine variations */
.cnc-machine.milling .machine-body {
    background: linear-gradient(145deg, #3498db, #2980b9);
}

.cnc-machine.drilling .machine-body {
    background: linear-gradient(145deg, #9b59b6, #8e44ad);
}

/* Slider Controls Container */
.slider-controls-container {
    background: white;
    padding: 20px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

/* Hide desktop slider controls on mobile */
@media (max-width: 991.98px) {
    .desktop-slider-controls {
        display: none;
    }
}

/* Mobile Slider Controls */
.mobile-slider-controls {
    display: none;
    position: relative;
    margin: 0 auto;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 15px 20px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); */
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: fit-content;
    margin-top: -60px;
}

/* Show mobile slider controls on mobile */
@media (max-width: 991.98px) {
    .mobile-slider-controls {
        display: flex;
    }
}

/* Mobile Slider Indicators */
.mobile-slider-indicators {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.mobile-indicator {
    width: 25px;
    height: 3px;
    background: #ddd;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-indicator.active {
    background: #000000;
    transform: scaleX(1.5);
}

.mobile-indicator:hover {
    background: #999;
}

/* Mobile Slider Navigation */
.mobile-slider-navigation {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mobile-nav-btn {
    width: 35px;
    height: 35px;
    border: 2px solid #000000;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-nav-btn:hover {
    background: #000000;
    color: white;
    transform: scale(1.1);
}

.mobile-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f0f0f0;
    color: #ccc;
    border-color: #ccc;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}

.slider-indicators {
    display: flex;
    gap: 8px;
}

.indicator {
    width: 30px;
    height: 4px;
    background: #ccc;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #2c3e50;
    transform: scaleX(1.3);
}

.indicator:hover {
    background: #999;
}

.slider-navigation {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #2c3e50;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2c3e50;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
    background: #2c3e50;
    color: white;
    transform: scale(1.05);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f0f0f0;
    color: #ccc;
}



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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes screenGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes lightBlink {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}



/* Responsive Design for Slider */
@media (max-width: 991.98px) {
    .hero-slider {
        height: auto;
        min-height: 600px;
        padding: 2rem 0;
    }
    
    .product-title {
        font-size: 2.5rem;
    }
    
    .product-subtitle {
        font-size: 1.5rem;
    }
    
    .product-image-container {
        height: 400px;
        margin-top: 2rem;
    }
    
    .cnc-machine {
        width: 350px;
        height: 280px;
    }
    
    .machine-body {
        width: 300px;
        height: 180px;
    }
    
    .machine-door {
        width: 220px;
        height: 120px;
    }
    
    .door-grid {
        width: 180px;
        height: 90px;
    }
    
    .slider-controls {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        gap: 20px;
    }
}

@media (max-width: 767.98px) {
    .product-title {
        font-size: 2rem;
    }
    
    .product-subtitle {
        font-size: 1.2rem;
    }
    
    .product-description {
        font-size: 1rem;
    }
    
    .cnc-machine {
        width: 280px;
        height: 220px;
    }
    
    .machine-body {
        width: 240px;
        height: 140px;
    }
    
    .machine-door {
        width: 180px;
        height: 100px;
    }
    
    .door-grid {
        width: 140px;
        height: 70px;
    }
    
    .control-panel {
        width: 80px;
        height: 60px;
    }
    
    .slider-controls {
        flex-direction: column;
        gap: 15px;
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .navbar-nav {
        text-align: center;
        margin: 1rem 0;
    }
    
    .navbar-brand {
        margin: 1rem 0;
    }
    
    .quote-btn {
        margin: 1rem 0;
        width: 100%;
        max-width: 200px;
    }
    
    .dropdown-menu {
        text-align: center;
        margin: 0.5rem 0;
    }
}

@media (max-width: 767.98px) {
    .logo-text {
        font-size: 1.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
    }
    
    .dropdown-item {
        padding: 1rem 1.5rem;
        margin: 0.25rem 0.5rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects for Dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
} 

/* Main Content */
.main-content {
    min-height: 80vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem 0;
} 

/* About Section Styles */
.about-section {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 0;
}

/* Responsive Design for About Section */
@media (max-width: 767.98px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-text {
        font-size: 1.1rem;
    }
} 

/* Machine Image */
.machine-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;

} 

/* Language Selector */
.language-selector {
    color: white !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: none;
}

.language-selector:hover {
    background: transparent;
    color: white !important;
    transform: translateY(-1px);
}

.language-selector i {
    margin-right: 5px;
}

/* Sticky header language selector */
.header-section.sticky .language-selector {
    color: #333 !important;
    background: transparent;
    border: none;
}

.header-section.sticky .language-selector:hover {
    background: transparent;
    color: #333 !important;
    transform: translateY(-1px);
} 

/* Flag Images */
.flag-img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 8px;
    vertical-align: middle;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-item .flag-img {
    width: 18px;
    height: 12px;
    margin-right: 8px;
} 

/* Web Menu Section */
.web-menu-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

/* Hide web menu on mobile */
@media (max-width: 991.98px) {
    .web-menu-section {
        display: none;
    }
}

/* Sticky web menu styles */
.web-menu-section.sticky {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.web-menu-section .navbar {
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background: transparent;
    min-height: 80px;
}

/* ===== MOBILE MENU STYLES ===== */

/* Mobile Menu Section */
.mobile-menu-section {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Show mobile menu on mobile devices */
@media (max-width: 991.98px) {
    .mobile-menu-section {
        display: block;
    }
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    min-height: 70px;
}

/* Mobile Logo */
.mobile-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.mobile-logo-link {
    text-decoration: none;
    display: block;
}

/* Mobile Menu Controls */
.mobile-menu-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Language Selector */
.mobile-language-selector {
    display: flex;
    align-items: center;
}

.mobile-language-btn {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.mobile-language-btn:hover {
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
}

.mobile-flag-img {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 6px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Mobile Menu Content */
.mobile-menu-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

/* Mobile Menu Header Inner */
.mobile-menu-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-logo-inner .mobile-logo-img {
    height: 50px;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: all 0.3s ease;
}

.close-line {
    width: 24px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.close-line:nth-child(1) {
    transform: rotate(45deg);
}

.close-line:nth-child(2) {
    transform: rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
    flex: 1;
}

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

.mobile-nav-item {
    margin-bottom: 1rem;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #667eea;
    text-decoration: none;
}

/* Mobile Dropdown Arrow */
.mobile-dropdown-arrow {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

/* Mobile Dropdown Menu */
.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.mobile-dropdown-menu.active {
    max-height: 300px;
    padding: 0.5rem 0;
}

.mobile-dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-dropdown-item:hover {
    color: #667eea;
    background: rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

/* Mobile Quote Button */
.mobile-quote-btn {
    background: #dc3545 !important;
    color: white !important;
    border: 2px solid #dc3545 !important;
    border-radius: 8px !important;
    padding: 1rem 1.5rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin-top: 1rem !important;
    transition: all 0.3s ease !important;
    justify-content: center !important;
}

.mobile-quote-btn:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

/* Mobile Support Button */
.mobile-support-btn {
    background: #333 !important;
    color: white !important;
    border: 2px solid #333 !important;
    border-radius: 8px !important;
    padding: 1rem 1.5rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin-top: 1rem !important;
    transition: all 0.3s ease !important;
    justify-content: center !important;
}

.mobile-support-btn:hover {
    background: #555 !important;
    border-color: #555 !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

/* ===== WHO WE ARE SECTION STYLES ===== */

.who-we-are-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="%23000000"/><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.who-we-are-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(207, 11, 50, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(220, 53, 69, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.who-we-are-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.who-we-are-header {
    margin-bottom: 60px;
}

.company-logo .logo-text {
    background: linear-gradient(135deg, #CF0B32 0%, #dc3545 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(207, 11, 50, 0.3);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-style: italic;
}

.description-text {
    max-width: 900px;
    margin: 0 auto 60px;
}

.description-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Video Gallery Styles */
.video-gallery {
    position: relative;
    margin-top: 40px;
}

.video-slider {
    position: relative;
}

.video-item {
    margin: 0 15px;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.video-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(207, 11, 50, 0.5);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.video-container:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 0%, transparent 50%, rgba(207, 11, 50, 0.2) 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #CF0B32;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.play-button::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.video-container:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(207, 11, 50, 0.95);
    color: white;
    box-shadow: 0 12px 35px rgba(207, 11, 50, 0.4);
}

/* Video Slider Navigation */
.video-slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 15;
}

.video-slider .owl-nav button {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    transition: all 0.4s ease !important;
    outline: none !important;
    pointer-events: auto !important;
    position: relative !important;
}

.video-slider .owl-nav .owl-prev {
    left: -30px !important;
}

.video-slider .owl-nav .owl-next {
    right: -30px !important;
}

.video-slider .owl-nav button:hover {
    background: rgba(207, 11, 50, 0.9) !important;
    border-color: rgba(207, 11, 50, 0.9) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 8px 25px rgba(207, 11, 50, 0.4) !important;
}

.video-slider .owl-nav button:disabled {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.5) !important;
    cursor: not-allowed !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Mobile Responsive for Who We Are Section */
@media (max-width: 768px) {
    .who-we-are-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .company-logo .logo-text {
        font-size: 2rem;
    }
    
    .description-text p {
        font-size: 1rem;
    }
    
    .video-slider .owl-nav .owl-prev {
        left: -20px !important;
    }
    
    .video-slider .owl-nav .owl-next {
        right: -20px !important;
    }
    
    .video-slider .owl-nav button {
        width: 50px !important;
        height: 50px !important;
        font-size: 18px !important;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .company-logo .logo-text {
        font-size: 1.5rem;
    }
    
    .video-slider .owl-nav .owl-prev {
        left: -15px !important;
    }
    
    .video-slider .owl-nav .owl-next {
        right: -15px !important;
    }
    
    .video-slider .owl-nav button {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* ===== SOCIAL FOLLOW SECTION STYLES ===== */

.social-follow-section {
    background: white;
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-follow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1;
}

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

.social-follow-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    text-transform: none;
    letter-spacing: -1px;
}

.social-follow-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.social-media-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-media-link {
    position: relative;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.social-icon-wrapper {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2c3e50;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #CF0B32 0%, #dc3545 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.social-media-link:hover .social-icon-wrapper {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: white;
}

.social-media-link:hover .social-icon-wrapper::before {
    opacity: 1;
}

/* Individual platform colors */
.social-media-link.facebook:hover .social-icon-wrapper {
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.social-media-link.facebook:hover .social-icon-wrapper::before {
    background: linear-gradient(135deg, #1877F2 0%, #0866FF 100%);
}

.social-media-link.instagram:hover .social-icon-wrapper {
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
}

.social-media-link.instagram:hover .social-icon-wrapper::before {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 25%, #833AB4 50%, #5B51D8 75%, #405DE6 100%);
}

.social-media-link.linkedin:hover .social-icon-wrapper {
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.3);
}

.social-media-link.linkedin:hover .social-icon-wrapper::before {
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
}

.social-separator {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent 0%, #ddd 20%, #ddd 80%, transparent 100%);
    position: relative;
}

.social-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #ddd;
    border-radius: 50%;
}

/* Click animation */
.social-media-link:active .social-icon-wrapper,
.social-media-link.touch-active .social-icon-wrapper {
    transform: translateY(-2px) scale(0.98);
}

/* Tooltip effect */
.social-media-link::after {
    content: attr(data-platform);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(44, 62, 80, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.social-media-link::before {
    content: '';
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(44, 62, 80, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.social-media-link:hover::after,
.social-media-link:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-follow-section {
        padding: 30px 0;
    }
    
    .social-follow-title {
        font-size: 1.5rem;
    }
    
    .social-media-icons {
        gap: 20px;
    }
    
    .social-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .social-separator {
        height: 25px;
    }
}

@media (max-width: 576px) {
    .social-follow-section {
        padding: 20px 0;
    }
    
    .social-follow-title {
        font-size: 1.25rem;
    }
    
    .social-follow-subtitle {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .social-media-icons {
        gap: 15px;
        flex-direction: row;
        justify-content: center;
    }
    
    .social-separator {
        width: 1px;
        height: 20px;
        background: linear-gradient(to bottom, transparent 0%, #ddd 20%, #ddd 80%, transparent 100%);
    }
    
    .social-separator::before {
        width: 3px;
        height: 3px;
    }
    
    .social-icon-wrapper {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* ===== QUOTE FORM MODAL STYLES ===== */

.quote-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

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

.quote-modal-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.quote-modal-overlay.active .quote-modal-content {
    transform: scale(1);
}

.quote-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.quote-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.quote-modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quote-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.quote-modal-body {
    padding: 20px 30px 30px;
}

.quote-modal-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
    outline: none;
}

.form-control:focus {
    border-color: #CF0B32;
    box-shadow: 0 0 0 3px rgba(207, 11, 50, 0.1);
}

.form-control::placeholder {
    color: #aaa;
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    padding-right: 40px;
    appearance: none;
    cursor: pointer;
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #CF0B32;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
    cursor: pointer;
    user-select: none;
}

.quote-submit-btn {
    background: #CF0B32;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

.quote-submit-btn:hover {
    background: #dc3545;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(207, 11, 50, 0.3);
}

.quote-submit-btn:active {
    transform: translateY(0);
}

/* Mobile Responsive for Quote Modal */
@media (max-width: 768px) {
    .quote-modal-content {
        margin: 10px;
        max-width: none;
        border-radius: 15px;
    }
    
    .quote-modal-header {
        padding: 20px 20px 15px;
    }
    
    .quote-modal-title {
        font-size: 1.3rem;
    }
    
    .quote-modal-body {
        padding: 15px 20px 25px;
    }
    
    .quote-form {
        gap: 15px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .quote-submit-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .checkbox-group label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .quote-modal-overlay {
        padding: 15px;
    }
    
    .quote-modal-header {
        padding: 15px 15px 10px;
    }
    
    .quote-modal-title {
        font-size: 1.2rem;
    }
    
    .quote-modal-body {
        padding: 10px 15px 20px;
    }
    
    .quote-modal-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}

/* ===== FOOTER STYLES ===== */

/* Footer Section */


.footer-container {
    display: flex;
    width: 100%;
    gap: 0;
}

/* Footer Left Section */
.footer-left {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Social Media */
.social-media {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    color: #333;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #dc3545;
}

.separator {
    width: 1px;
    height: 20px;
    background: #ccc;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    margin-bottom: 15px;
}

.contact-title {
    font-weight: bold;
    color: #333;
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Footer Right Section */
.footer-right {
    flex: 1;
    background: #dc3545;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.nav-column {
    flex: 1;
}

.nav-title {
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

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

.nav-list li {
    margin-bottom: 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: white;
}

/* Footer Actions */
.footer-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.customer-service-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.customer-service-btn:hover {
    background: white;
    color: #dc3545;
}

.contact-btn {
    width: 45px;
    height: 45px;
    background: #333;
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #555;
    transform: scale(1.1);
}

/* Footer Legal */
.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: white;
}

/* Responsive Footer */
@media (max-width: 991.98px) {
    .footer-container {
        flex-direction: column;
    }
    
    .footer-left,
    .footer-right {
        padding: 30px 20px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .nav-column {
        flex: 1 1 calc(50% - 15px);
    }
    
    .footer-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 767.98px) {
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-left,
    .footer-right {
        padding: 20px 15px;
    }
    
    .footer-nav {
        gap: 20px;
    }
    
    .nav-column {
        flex: 1 1 calc(50% - 10px);
        margin-bottom: 20px;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .social-media {
        justify-content: center;
    }
    
    .contact-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        gap: 15px;
    }
    
    .nav-column {
        flex: 1 1 calc(50% - 7.5px);
        margin-bottom: 15px;
    }
    
    .nav-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .nav-list li {
        margin-bottom: 6px;
    }
}

/* ===== REFERENCES SECTION STYLES ===== */

/* References Section */
.references-section {
    background: white;
    padding: 80px 0;
    margin-top: 80px;
}

/* References Header */
.references-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.references-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

/* Universal "Tümünü Gör" Button Style */
.see-all-btn,
.view-all-btn {
    background: #333;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.see-all-btn:hover,
.view-all-btn:hover {
    background: #555;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}

/* References Grid */
.references-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.reference-item {
    border-right: 1px dotted #e0e0e0;
    border-bottom: 1px dotted #e0e0e0;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.3s ease;
}

.reference-item:nth-child(5n) {
    border-right: none;
}

.reference-item:nth-child(n+6) {
    border-bottom: none;
}

.reference-item:hover {
    background: #f8f9fa;
}

/* Reference Placeholder */
.reference-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ccc;
    text-align: center;
    width: 100%;
    height: 100%;
}

.reference-placeholder i {
    font-size: 2rem;
    color: #ddd;
}

.reference-placeholder span {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
}

/* Reference Logo Styles */
.reference-placeholder img {
    max-width: 120px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.reference-item:hover .reference-placeholder img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive References */
@media (max-width: 991.98px) {
    .references-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reference-item:nth-child(3n) {
        border-right: none;
    }
    
    .reference-item:nth-child(n+7) {
        border-bottom: none;
    }
    
    .reference-placeholder img {
        max-width: 110px;
        max-height: 70px;
    }
}

@media (max-width: 767.98px) {
    .references-section {
        padding: 60px 0;
    }
    
    .references-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .references-title {
        font-size: 2rem;
    }
    
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reference-item:nth-child(2n) {
        border-right: none;
    }
    
    .reference-item:nth-child(n+9) {
        border-bottom: none;
    }
    
    .reference-item {
        padding: 30px 15px;
    }
    
    .reference-placeholder img {
        max-width: 100px;
        max-height: 60px;
    }
}

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

/* Products Section */
.products-section {
    background: white;
    padding: 80px 0;
    margin-top: 80px;
}

/* Products Header */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.products-title-area {
    flex: 1;
}

.products-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
}

.products-subtitle {
    color: #666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

/* view-all-btn styles now inherit from universal button style above */

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Product Card Link */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-link:hover {
    text-decoration: none;
    color: inherit;
}


/* Active Slide Styling */
.product-slide.swiper-slide-active .product-card {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    transform: scale(1.05);
}

.product-slide.swiper-slide-active .product-info {
    color: white;
}

.product-slide.swiper-slide-active .product-name,
.product-slide.swiper-slide-active .product-type {
    color: white;
}

/* Product Image */
.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Product Info */
.product-info {
    padding: 20px;
    text-align: center;
}

.product-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 5px 0;
    transition: color 0.3s ease;
}

.product-type {
    font-size: 1rem;
    color: #666;
    margin: 0;
    transition: color 0.3s ease;
}



/* Responsive Products */
@media (max-width: 991.98px) {
    .products-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .view-all-btn,
    .see-all-btn {
        margin-left: 0;
        align-self: center;
        width: auto;
        min-width: 100px;
    }
    

}

@media (max-width: 767.98px) {
    .products-section {
        padding: 60px 0;
    }
    
    .products-title {
        font-size: 2rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

/* Owl Carousel Custom Styles for Products Slider */
.products-slider.owl-carousel {
    margin-top: 2rem;
}

.products-slider .owl-stage-outer {
    padding: 60px 0;
}

.products-slider .product-card {
    margin: 0 10px;
    transform: scale(1);
    transition: all 0.5s ease;
    cursor: pointer;
    opacity: 0.7;
    filter: grayscale(20%);
}

/* Non-center items styling */
.products-slider .owl-item:not(.center) .product-card {
    opacity: 0.7;
    transform: scale(0.9);
    filter: grayscale(30%);
}

/* Center item gets full opacity and no filter */
.products-slider .owl-item.center .product-card {
    opacity: 1;
    filter: none;
}

.products-slider .product-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Center mode active card styles */
.products-slider .owl-item.center .product-card {
    transform: scale(1.1) !important;
    position: relative;
    z-index: 5;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    opacity: 1 !important;
    filter: none !important;
}

.products-slider .owl-item.center .product-card .product-image {
    background: #CF0B32;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.products-slider .owl-item.center .product-card .product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #CF0B32 0%, #dc3545 100%);
    z-index: -1;
}

.products-slider .owl-item.center .product-card .product-image img {
    filter: brightness(1.1) contrast(1.1);
    position: relative;
    z-index: 2;
}

.products-slider .owl-item.center .product-card .product-label {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #CF0B32 !important;
    font-weight: 700;
}

.products-slider .owl-item.center .product-card .product-info .product-name {
    color: #CF0B32;
    font-weight: 700;
    font-size: 1.3rem;
}

.products-slider .owl-item.center .product-card .product-info .product-type {
    color: #dc3545;
    font-weight: 600;
}

/* Owl Navigation Buttons */
.products-slider {
    position: relative;
}

.products-slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 10;
}

.products-slider .owl-nav button {
    background: #CF0B32 !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    box-shadow: 0 4px 15px rgba(207, 11, 50, 0.3) !important;
    pointer-events: auto !important;
    position: relative !important;
}

.products-slider .owl-nav .owl-prev {
    left: -25px !important;
}

.products-slider .owl-nav .owl-next {
    right: -25px !important;
}

.products-slider .owl-nav button:hover {
    background: #dc3545 !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(207, 11, 50, 0.5) !important;
}

.products-slider .owl-nav button:disabled {
    background: #ccc !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}

.products-slider .owl-nav button:disabled:hover {
    transform: none !important;
    background: #ccc !important;
}



/* Mobile Responsive for Owl Carousel */
@media (max-width: 768px) {
    .products-slider .owl-nav button {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
    
    .products-slider .owl-nav .owl-prev {
        left: -20px !important;
    }
    
    .products-slider .owl-nav .owl-next {
        right: -20px !important;
    }
    
    .products-slider .product-card {
        margin: 0 5px;
    }
    
    .products-slider .owl-item.center .product-card {
        transform: scale(1.05) !important;
    }
    
    .products-slider .owl-item:not(.center) .product-card {
        transform: scale(0.95);
    }
}

@media (max-width: 576px) {
    .products-slider .owl-stage-outer {
        padding: 5px 0;
    }
    
    .products-slider .product-card {
        margin: 0;
    }
    
    .products-slider .owl-nav .owl-prev {
        left: -15px !important;
    }
    
    .products-slider .owl-nav .owl-next {
        right: -15px !important;
    }
    
    .products-slider .owl-nav button {
        width: 35px !important;
        height: 35px !important;
        font-size: 14px !important;
    }
} 