/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* iOS Safari smooth scroll fix */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -webkit-text-size-adjust: 100%;
    pointer-events: auto !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    min-height: 100vh;
    -webkit-touch-callout: default !important;
    pointer-events: auto !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo {
    flex: 0 0 auto;
    margin-right: 3rem;
}

.logo h1 {
    color: #2c5aa0;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.logo i {
    margin-right: 0.5rem;
    color: #ff6b35;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #2c5aa0;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

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

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 0.5rem 0;
}

.dropdown-brand {
    font-weight: 600 !important;
    color: #2c5aa0 !important;
    background: #f0f8ff !important;
}

.dropdown-brand:hover {
    background: #e6f3ff !important;
    color: #1e3f73 !important;
}

.dropdown-sub {
    font-size: 0.9rem !important;
    padding-left: 1.5rem !important;
    color: #666 !important;
}

.dropdown-sub:hover {
    background: #f8f9fa !important;
    color: #2c5aa0 !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
}

.search-btn {
    text-decoration: none;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #f0f0f0;
}

/* Mobile Menu Pure CSS Solution */
.mobile-menu-checkbox {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

/* Mobile Menu Animation */
.mobile-menu-checkbox:checked + .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-checkbox:checked + .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-checkbox:checked + .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu Show/Hide */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        justify-content: flex-start;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 8px 8px;
        display: none;
    }
    
    .mobile-menu-checkbox:checked ~ .nav {
        display: flex;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 1rem 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide:nth-child(1) {
    /* Remove animation-delay */
}

.slide:nth-child(2) {
    /* Remove animation-delay */
}

.slide:nth-child(3) {
    /* Remove animation-delay */
}

.slide:nth-child(4) {
    /* Remove animation-delay */
}

.slide:nth-child(5) {
    /* Remove animation-delay */
}

/* Remove keyframes animation */

.slide.active {
    opacity: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease-out;
}

.slide.active .hero-background img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.85) 0%, rgba(30, 63, 115, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 700px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s ease;
}

/* JavaScript will handle the hero content animation */

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

.indicator:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Hero Stats Container */
.hero-stats-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.stat {
    text-align: center;
    color: #fff;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Product Categories */
.product-categories {
    padding: 6rem 0;
    background: #f8f9fa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.category-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

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

.category-icon i {
    font-size: 2rem;
    color: #fff;
}

.category-card h3 {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    min-height: 160px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.category-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.category-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.category-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #ff6b35;
}

/* Featured Products */
.featured-products {
    padding: 6rem 0;
}

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

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

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

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

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

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff6b35;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-category {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-description {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: #f0f8ff;
    color: #2c5aa0;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.product-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
}

/* Spare Parts Section */
.spare-parts-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.spare-parts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.spare-parts-info h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.spare-parts-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.spare-parts-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature i {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.feature h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature p {
    color: #555;
    margin: 0;
}

.spare-parts-actions {
    margin-top: 2rem;
}

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

.part-item {
    text-align: center;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.part-item:hover {
    transform: translateY(-3px);
}

.part-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.part-item span {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Representatives Section */
.representatives-section {
    padding: 5rem 0;
    background: white;
}

.representatives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    justify-content: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.representative-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.representative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.representative-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.representative-card:hover::before {
    opacity: 1;
}

.representative-logo {
    height: 100px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.representative-logo img {
    max-width: 140px;
    max-height: 80px;
    object-fit: contain;
}

.logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #e2e8f0;
    border-radius: 8px;
}

.logo-fallback i {
    font-size: 1.5rem;
    color: #64748b;
}

.representative-info {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.representative-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.representative-specialty {
    font-size: 0.85rem;
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 0.75rem;
    min-height: 2.2rem;
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.representative-description {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.representative-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.representative-contact {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #64748b;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    width: 16px;
    color: #3b82f6;
    flex-shrink: 0;
}

.representative-actions {
    margin-top: auto;
    padding-top: 1rem;
}

.representative-actions .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.representative-actions .btn i {
    font-size: 0.9rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: #fff;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.why-choose-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.advantages {
    display: grid;
    gap: 1.5rem;
}

.advantage {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.advantage i {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.advantage h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.advantage p {
    opacity: 0.8;
    margin: 0;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* News Section */
.news-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.news-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(44, 90, 160, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    padding: 2rem;
}

.news-content h3 {
    font-size: 1.25rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #2c5aa0;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    justify-items: center;
    text-align: center;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
}

.footer-section h4 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-logo h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-logo p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}

.contact-info p {
    margin-bottom: 0.75rem;
    color: #ccc;
    line-height: 1.5;
}

.contact-info i {
    color: #ff6b35;
    margin-right: 0.5rem;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-wrapper {
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    
    .logo {
        margin-right: 0;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        justify-content: flex-start;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 8px 8px;
        display: none;
    }
    
    .mobile-menu-checkbox:checked ~ .nav {
        display: flex;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 1rem 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 0.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-actions {
        order: 2;
    }
    
    /* Hero Slider Mobile */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .slider-nav {
        padding: 0 1rem;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-stats-container {
        padding: 1.5rem 0;
    }
    
    .slider-indicators {
        bottom: 0.5rem;
        gap: 0.75rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .categories-grid,
    .products-grid,
    .services-grid,
    .representatives-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-features {
        min-height: 160px;
    }
    
    .category-card p {
        min-height: 40px;
    }
    
    .spare-parts-content,
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }

    /* Services Section Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* Representatives Section Mobile */
    .representatives-section {
        padding: 3rem 0;
    }

    .representatives-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .representative-card {
        padding: 1.5rem;
    }

    .representative-logo {
        height: 80px;
        margin-bottom: 1rem;
    }

    .representative-logo img {
        max-width: 120px;
        max-height: 60px;
    }

    .logo-fallback {
        width: 40px;
        height: 40px;
    }

    .representative-info h3 {
        font-size: 1rem;
    }

    .representative-specialty {
        font-size: 0.8rem;
    }

    .representative-description {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .service-tag {
        font-size: 0.7rem;
        padding: 0.15rem 0.5rem;
    }

    .contact-item {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .representative-actions .btn {
        padding: 0.6rem;
        font-size: 0.8rem;
    }

    /* Fujian Jiayu Mobile Styles */
    .fujian-jiayu-section {
        padding: 4rem 0;
    }
    
    .jiayu-products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .jiayu-product-card {
        padding: 1.5rem;
    }
    
    .jiayu-product-card h3 {
        font-size: 1.25rem;
    }
    
    .jiayu-product-icon {
        width: 60px;
        height: 60px;
    }
    
    .jiayu-product-icon i {
        font-size: 1.5rem;
    }
    
    .jiayu-contact {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .jiayu-cta {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .jiayu-cta-content h3 {
        font-size: 1.5rem;
    }
    
    .jiayu-cta-content p {
        font-size: 1rem;
    }
    
    .jiayu-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .jiayu-cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .slider-nav {
        padding: 0 0.5rem;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .category-card,
    .service-card {
        padding: 2rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .spare-parts-actions {
        flex-direction: column;
    }
}

/* Tablet responsive adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-menu {
        gap: 2rem;
    }
    
    .logo {
        margin-right: 2rem;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-content .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    /* Services Section Tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Categories Section Tablet */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .category-features {
        min-height: 180px;
    }
    
    /* Representatives Section Tablet */
    .representatives-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .representative-card {
        padding: 1.75rem;
    }
    
    .representative-logo {
        height: 90px;
    }
    
    .representative-logo img {
        max-width: 130px;
        max-height: 70px;
    }
    
    .representative-specialty {
        font-size: 0.85rem;
        min-height: 2.2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .hero-buttons,
    .product-actions,
    .spare-parts-actions {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #ff6b35;
    color: #fff;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #2c5aa0;
}

.btn-outline {
    background: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.btn-outline:hover {
    background: #2c5aa0;
    color: #fff;
}

/* Fujian Jiayu Products Section */
.fujian-jiayu-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.jiayu-info {
    margin-top: 2rem;
    text-align: center;
}

.jiayu-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.jiayu-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.jiayu-contact i {
    color: #2c5aa0;
}

.jiayu-contact a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
}

.jiayu-contact a:hover {
    color: #1e3f73;
    text-decoration: underline;
}

.jiayu-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.jiayu-product-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.jiayu-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

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

.jiayu-product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.jiayu-product-icon i {
    font-size: 1.75rem;
    color: white;
}

.jiayu-product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.jiayu-product-subtitle {
    font-size: 0.875rem;
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.jiayu-product-card > p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.jiayu-product-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.jiayu-product-features li {
    color: #4a5568;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.jiayu-product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
}

.jiayu-product-actions {
    margin-top: auto;
}

.jiayu-product-actions .btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.875rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.jiayu-cta {
    margin-top: 4rem;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.jiayu-cta-content h3 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.jiayu-cta-content p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.jiayu-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.jiayu-cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Fujian Jiayu Responsive Styles */
.jiayu-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.jiayu-product-card {
    padding: 2rem;
}

.jiayu-contact {
    gap: 1rem;
}

.jiayu-cta {
    padding: 2rem;
}

.jiayu-cta-content h3 {
    font-size: 1.75rem;
}

.jiayu-cta-buttons {
    gap: 1rem;
}

/* Page Header Styles */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    margin-top: 80px;
}

.page-header-content {
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb i {
    font-size: 0.7rem;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Company Info Section */
.company-info-section {
    padding: 6rem 0;
    background: white;
}

.company-info-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.company-logo-section {
    text-align: center;
}

.company-logo {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.company-logo img {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.company-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.badge {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    min-width: 120px;
}

.company-details h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.company-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.company-stats .stat {
    text-align: center;
}

.company-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.company-stats .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.company-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.company-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.company-contact .contact-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.company-contact .contact-item i {
    width: 20px;
    color: #3b82f6;
    flex-shrink: 0;
}

.company-contact .contact-item a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.company-contact .contact-item a:hover {
    text-decoration: underline;
}

.company-contact .contact-item span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Tablet Responsive Styles */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .company-info-section {
        padding: 4rem 0;
    }
    
    .company-info-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .company-details h2 {
        font-size: 2rem;
    }
    
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .company-contact {
        grid-template-columns: 1fr;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 480px) {
    .page-header {
        padding: 5rem 0 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .company-info-section {
        padding: 3rem 0;
    }
    
    .company-info-content {
        gap: 2rem;
    }
    
    .company-logo {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .company-logo img {
        max-width: 150px;
        max-height: 75px;
    }
    
    .company-details h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .company-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .company-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .company-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .company-contact .contact-item {
        padding: 0.75rem;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        min-width: 100px;
    }
}

/* Catalog Button Hover Effect */
.catalog-btn {
    position: relative;
    overflow: hidden;
}

.catalog-btn::after {
    content: 'Pek Yakında';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e55a2b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.catalog-btn:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* Prevent text selection on all elements */
::selection {
    background: #2c5aa0;
    color: white;
}

::-moz-selection {
    background: #2c5aa0;
    color: white;
}

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

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

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

/* Footer Mobile */
@media (max-width: 768px) {
    /* Override the main footer grid layout */
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 2rem;
        text-align: center;
        justify-items: unset !important;
    }

    .footer-section {
        max-width: 100%;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }

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

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .social-links {
        justify-content: center;
    }

    /* Contact info mobile fix - More specific targeting */
    .footer-center .contact-info {
        max-width: 100%;
        padding: 0 0.5rem;
        box-sizing: border-box;
    }

    .footer-center .contact-info p {
        margin-bottom: 0.75rem;
        color: #ccc;
        line-height: 1.4;
        font-size: 0.85rem;
        word-break: break-all;
        white-space: normal;
        overflow-wrap: anywhere;
        hyphens: auto;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 0.25rem;
    }

    .footer-center .contact-info p i {
        color: #ff6b35;
        margin-right: 0.5rem;
        width: 16px;
        flex-shrink: 0;
        display: inline-block;
        text-align: center;
    }

    /* Specific fix for address line breaks */
    .footer-center .contact-info p:first-child {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /* Phone number specific fix */
    .footer-center .contact-info p:nth-child(2) {
        word-spacing: -0.1em;
        letter-spacing: -0.02em;
    }

    /* Email specific fix */
    .footer-center .contact-info p:nth-child(3) {
        word-break: break-all;
        overflow-wrap: anywhere;
    }

    /* Footer logo mobile */
    .footer-logo {
        padding: 0 1rem;
    }

    .footer-logo h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .footer-logo p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    /* Social links mobile */
    .social-links {
        gap: 0.75rem;
        margin-top: 1rem;
        flex-wrap: wrap;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .footer-section {
        padding: 0 0.25rem;
        margin-bottom: 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    /* Ultra specific contact info fix for small screens */
    .footer-center .contact-info {
        padding: 0 0.25rem;
        width: 100%;
        max-width: calc(100vw - 2rem);
        box-sizing: border-box;
    }

    .footer-center .contact-info p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
        padding: 0 0.1rem;
        word-break: break-all;
        overflow-wrap: anywhere;
        hyphens: auto;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-center .contact-info p i {
        width: 14px;
        font-size: 0.8rem;
        margin-right: 0.4rem;
    }

    .footer-logo h3 {
        font-size: 1.2rem;
    }

    .footer-logo p {
        font-size: 0.85rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-bottom-content {
        padding: 0 0.5rem;
    }

    .footer-bottom-content p {
        font-size: 0.8rem;
        word-break: break-word;
        line-height: 1.3;
    }

    .footer-links {
        gap: 0.75rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
} 