/*
Theme Name: Sipsak Çekici
Theme URI: https://sipsakcekici.zaurac.io
Author: Zaurac
Description: 7/24 Çekici ve Yol Yardım - Turkasistans Tarzı Premium Tema
Version: 4.0.0
License: GPL v2 or later
Text Domain: sipsak
*/

/* ========== VARIABLES ========== */
:root {
    --primary: #F5A623;
    --primary-dark: #E09000;
    --primary-light: #FFD180;
    --secondary: #C41E3A;
    --secondary-dark: #9B1830;
    --dark: #1a1a2e;
    --darker: #0f0f1a;
    --text: #555555;
    --text-dark: #333333;
    --white: #FFFFFF;
    --gray: #f8f9fa;
    --gray-dark: #e9ecef;
}

/* ========== RESET ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-logo img {
    max-height: 45px;
}

.site-logo span {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.site-header.scrolled .site-logo span {
    color: var(--primary);
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-header.scrolled .main-nav a {
    color: var(--text-dark);
}

.main-nav a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--white);
}

.site-header.scrolled .menu-toggle {
    color: var(--text-dark);
}

.header-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(15,15,26,0.9) 100%);
}

/* Decorative Elements */
.hero-decor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-decor .circle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.08;
}

.hero-decor .circle-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
}

.hero-decor .circle-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
}

.hero-decor .circle-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 15%;
    opacity: 0.05;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 20px 100px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(245,166,35,0.2);
    border: 1px solid rgba(245,166,35,0.3);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    color: var(--white);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--primary);
    position: relative;
}

.hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Form */
.hero-form-wrapper {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 40px;
    max-width: 850px;
    margin: 0 auto;
}

.hero-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group label {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.12);
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23F5A623' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.form-group select option {
    background: var(--dark);
    color: var(--white);
}

.form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 10px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    border: none;
    padding: 18px 50px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(196,30,58,0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196,30,58,0.4);
}

.btn-submit i {
    margin-right: 10px;
}

/* ========== SERVICES GALLERY ========== */
.services-gallery {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    color: var(--text);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 80px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 8px;
}

.gallery-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 100px 0;
    background: var(--gray);
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.features-header p {
    color: var(--text);
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 36px;
    box-shadow: 0 10px 30px rgba(245,166,35,0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
}

/* ========== CTA BANNER WITH CAR ========== */
.cta-banner {
    position: relative;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    padding: 0;
    overflow: hidden;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 450px;
}

.cta-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.cta-image img {
    max-width: 120%;
    margin-left: -10%;
}

.cta-image-placeholder {
    font-size: 200px;
    color: rgba(255,255,255,0.2);
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.cta-content {
    padding: 60px;
    color: var(--white);
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.8;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--secondary) !important;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* ========== SERVICE CARDS ========== */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-dark);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 70px;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-content h3 i {
    color: var(--primary);
}

.service-content ul {
    list-style: none;
}

.service-content ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text);
    font-size: 15px;
    border-bottom: 1px solid var(--gray);
}

.service-content ul li:last-child {
    border-bottom: none;
}

.service-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 100px 0;
    background: var(--gray);
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover,
.faq-item.active {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 17px;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    width: 40px;
    height: 40px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question i {
    background: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text);
    line-height: 1.8;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    color: var(--white);
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-info > p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: rgba(255,255,255,0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateX(10px);
}

.contact-item .icon {
    width: 55px;
    height: 55px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item-content h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-item-content p,
.contact-item-content a {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--darker);
    padding: 40px 0;
    text-align: center;
}

.site-footer p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* ========== WHATSAPP ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: var(--white) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 40px rgba(37,211,102,0.6); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .gallery-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cta-image {
        display: none;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        padding: 100px 30px;
        z-index: 99;
    }
    
    .main-nav.active {
        display: flex;
        align-items: flex-start;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .main-nav a {
        display: block;
        padding: 18px 0;
        font-size: 18px;
        color: var(--text-dark) !important;
        border-bottom: 1px solid var(--gray);
    }
    
    .menu-toggle {
        display: block;
        z-index: 100;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-form {
        grid-template-columns: 1fr;
    }
    
    .hero-form-wrapper {
        padding: 30px 20px;
    }
    
    .gallery-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .section-header h2,
    .features-header h2 {
        font-size: 28px;
    }
    
    .cta-content {
        padding: 40px 20px;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}
