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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    overflow-x: hidden;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #1f2937;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    color: #6c4f3d;
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-link i {
    font-size: 18px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    flex-wrap: nowrap;
}

.nav-logo img {
    height: 80px;
    width: auto;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    flex-wrap: nowrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #1f2937;
    position: relative;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* Improve header alignment and prevent wrapping on large screens */
@media (min-width: 1200px) {
    .nav-logo img {
        height: 72px;
    }
    .nav-link {
        font-size: 0.95rem;
    }
    .dropdown-menu a {
        font-size: 0.875rem;
    }
}

.nav-link:hover {
    color: #fbbf24;
}

.nav-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 400px;
    padding: 24px;
}

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

.dropdown-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.dropdown-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.dropdown-section ul li {
    margin-bottom: 12px;
}

.dropdown-section ul li a {
    text-decoration: none;
    color: #1f2937;
    font-size: 14px;
    transition: color 0.3s ease;
}

.dropdown-section ul li a:hover {
    color: #2563eb;
}

/* Services Dropdown Menu */
.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #1f2937;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-menu a:hover {
    background: #f3f4f6;
    color: #6c4f3d;
    padding-left: 25px;
}

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

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 25px;
}

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

.btn-secondary {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #1f2937;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.btn-primary {
    background: #6c4f3d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* .btn-primary:hover {
    background: #1f2937;
    transform: translateY(-1px);
} */

.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.language-selector:hover {
    background: #f3f4f6;
}

.language-selector .current-lang {
    font-size: 1.2rem;
}

.language-selector i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.language-selector.active i {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lang-option:hover {
    background: #f3f4f6;
}

.lang-option span:first-child {
    font-size: 1.1rem;
}

/* Flag icon styles for real images */
.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Hide mobile social links on desktop */
.mobile-social-links {
    display: none;
}

.lang-option span:last-child {
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

.lang-option.active {
    background: #6c4f3d;
    color: white;
}

.lang-option.active span:last-child {
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #1f2937;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(to right top, #725643, #967557, #ba976c, #dcbb82, #fde199);
}



.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8) 0%, rgba(55, 65, 81, 0.6) 100%);
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

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



.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
    white-space: nowrap;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e5e7eb;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: #374151;
    transform: translateY(-1px);
}

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

.slider-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #1f2937;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 1);
    color: #6c4f3d;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.slider-btn i {
    transition: transform 0.3s ease;
}

.slider-btn:hover i {
    transform: scale(1.2);
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fbbf24;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Trusted By Section */
.trusted-by {
    padding: 80px 0;
    background: white;
    overflow: hidden;
}

.trusted-by h3 {
    text-align: center;
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.logo-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.logo-slider:last-child {
    margin-bottom: 0;
}

.logo-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.logo-track.reverse {
    animation: scroll-reverse 30s linear infinite;
}

.logo-item {
    text-align: center;
    font-weight: 600;
    color: #9ca3af;
    font-size: 1.1rem;
    padding: 20px 40px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-right: 30px;
    white-space: nowrap;
    transition: all 0.3s ease;
    min-width: 150px;
}

.logo-item:hover {
    border-color: #6c4f3d;
    color: #6c4f3d;
    transform: translateY(-2px);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Animation continues on hover */
.logo-slider:hover .logo-track {
    animation-play-state: running;
}

.logo-slider.reverse:hover .logo-track.reverse {
    animation-play-state: running;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8fafc;
}

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

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

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-button {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(55, 65, 81, 0.1);
}

.stat-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6c4f3d 0%, #6b7280 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.stat-button:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6c4f3d 0%, #6b7280 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(108, 79, 61, 0.2);
}

.stat-button:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.stat-icon i {
    font-size: 28px;
    color: white;
    transition: all 0.3s ease;
}

.stat-button:hover .stat-icon i {
    transform: scale(1.1);
}

.stat-content {
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #6c4f3d;
    transition: color 0.4s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-button:hover .stat-number {
    color: #fbbf24;
    text-shadow: 0 4px 8px rgba(251, 191, 36, 0.3);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #6b7280;
    transition: color 0.3s ease;
}

.stat-button:hover .stat-label {
    color: #6c4f3d;
}

.stat-description {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.stat-button:hover .stat-description {
    color: #6b7280;
}

/* Features Section Responsive */
@media (max-width: 768px) {
    .features {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
    }
    
    .stat-button {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .stats-grid {
        gap: 20px;
        padding: 0 20px;
    }
    
    .stat-button {
        padding: 25px 15px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .stat-icon i {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* Channels Section */
.channels {
    padding: 100px 0;
    background: white;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.channel-card {
    padding: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #6c4f3d 0%, #8b6f5a 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.channel-card:hover::before {
    opacity: 0.05;
}

.channel-card:hover {
    border-color: #374151;
    transform: translateY(-4px);
}

.channel-icon {
    width: 60px;
    height: 60px;
    background: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.channel-card:hover .channel-icon {
    background: #374151;
}

.channel-icon i {
    font-size: 24px;
    color: #6b7280;
    transition: color 0.3s ease;
}

.channel-card:hover .channel-icon i {
    color: white;
}

.channel-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.channel-card p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.channel-link {
    text-decoration: none;
    color: #6c4f3d;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

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

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonials-content {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.testimonial-card blockquote::before {
    content: '"';
    font-size: 3rem;
    color: #6c4f3d;
    position: absolute;
    left: -10px;
    top: -10px;
    font-family: serif;
}

.testimonial-author {
    text-align: center;
    margin-bottom: 25px;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

.testimonial-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

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

.stat-item .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6c4f3d;
    margin-bottom: 5px;
}

.stat-item .stat-label {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-content h2 {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-stats {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .testimonials-content h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-header h3 {
        font-size: 1.5rem;
    }
    
    .testimonial-card blockquote {
        font-size: 1rem;
        padding-left: 15px;
    }
}

/* Quote Form Section */
.quote-form {
    padding: 100px 0;
    background: #f8fafc;
}

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

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

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

.form-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.quote-form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1f2937;
    box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.1);
}

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

.form-group small {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 4px;
}

.form-submit {
    text-align: center;
    margin-top: 32px;
}

.form-submit .btn-primary {
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    transform: none !important;
}

/* Ensure quote form submit button is always visible */
.quote-form .form-submit .btn-primary,
.quote-form-container .form-submit .btn-primary,
.quote-form-container button[type="submit"] {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    margin: 0 auto !important;
}

/* Override any problematic button styles */
.quote-form button[type="submit"],
.quote-form-container button[type="submit"] {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    transform: none !important;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #6c4f3d 0%, #8b6f5a 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    /* background: white; */
    /* color: #6c4f3d; */
}

/* .cta .btn-primary:hover {
    background: #f8fafc;
} */

.cta .btn-outline {
    border-color: white;
    color: white;
}

.cta .btn-outline:hover {
    background: white;
    color: #6c4f3d;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #f9fafb;
}

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

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

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

.footer-section ul li a:hover {
    color: white;
}

/* Ensure footer contact links (phone/email) match footer text color */
.footer .contact-info a {
    color: #d1d5db;
    text-decoration: none;
}

.footer .contact-info a:hover {
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    color: #fbbf24;
    font-size: 16px;
    margin-top: 2px;
    min-width: 16px;
}

.contact-item div {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-item strong {
    color: #6c4f3d;
    font-weight: 600;
}

.contact-item a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #fbbf24;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #6c4f3d;
}

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

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: #6c4f3d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        padding: 0 20px;
        position: relative;
        align-items: center;
    }
    
    .nav-actions {
        display: none;
    }
    
    /* Mobile language selector positioning */
    .language-selector {
        order: 2;
        margin-right: 10px;
        z-index: 1001;
    }
    
    .hamburger {
        display: flex;
        order: 3;
        position: relative;
        z-index: 1001;
        padding: 8px;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }
    
    .hamburger:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }
    
    /* Hide desktop social links in mobile */
    .nav-actions .social-links {
        display: none;
    }
    
    /* Show mobile social links in mobile menu */
    .mobile-social-links {
        display: none;
    }
    
    .nav-menu.active .mobile-social-links {
        display: flex;
        gap: 15px;
        margin-top: 15px;
        justify-content: center;
        padding: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active .mobile-social-links .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        padding: 0;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        text-decoration: none;
        color: #1f2937;
        font-size: 20px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active .mobile-social-links .social-link:hover {
        background: rgba(255, 255, 255, 1);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 0;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        padding: 15px 0;
        font-size: 1.1rem;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 10px;
    }
    
    .dropdown-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .dropdown-section {
        margin-bottom: 15px;
    }
    
    .dropdown-section h4 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .dropdown-section ul li a {
        padding: 8px 0;
        font-size: 0.95rem;
    }
    
    .hero {
        height: 80vh;
        min-height: 500px;
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .slider-nav {
        display: none;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .features-grid,
    .channels-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quote-form-container {
        padding: 24px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info {
        gap: 12px;
    }
    
    .contact-item {
        gap: 10px;
    }
    
    .contact-item div {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2rem;
        white-space: normal;
    }
    
    .machines-hero-content h1 {
        white-space: normal;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

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

.feature-card,
.channel-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Loading animation */
/* Success Message */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.success-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    margin: 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.success-content i {
    font-size: 48px;
    color: #10b981;
    margin-bottom: 16px;
}

.success-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.success-content p {
    color: #6b7280;
    line-height: 1.6;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
} 

/* About Page Styles */

/* About Hero Section */
.about-hero {
    background: linear-gradient(to right top, #725643, #967557, #ba976c, #dcbb82, #fde199);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: #e5e7eb;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Company Story Section */
.company-story {
    padding: 100px 0;
    background: white;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-text p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: left;
}

.story-text p:last-child {
    margin-bottom: 0;
}

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

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1f2937;
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #6c4f3d;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision Section */
.mission-vision {
    padding: 100px 0;
    background: #f8fafc;
}

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

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

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

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6c4f3d 0%, #6b7280 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.mv-card:hover .mv-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    transform: scale(1.1);
}

.mv-icon i {
    font-size: 32px;
    color: white;
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.mv-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Values Section */
.values {
    padding: 100px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.value-card:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #6c4f3d;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #6c4f3d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #fbbf24;
    transform: scale(1.1);
}

.value-icon i {
    font-size: 24px;
    color: white;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.value-card p {
    color: #6b7280;
    line-height: 1.5;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #f8fafc;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid #f3f4f6;
    transition: all 0.3s ease;
}

.team-member:hover .member-photo {
    border-color: #6c4f3d;
    transform: scale(1.05);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.member-title {
    color: #6c4f3d;
    font-weight: 500;
    margin-bottom: 12px;
}

.member-desc {
    color: #6b7280;
    line-height: 1.5;
}

/* Certificates Section */
.certificates {
    padding: 100px 0;
    background: white;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.certificate-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.certificate-card:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #6c4f3d;
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: #6c4f3d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.certificate-card:hover .cert-icon {
    background: #fbbf24;
    transform: scale(1.1);
}

.cert-icon i {
    font-size: 24px;
    color: white;
}

.certificate-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.certificate-card p {
    color: #6b7280;
    line-height: 1.5;
}

/* Active Navigation Link */
.nav-link.active {
    color: #6c4f3d;
    font-weight: 600;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .team-grid,
    .certificates-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        padding: 20px;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .about-hero-content p {
        font-size: 1rem;
    }
    
    .story-content h2 {
        font-size: 1.75rem;
    }
    
    .mv-card,
    .value-card,
    .certificate-card {
        padding: 20px;
    }
} 

/* Services Page Styles */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(to right top, #725643, #967557, #ba976c, #dcbb82, #fde199);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.services-hero-content p {
    font-size: 1.25rem;
    color: #e5e7eb;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Services Section */
.main-services {
    padding: 80px 0;
    background: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

/* Specialized Services Section */
.specialized-services {
    padding: 80px 0;
    background: white;
}

.specialized-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.specialized-card {
    display: flex;
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.specialized-image {
    flex: 0 0 250px;
    overflow: hidden;
}

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

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

.specialized-content {
    flex: 1;
    padding: 30px;
}

.specialized-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.specialized-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.specialized-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    background: #6c4f3d;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Industries Section */
.industries {
    padding: 80px 0;
    background: #f9fafb;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
    max-width: 1400px;
    margin: 50px auto 0;
}

.industry-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: #6c4f3d;
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6c4f3d 0%, #fbbf24 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
}

.industry-icon i {
    font-size: 32px;
    color: white;
}

.industry-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.industry-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: #6c4f3d;
    transform: translateY(-50%);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6c4f3d 0%, #fbbf24 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 25px 20px;
        text-align: center;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .service-link {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }
    
    .services-hero-content p {
        font-size: 1rem;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 20px 15px;
        text-align: center;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }
    
    .service-link {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Machines Page Styles */
.machines-hero {
    background: linear-gradient(to right top, #725643, #967557, #ba976c, #dcbb82, #fde199);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.machines-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.machines-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.machines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

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

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

.machine-image {
    height: 320px;
    overflow: hidden;
}

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

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

.machine-content {
    padding: 30px;
}

.machine-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.machine-content p {
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.6;
}

.machine-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #374151;
}

.spec-item i {
    color: #6c4f3d;
    font-size: 1rem;
    width: 20px;
}

/* Machines Layout - Left Navigation + Right Content */
.machines-main {
    padding: 80px 0;
    background: #f8f9fa;
}

.machines-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

/* Left Sidebar Navigation */
.machines-sidebar {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: relative;
    top: 0;
    max-height: none;
    overflow-y: visible;
    border: 1px solid #e5e7eb;
}



.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #6c4f3d;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.machine-nav {
    list-style: none;
}

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

.machine-nav-link {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #4b5563;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    line-height: 1.4;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border: 2px solid transparent;
    cursor: pointer;
}

.machine-nav-link:hover {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #3730a3;
    transform: translateX(4px);
    border-color: #818cf8;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.machine-nav-link.active {
    background: linear-gradient(135deg, #6c4f3d 0%, #8b5a3c 100%);
    color: white;
    font-weight: 500;
    border-color: #6c4f3d;
    box-shadow: 0 4px 12px rgba(108, 79, 61, 0.3);
}

.machine-name {
    display: block;
}

/* Right Content Area - All Machines Displayed Vertically */
.machines-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-height: 600px;
    border: 1px solid #e5e7eb;
}

.machine-detail {
    display: block;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.machine-detail:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.machine-detail.active {
    border-left: 4px solid #6c4f3d;
    padding-left: 20px;
}

.machine-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
}

.machine-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.machine-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.machine-image img {
    width: 100%;
    height: auto;
    display: block;
}

.machine-info p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.6;
}

.machine-specs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #6c4f3d;
}

.spec-item i {
    color: #6c4f3d;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.spec-item span {
    font-weight: 500;
    color: #374151;
}

/* Responsive Design for Machines Layout */
@media (max-width: 1024px) {
    .machines-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .machines-sidebar {
        position: relative;
        order: 2;
    }

    .machines-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .machine-body {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .machines-sidebar {
        padding: 20px;
    }

    .machines-content {
        padding: 30px 20px;
    }

    .sidebar-section h3 {
        font-size: 1rem;
    }

    .machine-nav-link {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .machine-detail {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .machine-header h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.equipment-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.equipment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6c4f3d, #8b6f5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.equipment-card:hover .equipment-icon {
    transform: scale(1.1);
}

.equipment-icon i {
    font-size: 2rem;
    color: white;
}

.equipment-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.equipment-card p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.equipment-specs {
    background: #f9fafb;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    color: #6c4f3d;
}

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

.software-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.software-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6c4f3d, #8b6f5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.software-card:hover .software-icon {
    transform: scale(1.1);
}

.software-icon i {
    font-size: 1.8rem;
    color: white;
}

.software-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
}

.software-list {
    list-style: none;
    text-align: left;
}

.software-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    color: #6b7280;
    font-size: 0.95rem;
}

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

/* Gallery Page Styles */
.gallery-hero {
    background: linear-gradient(to right top, #725643, #967557, #ba976c, #dcbb82, #fde199);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.gallery-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-filter {
    padding: 40px 0;
    background: #f9fafb;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #e5e7eb;
    color: #6b7280;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6c4f3d;
    color: white;
    border-color: #6c4f3d;
}

.gallery-grid {
    padding: 60px 0;
}

.gallery-section {
    margin-bottom: 80px;
}

.gallery-section:last-child {
    margin-bottom: 0;
}

.gallery-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.gallery-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6c4f3d, #fbbf24);
    border-radius: 2px;
}

.gallery-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

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

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

.gallery-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

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

.gallery-item:hover .gallery-image img {
    /* Zoom effect removed */
}



/* Mobile Responsive for New Pages */
@media (max-width: 768px) {
    .machines-hero-content h1,
    .gallery-hero-content h1 {
        font-size: 2.5rem;
        white-space: normal;
    }
    
    .hero-title {
        white-space: normal;
    }
    
    .machines-grid,
    .equipment-grid,
    .software-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .gallery-items {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-section {
        margin-bottom: 60px;
    }
    
    .gallery-section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    

}

@media (max-width: 480px) {
    .machines-hero-content h1,
    .gallery-hero-content h1 {
        font-size: 2rem;
    }
    
    .gallery-section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .machines-hero-content p,
    .gallery-hero-content p {
        font-size: 1.1rem;
    }
    
    .gallery-items {
        grid-template-columns: 1fr;
    }
} 

/* Updated Services Design */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

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

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

.service-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

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

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

.service-content {
    padding: 30px;
    text-align: center;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(108, 79, 61, 0.9);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    display: none;
}

.service-card:hover .service-link {
    opacity: 1;
    display: block;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2,
.contact-form h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 40px;
    text-align: center;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

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

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-color);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

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

.form-group label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

/* .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
} */

/* .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
} */

/* Map styles moved to contact form area */

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.map-container iframe {
    display: block;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(to right top, #725643, #967557, #ba976c, #dcbb82, #fde199);
    padding: 100px 0;
    text-align: center;
    color: white;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 20px;
    }
    
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .contact-item {
        padding: 15px;
        gap: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 18px;
    }
    
    .btn-primary {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-hero-content p {
        font-size: 1rem;
    }
} 

/* Service Detail Page Styles */

/* Breadcrumb Navigation */
.breadcrumb-section {
    padding: 20px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #6c4f3d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #8b6f5a;
}

.breadcrumb-nav .separator {
    color: #9ca3af;
}

.breadcrumb-nav .current {
    color: #6b7280;
    font-weight: 500;
}

/* Service Content Section */
.service-content-section {
    padding: 80px 0;
    background: white;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-content-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
}

.service-content-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin: 40px 0 20px 0;
}

.service-content-text p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Detailed Process Steps */
.process-steps-detailed {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.process-step-detailed {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #6c4f3d;
    transition: all 0.3s ease;
}

.process-step-detailed:hover {
    background: #f3f4f6;
    transform: translateX(5px);
}

.step-number-detailed {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6c4f3d 0%, #8b6f5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content-detailed h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.step-content-detailed p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Technology Grid */
.technology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.technology-item {
    text-align: center;
    padding: 25px 20px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.technology-item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #6c4f3d;
}

.technology-item i {
    font-size: 2.5rem;
    color: #6c4f3d;
    margin-bottom: 15px;
}

.technology-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.technology-item p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

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

.advantages-list li {
    padding: 15px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

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

.advantages-list strong {
    color: #1f2937;
    font-weight: 600;
}

/* Service Content Image */
.service-content-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.service-content-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(108, 79, 61, 0.9) 0%, rgba(139, 111, 90, 0.9) 100%);
    color: white;
    padding: 30px 25px;
    text-align: center;
}

.image-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.image-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Related Services */
.related-services {
    padding: 80px 0;
    background: #f8fafc;
}

.related-services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 50px;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

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

.related-service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-service-card:hover img {
    transform: scale(1.05);
}

.related-service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin: 20px 20px 10px 20px;
}

.related-service-card p {
    color: #6b7280;
    margin: 0 20px 20px 20px;
    line-height: 1.5;
}

.related-service-card .btn-secondary {
    margin: 0 20px 20px 20px;
    display: inline-block;
}

/* Service Hero */
.service-hero {
    background: linear-gradient(to right top, #725643, #967557, #ba976c, #dcbb82, #fde199);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.service-hero-content p {
    font-size: 1.25rem;
    color: #e5e7eb;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service CTA */
.service-cta {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.service-cta .btn-primary,
.service-cta .btn-outline {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-cta .btn-primary {
    background: #6c4f3d;
    color: white;
    border: none;
}

/* .service-cta .btn-primary:hover {
    background: #8b6f5a;
    transform: translateY(-2px);
} */

.service-cta .btn-outline {
    background: transparent;
    color: #6c4f3d;
    border: 2px solid #6c4f3d;
}

.service-cta .btn-outline:hover {
    background: #6c4f3d;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design for Service Detail Pages */
@media (max-width: 768px) {
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-content-text h2 {
        font-size: 2rem;
    }
    
    .service-content-text h3 {
        font-size: 1.3rem;
    }
    
    .technology-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step-detailed {
        padding: 20px;
    }
    
    .step-number-detailed {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .related-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .service-content-text h2 {
        font-size: 1.8rem;
    }
    
    .service-content-text h3 {
        font-size: 1.2rem;
    }
    
    .process-step-detailed {
        padding: 15px;
        gap: 15px;
    }
    
    .step-number-detailed {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .technology-item {
        padding: 20px 15px;
    }
    
    .technology-item i {
        font-size: 2rem;
    }
    
    .service-hero-content h1 {
        font-size: 2rem;
    }
    
    .service-hero-content p {
        font-size: 1rem;
    }
}

/* Custom Contact Icons */
.contact-custom-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-details h3 {
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-details p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    color: #6c4f3d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #8b6f5a;
}

/* Contact Form Section */
.contact-form h2 {
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

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

.map-container iframe {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-custom-icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .contact-item {
        padding: 18px;
        gap: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-custom-icon {
        width: 25px;
        height: 25px;
    }
}

/* Machine image hover effect */
.machine-image img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.machine-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Service Content Image Responsive */
@media (max-width: 768px) {
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-content-image img {
        height: 350px;
    }
    
    .image-overlay {
        padding: 20px 15px;
    }
    
    .image-overlay h3 {
        font-size: 1.1rem;
    }
    
    .image-overlay p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .service-content-image img {
        height: 280px;
    }
    
    .image-overlay {
        padding: 15px 10px;
    }
    
    .image-overlay h3 {
        font-size: 1rem;
    }
    
    .image-overlay p {
        font-size: 0.8rem;
    }
}

/* Video Gallery Items */
.video-item {
    position: relative;
}

.gallery-video {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Video controls styling */
.gallery-video video::-webkit-media-controls-panel {
    padding: 8px;
}

/* Mobile responsive for video items */
@media (max-width: 768px) {
    .gallery-video {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .gallery-video {
        height: 200px;
    }
}

/* Hide video controls but keep click functionality */
.gallery-video video {
    cursor: pointer;
}

.gallery-video video::-webkit-media-controls {
    display: none !important;
}

.gallery-video video::-webkit-media-controls-panel {
    display: none !important;
}

.gallery-video video::-webkit-media-controls-play-button {
    display: none !important;
}

.gallery-video video::-webkit-media-controls-timeline {
    display: none !important;
}

.gallery-video video::-webkit-media-controls-current-time-display {
    display: none !important;
}

.gallery-video video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

.gallery-video video::-webkit-media-controls-mute-button {
    display: none !important;
}

.gallery-video video::-webkit-media-controls-volume-slider {
    display: none !important;
}

.gallery-video video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

/* For Firefox */
.gallery-video video::-moz-media-controls {
    display: none !important;
}

/* For other browsers */
.gallery-video video {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Custom play/pause button */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-play-button:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.video-play-button i {
    color: white;
    font-size: 24px;
    margin-left: 4px; /* Play icon için hafif sağa kaydırma */
}

.video-play-button.paused i {
    margin-left: 0; /* Pause icon için ortala */
}

/* Video oynatılırken butonu gizle */
.gallery-video.playing .video-play-button {
    opacity: 0;
    pointer-events: none;
}

/* Video duraklatıldığında butonu göster */
.gallery-video.paused .video-play-button {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile responsive for play button */
@media (max-width: 768px) {
    .video-play-button {
        width: 60px;
        height: 60px;
    }
    
    .video-play-button i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .video-play-button {
        width: 50px;
        height: 50px;
    }
    
    .video-play-button i {
        font-size: 16px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6c4f3d, #8b5a3c);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(108, 79, 61, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #8b5a3c, #6c4f3d);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(108, 79, 61, 0.4);
}

.scroll-to-top:active {
    transform: translateY(0);
}

/* Mobile responsiveness for scroll to top button */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}