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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 80px; /* Header yüksekliği için */
}

/* Web'de top bar varsa body padding'ini artır */
@media (min-width: 768px) {
    body {
        padding-top: 128px; /* Header + Top Bar yüksekliği */
    }
}

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

/* Top Bar */
.top-bar {
    background: #1e4a24;
    color: white;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    display: none; /* Mobilde gizli */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
    height: 48px;
    box-sizing: border-box;
}

/* Web'de top bar'ı göster */
@media (min-width: 768px) {
    .top-bar {
        display: block;
    }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 2rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-item i {
    color: #2f6f34;
    font-size: 1rem;
}

.top-bar-item span {
    font-weight: 500;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease;
}

/* Web'de top bar varsa header'ı aşağı kaydır */
@media (min-width: 768px) {
    .header {
        top: 48px; /* top bar yüksekliği */
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-right: auto;
}

.nav-logo {
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-brand:hover .nav-logo {
    transform: scale(1.1);
}

.nav-brand i {
    font-size: 2rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2563eb;
}

/* Social Media Icons */
.nav-social {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    border-color: #2563eb;
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #dc2743;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

.social-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

/* Accordion menu styles removed - simple list menu now */

/* Simple list menu - no dropdowns */

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

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

.services-section .service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.services-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.services-section .service-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.services-section .service-card:hover .service-image img {
    transform: scale(1.1);
}

.services-section .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-weight: 600;
}

.services-section .service-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.services-section .btn-outline {
    background: transparent;
    color: #2f6f34;
    border: 2px solid #2f6f34;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.services-section .btn-outline:hover {
    background: #2f6f34;
    color: white;
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2f6f34 0%, #1e4a24 100%);
    color: white;
    text-align: center;
}

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

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta-section .cta-buttons .btn {
    min-width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
}

/* Count class removed - no longer needed */

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

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

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 2rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #2f6f34;
    color: white;
}

.btn-primary:hover {
    background: #1e4a24;
    transform: translateY(-2px);
}

.btn-outline {
    background: #2f6f34;
    color: white;
    border: 2px solid #2f6f34;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #1e4a24;
    border-color: #1e4a24;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: white;
    color: #2f6f34;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

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

.hero-graphic {
    display: flex;
    gap: 2rem;
    font-size: 4rem;
    opacity: 0.8;
}

.hero-graphic i {
    animation: float 3s ease-in-out infinite;
}

.hero-graphic i:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-graphic i:nth-child(3) {
    animation-delay: 1s;
}

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

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: floatDot 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-dot:nth-child(1) { top: 20%; left: 10%; }
.floating-dot:nth-child(2) { top: 60%; right: 15%; }
.floating-dot:nth-child(3) { bottom: 30%; left: 20%; }
.floating-dot:nth-child(4) { bottom: 60%; right: 25%; }

@keyframes floatDot {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-30px) scale(1.5);
        opacity: 0.8;
    }
}

/* Slider Section */
.slider-section {
    padding: 0;
    background: white;
    margin-top: 0;
    height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider {
    position: relative;
    width: 100%;
    height: 72vh;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 72vh;
}

.slide {
    min-width: 100%;
    position: relative;
    height: 72vh;
}

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

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.slide-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

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

.slider-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
}

/* Responsive Slider */
@media (max-width: 768px) {
    .slide-content {
        bottom: 0;
        padding: 2rem 1.5rem;
    }
    
    .slide-content h3 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .slide-content {
        bottom: 0;
        padding: 1.5rem 1rem;
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

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

.dot.active {
    background: white;
    transform: scale(1.3);
}

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

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

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

/* Main Services Grid */
.services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Main Service Card */
.services .service-card {
    background: white;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    cursor: pointer;
}

.services .service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Main Service Image */
.services .service-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2f6f34, #1e4a24);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.3s ease;
}

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

.services .service-card:hover .service-image {
    transform: scale(1.1);
}

/* Main Service Card Title */
.services .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    padding: 1rem;
    margin: 0;
    border-radius: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Service Overlay */
.services .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(47, 111, 52, 0.95), rgba(30, 74, 36, 0.95));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border-radius: 16px;
    z-index: 4;
}

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

.services .service-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.services .service-overlay p {
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
}

.services .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.services .btn-outline:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* Products Section */
.products {
    padding: 5rem 0;
}

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

.product-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2f6f34, #1e4a24);
    transition: width 0.3s ease;
}

.product-card:hover::after {
    width: 100%;
}

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

.product-image {
    width: 80px;
    height: 80px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #2563eb;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.product-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.about-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    animation: countUp 2s ease-out forwards;
}

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

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

.about-image {
    display: flex;
    justify-content: center;
}

.about-graphic {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #2f6f34, #1e4a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-item i {
    width: 50px;
    height: 50px;
    background: #2f6f34;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.contact-item p {
    color: #6b7280;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2f6f34;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(47, 111, 52, 0.1);
}

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

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

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 3rem 0 2rem 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa, #93c5fd);
    animation: footerGlow 3s ease-in-out infinite;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.footer-brand:hover {
    transform: translateY(-3px);
}

.footer-logo {
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-brand:hover .footer-logo {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.footer-brand span {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.footer-brand:hover span {
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

.footer p {
    color: #d1d5db;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer p::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #60a5fa;
    transition: width 0.3s ease;
}

.footer p:hover::after {
    width: 100%;
}

.footer p:hover {
    color: #f3f4f6;
    transform: translateX(5px);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    transition: left 0.5s ease;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    border-color: #60a5fa;
}

.social-links a:nth-child(1):hover { /* Facebook */
    background: #3b5998;
    color: white;
    border-color: #3b5998;
}

.social-links a:nth-child(2):hover { /* Twitter */
    background: #00acee;
    color: white;
    border-color: #00acee;
}

.social-links a:nth-child(3):hover { /* Instagram */
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    border-color: transparent;
}

.social-links a:nth-child(4):hover { /* LinkedIn */
    background: #0077b5;
    color: white;
    border-color: #0077b5;
}

/* Footer Animations */
@keyframes footerGlow {
    0%, 100% {
        opacity: 0.7;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
}

/* Floating elements in footer */
.footer::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: footerFloat 6s ease-in-out infinite;
}

@keyframes footerFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Mobil Menü */
.nav-menu.active {
    display: flex !important;
    position: fixed;
    top: 120px; /* Header height + top bar */
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 16px 16px;
    z-index: 9999;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.nav-menu.active li {
    margin: 0.3rem 0;
    text-align: center;
}

.nav-menu.active a {
    font-size: 1rem;
    padding: 0.2rem 0.2rem;
    display: block;
    border-bottom: 1px solid #eee;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Mobilde sosyal medya ikonlarını gizle */
    .nav-social {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 1rem 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-us .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-photo {
        height: 400px;
        max-width: 100%;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .gallery-item {
        min-width: 250px;
        height: 180px;
    }
    
    .gallery-track {
        gap: 1.5rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .brand-item {
        padding: 1.5rem;
    }
    
    .brand-logo {
        width: 60px;
        height: 60px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer::after {
        display: none;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    /* Main Services Grid Mobile */
    .services .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .services .service-card {
        aspect-ratio: 1;
        padding: 0; /* Padding'i kaldır */
    }
    
    /* Main Service Image Mobile */
    .services .service-image {
        width: 100% !important; /* Tam genişlik */
        height: 100% !important; /* Tam yükseklik */
        font-size: 2rem;
        position: absolute !important; /* Absolute pozisyon koru */
        top: 0 !important;
        left: 0 !important;
        z-index: 1 !important;
    }
    
    .services .service-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        border-radius: 16px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* About Us Section */
.about-us {
    padding: 5rem 0;
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.about-stats .stat {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.about-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

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

.about-image {
    display: flex;
    justify-content: center;
}

.about-photo {
    width: 100%;
    max-width: 500px;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-photo:hover {
    transform: scale(1.02);
}

/* Why Choose Tree Toner Section */
.why-choose-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-choose-us .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.reason-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #2f6f34;
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2f6f34 0%, #1e4a24 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(47, 111, 52, 0.3);
}

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

.reason-card h3 {
    color: #2f6f34;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.reason-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

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

@media (max-width: 768px) {
    .why-choose-us {
        padding: 4rem 0;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .reason-card {
        padding: 2rem 1.5rem;
    }
    
    .reason-icon {
        width: 70px;
        height: 70px;
    }
    
    .reason-icon i {
        font-size: 1.8rem;
    }
}

/* Product Gallery Section */
.product-gallery {
    padding: 5rem 0;
    background: white;
    overflow: hidden;
    width: 100%;
}

.product-gallery .section-title {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.gallery-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    width: 100%;
}

.gallery-track {
    display: flex;
    gap: 2rem;
    animation: scrollGallery 30s linear infinite;
    width: max-content;
}

.gallery-item {
    position: relative;
    min-width: 300px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

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

/* Pause animation on hover */
.gallery-container:hover .gallery-track {
    animation-play-state: paused;
}

/* Brands Section */
.brands {
    padding: 5rem 0;
    background: #f8fafc;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.brand-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    cursor: pointer;
}

.brand-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.brand-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.brand-item:hover .brand-logo {
    background: #2563eb;
    transform: scale(1.1);
}

.brand-item:hover .brand-logo img {
    transform: scale(1.1);
}

.brand-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.brand-item:hover h4 {
    color: #2563eb;
}

.brand-item p {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s ease;
}

.brand-item:hover p {
    color: #374151;
}

/* Active Menu Styles */
.nav-menu li.active a {
    color: #2563eb;
    font-weight: 600;
    position: relative;
}

.nav-menu li.active a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2563eb;
    border-radius: 1px;
}

.dropdown.active .dropdown-toggle {
    color: #1d4ed8;
    font-weight: 600;
}

.dropdown-menu a.active {
    background: #1d4ed8;
    color: white;
    padding-left: 2rem;
    font-weight: 600;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* SEO Footer Styles */
.seo-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.seo-column h4 {
    color: #60a5fa;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.seo-column ul {
    list-style: none;
    padding: 0;
}

.seo-column ul li {
    margin-bottom: 0.5rem;
}

.seo-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.seo-column ul li a:hover {
    color: #60a5fa;
    transform: translateX(5px);
}

/* Responsive SEO Footer */
@media (max-width: 768px) {
    .seo-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .seo-column ul li a:hover {
        transform: translateY(-2px);
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 50px;
    text-align: center;
    margin-top: 40px;
}

/* Breadcrumb Styles */
.breadcrumb {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

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

.breadcrumb a:hover {
    color: white;
}

.breadcrumb .separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb .current {
    color: white;
    font-weight: 500;
}

.page-header h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Service Detail Styles */
.service-detail {
    padding: 5rem 0;
    background: white;
}

.service-content {
    display: block;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.service-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-column {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: #2f6f34;
}

.service-column h3 {
    color: #2f6f34;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.service-column ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-column li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-column li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2f6f34;
    font-weight: bold;
}

.service-content:nth-child(even) {
    direction: rtl;
}

.service-content:nth-child(even) .service-text {
    direction: ltr;
}

.service-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.service-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2563eb;
}

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

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

.service-text ul li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.service-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.brands-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.brands-list .brand-item {
    background: #f8fafc;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-weight: 600;
    color: #374151;
    transition: all 0.3s ease;
}

.brands-list .brand-item:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Service Detail Page Image */
.service-detail .service-image {
    text-align: center;
}

.service-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Responsive Service Detail */
@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .service-content:nth-child(even) {
        direction: ltr;
    }
    
    .service-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-column {
        padding: 1.5rem;
    }
    
    .service-image img {
        height: 300px;
    }
}

.service-detail .service-image img {
    width: 60%;
    max-width: 300px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

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

/* Related Services Grid */
.related-services .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Related Services için özel stiller */
.related-services .service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

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

.related-services .service-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.related-services .service-card:hover .service-image img {
    transform: scale(1.1);
}

.related-services .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-weight: 600;
}

.related-services .service-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.related-services .btn-outline {
    background: transparent;
    color: #2f6f34;
    border: 2px solid #2f6f34;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.related-services .btn-outline:hover {
    background: #2f6f34;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design for Service Pages */
@media (max-width: 1024px) {
    .related-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .service-content {
        display: block;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .brands-list {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Services Section Mobile */
    .services-section .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-section .service-card {
        padding: 1.5rem;
    }
    
    /* Related Services Mobile */
    .related-services .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .related-services .carousel-nav .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .related-services .service-card {
        padding: 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section .cta-buttons .btn {
        min-width: 100%;
        max-width: 300px;
        height: 50px;
    }
}

/* Contact Page Styles */
.contact-info {
    padding: 6rem 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.contact-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2f6f34, #1e4a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
}

.contact-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.contact-card a {
    color: #2f6f34;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #1e4a24;
}

/* Contact Form & Map */
.contact-form-map {
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-form-section h2,
.contact-map-section h2 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.contact-form-section p,
.contact-map-section p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    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: #2f6f34;
}

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

/* Map Section */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.map-info h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.map-info ul {
    list-style: none;
    padding: 0;
}

.map-info li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #6b7280;
}

.map-info i {
    color: #2f6f34;
    margin-right: 0.75rem;
    width: 20px;
}

/* WhatsApp CTA */
.whatsapp-cta {
    padding: 3rem 0;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.whatsapp-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.whatsapp-icon {
    font-size: 3rem;
    opacity: 0.9;
}

.whatsapp-text h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.whatsapp-text p {
    opacity: 0.9;
    margin: 0;
}

.whatsapp-cta .btn-whatsapp {
    background: white;
    color: #25d366;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-cta .btn-whatsapp:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Business Details */
.business-details {
    padding: 4rem 0;
    background: #f8fafc;
}

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

.detail-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.detail-card h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

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

.detail-card li {
    padding: 0.5rem 0;
    color: #6b7280;
    border-bottom: 1px solid #f3f4f6;
}

.detail-card li:last-child {
    border-bottom: none;
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 1000px;
    }
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
}

/* Corporate Page Styles */
.company-overview {
    padding: 6rem 0;
    background: white;
}

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

.overview-text h2 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.overview-text p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2f6f34;
    margin-bottom: 0.5rem;
}

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

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Mission Vision Values */
.mission-vision {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.mv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2f6f34, #1e4a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

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

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

.mv-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.mv-card li {
    color: #6b7280;
    margin-bottom: 0.75rem;
    padding-left: 1rem;
}

/* Company History */
.company-history {
    padding: 6rem 0;
    background: white;
}

.company-history h2 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #2f6f34;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #2f6f34;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 100px;
    text-align: center;
    z-index: 10;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    flex: 1;
    max-width: 300px;
}

.timeline-content h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.team-section h2 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.team-section > .container > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

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

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

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid #2f6f34;
}

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

.team-member h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.member-title {
    color: #2f6f34;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-desc {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

/* Quality Section */
.quality-section {
    padding: 6rem 0;
    background: white;
}

.quality-section h2 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.quality-item {
    text-align: center;
    padding: 2rem 1rem;
}

.quality-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2f6f34, #1e4a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.quality-item h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

/* Responsive Corporate Page */
@media (max-width: 1024px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .mv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 30px;
    }
    
    .timeline-year {
        position: absolute;
        left: -60px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .timeline-content {
        margin-left: 0;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .company-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-text h2,
    .company-history h2,
    .team-section h2,
    .quality-section h2 {
        font-size: 2rem;
    }
}
