/* Denizli Asil Halı & Koltuk Yıkama - Ana Stil Dosyası */

:root {
    --primary: #1e5a96;
    --primary-dark: #143d68;
    --secondary: #f39c12;
    --success: #27ae60;
    --whatsapp: #25d366;
    --dark: #1a2332;
    --gray: #6c757d;
    --light: #f8f9fa;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 10px 40px rgba(30,90,150,0.15);
    --radius: 12px;
    --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--dark);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; color: var(--dark); }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
p { margin-bottom: 15px; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.bg-light { background: var(--light); }
.section-padding { padding: 80px 0; }
.d-md-none { display: none; }
@media (min-width: 768px) { .d-md-none { display: inline; } }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn-lg { padding: 15px 35px; font-size: 1rem; }
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--light); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); border-color: var(--whatsapp); }
.btn-whatsapp:hover { background: #1ea952; color: var(--white); transform: translateY(-2px); }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar a { color: var(--white); margin-left: 15px; }
.top-bar a:hover { color: var(--secondary); }
.top-bar i { margin-right: 5px; color: var(--secondary); }
.top-left span { margin-right: 20px; }

/* Header */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
}
.logo i {
    font-size: 2.5rem;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo strong { display: block; font-size: 1.4rem; color: var(--primary); }
.logo span { display: block; font-size: 0.75rem; color: var(--gray); }

.main-nav ul { display: flex; gap: 5px; align-items: center; }
.main-nav a {
    display: block;
    padding: 10px 15px;
    color: var(--dark);
    font-weight: 500;
    border-radius: 6px;
    position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); background: rgba(30,90,150,0.08); }
.has-dropdown { position: relative; }
.has-dropdown > a i { font-size: 0.7rem; margin-left: 3px; transition: var(--transition); }
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    display: block;
    flex-direction: column;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li { display: block; width: 100%; }
.dropdown a { padding: 10px 20px; border-radius: 0; font-size: 0.9rem; }
.dropdown a:hover { background: var(--light); }

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
}
.header-cta:hover { background: #e08e00; color: var(--white); transform: translateY(-2px); }
.header-cta i { font-size: 1.2rem; }

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    padding: 8px 12px;
    background: var(--light);
    border-radius: 6px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}
.slider-wrap { position: relative; height: 100%; }
.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide-content { max-width: 700px; color: var(--white); }
.slide-tag {
    display: inline-block;
    background: rgba(243,156,18,0.9);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.slide-content h1 {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}
.slide-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: var(--white);
    width: 50px; height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    z-index: 10;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}
.slider-nav:hover { background: var(--white); color: var(--primary); }
.slider-nav.prev { left: 30px; }
.slider-nav.next { right: 30px; }
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.slider-dots span {
    width: 12px; height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}
.slider-dots span.active { background: var(--white); width: 35px; border-radius: 6px; }

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}
.section-tag {
    display: inline-block;
    background: rgba(30,90,150,0.1);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-header h2 { font-size: 2.2rem; margin-bottom: 15px; }
.section-header p { color: var(--gray); font-size: 1.05rem; }

/* Features */
.features-section {
    padding: 60px 0;
    background: var(--white);
    position: relative;
    margin-top: -50px;
    z-index: 5;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    background: var(--white);
    box-shadow: var(--shadow-hover);
    padding: 40px;
    border-radius: var(--radius);
}
.feature-box { text-align: center; }
.feature-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}
.feature-box h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-box p { color: var(--gray); font-size: 0.9rem; margin: 0; }

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
}
.services-grid-3 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-img { position: relative; height: 220px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-img img { transform: scale(1.1); }
.service-icon {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 60px; height: 60px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 5px 20px rgba(243,156,18,0.4);
}
.service-body { padding: 30px 25px 25px; }
.service-body h3 { margin-bottom: 12px; }
.service-body h3 a { color: var(--dark); }
.service-body h3 a:hover { color: var(--primary); }
.service-body p { color: var(--gray); margin-bottom: 15px; font-size: 0.95rem; }
.service-price {
    display: inline-block;
    background: rgba(39,174,96,0.1);
    color: var(--success);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}
.service-link:hover { gap: 12px; }

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image { position: relative; }
.about-image img { border-radius: var(--radius); box-shadow: var(--shadow-hover); }
.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary);
    color: var(--white);
    padding: 25px 35px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(243,156,18,0.4);
}
.about-badge strong { display: block; font-size: 2.5rem; line-height: 1; }
.about-badge span { font-size: 0.85rem; }
.about-content .section-tag { margin-bottom: 15px; }
.about-content h2 { margin-bottom: 20px; }
.about-features {
    margin: 25px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.about-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}
.about-features i { color: var(--success); }

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}
.process-step {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}
.process-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.step-num {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(30,90,150,0.08);
    line-height: 1;
}
.process-step > i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.process-step h3 { margin-bottom: 12px; }
.process-step p { color: var(--gray); font-size: 0.9rem; margin: 0; }

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 6rem;
    color: rgba(30,90,150,0.08);
    font-family: Georgia, serif;
    line-height: 1;
}
.stars { color: var(--secondary); margin-bottom: 12px; }
.testimonial-card p { color: var(--dark); font-style: italic; margin-bottom: 20px; }
.testimonial-author strong { display: block; color: var(--primary); }
.testimonial-author span { color: var(--gray); font-size: 0.85rem; }

/* Areas */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}
.areas-grid-lg { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.area-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}
.area-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.area-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}
.area-card h4 { color: var(--dark); margin-bottom: 5px; }
.area-card span { color: var(--gray); font-size: 0.85rem; }
.area-card-lg { padding: 40px 25px; }
.area-card-lg h3 { color: var(--dark); margin-bottom: 10px; }
.area-card-lg p { color: var(--gray); font-size: 0.9rem; margin-bottom: 15px; }
.area-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.faq-q {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    color: var(--dark);
}
.faq-q i { color: var(--primary); transition: var(--transition); }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 25px;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 25px 20px; }
.faq-a p { color: var(--gray); margin: 0; }

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 70px 0;
    color: var(--white);
}
.cta-content { text-align: center; }
.cta-content h2 { color: var(--white); margin-bottom: 15px; }
.cta-content p { font-size: 1.1rem; opacity: 0.95; margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Page Hero */
.page-hero {
    background-size: cover;
    background-position: center;
    padding: 80px 0 60px;
    color: var(--white);
    text-align: center;
}
.page-hero h1 { color: var(--white); font-size: 3rem; margin-bottom: 15px; }
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--white);
    backdrop-filter: blur(5px);
}
.breadcrumb a { color: var(--white); opacity: 0.9; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb i { font-size: 0.7rem; opacity: 0.7; }

/* Detail Page */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}
.detail-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.detail-image { margin-bottom: 30px; border-radius: var(--radius); overflow: hidden; }
.detail-image img { width: 100%; max-height: 400px; object-fit: cover; }
.detail-body h2 { color: var(--primary); margin-bottom: 20px; margin-top: 25px; }
.detail-body h3 { color: var(--dark); margin: 25px 0 15px; font-size: 1.3rem; }
.detail-body ul, .detail-body ol { margin: 15px 0; padding-left: 25px; }
.detail-body ul li, .detail-body ol li { margin-bottom: 8px; list-style: disc; }
.detail-body ol li { list-style: decimal; }
.detail-body p { color: #444; }
.detail-body strong { color: var(--dark); }

.detail-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.detail-cta h3 { color: var(--white); margin-bottom: 8px; }
.detail-cta p { margin: 0; opacity: 0.9; }
.detail-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Sidebar */
.detail-sidebar { position: sticky; top: 100px; }
.sidebar-box {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}
.sidebar-box h3 {
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border);
    font-size: 1.15rem;
}
.sidebar-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--dark);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
}
.sidebar-list li:last-child a { border-bottom: none; }
.sidebar-list li a:hover { color: var(--primary); padding-left: 5px; }
.sidebar-list li.active a { color: var(--primary); font-weight: 600; }
.sidebar-list li a i { color: var(--primary); width: 20px; }
.sidebar-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
}
.sidebar-features li i { color: var(--success); }
.sidebar-contact { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); }
.sidebar-contact h3 { color: var(--white); border-bottom-color: rgba(255,255,255,0.2); }
.sidebar-contact p { opacity: 0.95; }
.sidebar-phone {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin: 15px 0;
    text-align: center;
}
.sidebar-phone:hover { color: var(--secondary); }

.services-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin: 20px 0;
}
.service-mini {
    background: var(--light);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    color: var(--dark);
    transition: var(--transition);
}
.service-mini:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }
.service-mini i { display: block; font-size: 1.5rem; color: var(--primary); margin-bottom: 8px; }
.service-mini:hover i { color: var(--white); }
.service-mini span { font-size: 0.85rem; font-weight: 500; }

.related-services { margin-top: 60px; }
.related-services > h2 { margin-bottom: 30px; }

/* Gallery */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 8px 20px;
    background: var(--light);
    border-radius: 30px;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: var(--white); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    aspect-ratio: 4/3;
}
.gallery-item a { display: block; height: 100%; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(20,40,80,0.9));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay i { font-size: 2rem; margin-bottom: 10px; }
.gallery-overlay h4 { color: var(--white); }

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.lightbox.active { display: flex; flex-direction: column; }
.lightbox-img { max-width: 90%; max-height: 85%; border-radius: 8px; }
.lightbox-caption { color: var(--white); margin-top: 15px; }
.lightbox-close {
    position: absolute;
    top: 20px; right: 30px;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, rgba(30,90,150,0.05), rgba(243,156,18,0.05));
    border-left: 4px solid var(--primary);
    padding: 25px 30px;
    border-radius: var(--radius);
    margin-top: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.info-box > i { font-size: 2.5rem; color: var(--primary); }
.info-box h3 { margin-bottom: 5px; }
.info-box p { margin: 0; color: var(--gray); }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-info-cards {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.contact-info-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.contact-info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.ci-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}
.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.contact-info-card p { color: var(--gray); font-size: 0.95rem; margin: 5px 0; }
.contact-info-card a { color: var(--dark); }
.contact-info-card a:hover { color: var(--primary); }

.contact-form-wrap {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.contact-form-wrap h2 { margin-bottom: 10px; }
.contact-form-wrap > p { color: var(--gray); margin-bottom: 25px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; color: var(--dark); font-size: 0.9rem; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30,90,150,0.1);
}
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

.alert { padding: 15px 20px; border-radius: 8px; margin-bottom: 20px; display: flex; gap: 10px; align-items: center; }
.alert-success { background: rgba(39,174,96,0.1); color: var(--success); border-left: 4px solid var(--success); }
.alert-error { background: rgba(231,76,60,0.1); color: #e74c3c; border-left: 4px solid #e74c3c; }

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 60px 0;
}
.stat-box {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.stat-box i { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }
.stat-box strong { display: block; font-size: 2.2rem; color: var(--dark); }
.stat-box span { color: var(--gray); }

/* Mission Vision */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.mv-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid var(--primary);
}
.mv-box i { font-size: 3rem; color: var(--primary); margin-bottom: 20px; }
.mv-box h3 { margin-bottom: 15px; }
.mv-box p { color: var(--gray); margin: 0; }

/* Footer */
.main-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.85);
    padding: 60px 0 0;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.15rem;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 8px; font-size: 0.92rem; }
.footer-col ul li a:hover { color: var(--secondary); padding-left: 5px; }
.footer-col ul li a i { font-size: 0.75rem; color: var(--secondary); }
.contact-list li { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; font-size: 0.92rem; }
.contact-list i { color: var(--secondary); margin-top: 4px; }
.contact-list a { color: rgba(255,255,255,0.85); }
.contact-list a:hover { color: var(--secondary); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--secondary); transform: translateY(-3px); }
.footer-bottom {
    background: #0f1620;
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}
.footer-bottom p { margin: 3px 0; }

/* Fixed Buttons */
.whatsapp-fixed, .call-fixed {
    position: fixed;
    right: 20px;
    width: 55px; height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-fixed { background: var(--whatsapp); bottom: 90px; animation: pulse 2s infinite; }
.call-fixed { background: var(--primary); bottom: 20px; }
.whatsapp-fixed:hover, .call-fixed:hover { color: var(--white); transform: scale(1.1); }
@keyframes pulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(37,211,102,0.3), 0 0 0 0 rgba(37,211,102,0.7); }
    50% { box-shadow: 0 5px 20px rgba(37,211,102,0.3), 0 0 0 20px rgba(37,211,102,0); }
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .detail-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-image { max-width: 500px; margin: 0 auto; }
    .detail-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    .section-padding { padding: 50px 0; }
    .section-header h2 { font-size: 1.6rem; }
    .hero-slider { height: 480px; }
    .slide-content h1 { font-size: 1.9rem; }
    .slide-content p { font-size: 1rem; }
    .slider-nav { width: 40px; height: 40px; }
    .slider-nav.prev { left: 10px; }
    .slider-nav.next { right: 10px; }
    .header-cta span { display: none; }
    .header-cta { padding: 10px 14px; }
    .mobile-toggle { display: block; }
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--white);
        padding: 70px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 25px rgba(0,0,0,0.1);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.open { right: 0; }
    .main-nav ul { flex-direction: column; gap: 5px; }
    .main-nav a { padding: 12px 15px; border-radius: 8px; }
    .dropdown { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; padding-left: 15px; padding-top: 0; }
    .about-features { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 2rem; }
    .detail-content { padding: 25px; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .top-bar { font-size: 0.8rem; }
    .top-left span:not(:first-child) { display: none; }
    .about-badge { position: static; margin-top: 20px; display: inline-block; }
}
@media (max-width: 480px) {
    .slide-buttons .btn { width: 100%; justify-content: center; }
    .cta-buttons .btn { width: 100%; justify-content: center; }
    .detail-cta { flex-direction: column; text-align: center; }
    .features-grid { padding: 25px; }
}
