/* ============================================
   TURANJ CAR CARE - PAGES CSS
   Alt sayfa stilleri
   ============================================ */

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
    padding-top: 120px;
    padding-bottom: 80px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 30%, rgba(255,107,0,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 80%, rgba(255,107,0,0.06) 0%, transparent 40%),
        linear-gradient(135deg, #050505 0%, #0f0000 50%, #050505 100%);
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23CC0000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    max-width: 700px;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,107,0,0.3);
    border-radius: 50px;
    padding: 8px 20px 8px 8px;
    margin-bottom: 24px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.ph-3m {
    background: var(--red);
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 15px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: -1px;
}

.page-hero h1 {
    font-family: var(--font-accent);
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 700;
    color: var(--white);
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 20px;
}

.page-hero h1 .accent {
    color: var(--red);
}

.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 36px;
}

.page-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.page-hero-icon {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 200px;
    color: rgba(255,107,0,0.04);
    z-index: 1;
    pointer-events: none;
}

/* ============================================
   SERVICE INTRO
   ============================================ */
.service-intro {
    padding: 100px 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Intro Visual */
.intro-visual {
    display: flex;
    justify-content: center;
}

.intro-visual-inner {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-icon-main {
    width: 120px;
    height: 120px;
    background: var(--red);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: var(--white);
    position: relative;
    z-index: 3;
    box-shadow: 0 20px 60px rgba(255,107,0,0.35);
    animation: glowPulse 3s ease infinite;
}

.visual-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,107,0,0.15);
    animation: ringPulse 3s ease infinite;
}

.visual-ring.ring-1 {
    width: 180px;
    height: 180px;
    animation-delay: 0s;
}

.visual-ring.ring-2 {
    width: 260px;
    height: 260px;
    animation-delay: 0.5s;
    border-color: rgba(255,107,0,0.08);
}

.visual-ring.ring-3 {
    width: 340px;
    height: 340px;
    animation-delay: 1s;
    border-color: rgba(255,107,0,0.04);
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.03); opacity: 0.6; }
}

.visual-badge-float {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--white-soft);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    white-space: nowrap;
    z-index: 4;
}

.visual-badge-float i {
    color: var(--red);
    font-size: 13px;
}

.visual-badge-float.v1 {
    top: 20px;
    right: 0;
    animation: floatBadge 3s ease infinite;
}

.visual-badge-float.v2 {
    bottom: 60px;
    right: -10px;
    animation: floatBadge 3s ease 1s infinite;
}

.visual-badge-float.v3 {
    bottom: 20px;
    left: 10px;
    animation: floatBadge 3s ease 2s infinite;
}

/* Intro Content */
.intro-content .section-tag {
    display: block;
    text-align: left;
    margin-bottom: 16px;
}

.intro-content .section-tag::before,
.intro-content .section-tag::after {
    display: none;
}

.intro-content h2 {
    font-family: var(--font-accent);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--black);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.intro-highlights {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white-off);
    border-radius: 8px;
    border-left: 3px solid var(--red);
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(255,107,0,0.04);
}

.hi-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,107,0,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 16px;
    flex-shrink: 0;
}

.hi-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.hi-text span {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

/* ============================================
   SPECS SECTION
   ============================================ */
.specs-section {
    padding: 80px 0;
    background: var(--white-off);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.spec-card {
    background: var(--white);
    border: 1px solid var(--white-soft);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.spec-card:hover {
    border-color: rgba(255,107,0,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.spec-value {
    font-family: var(--font-accent);
    font-size: 52px;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 8px;
}

.spec-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.spec-desc {
    font-size: 12px;
    color: var(--gray-light);
    line-height: 1.5;
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages-section {
    padding: 100px 0;
    background: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.package-card {
    background: var(--white);
    border: 1px solid var(--white-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
}

.package-card:hover {
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    background: var(--black);
    border-color: var(--red);
    transform: scale(1.03);
}

.pkg-popular {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    padding: 8px;
    text-transform: uppercase;
}

.pkg-header {
    padding: 36px 28px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    text-align: center;
}

.package-card.featured .pkg-header {
    border-bottom-color: rgba(255,255,255,0.06);
    padding-top: 52px;
}

.pkg-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,107,0,0.08);
    border: 1px solid rgba(255,107,0,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--red);
    margin: 0 auto 16px;
    transition: var(--transition);
}

.package-card.featured .pkg-icon {
    background: rgba(255,107,0,0.15);
    border-color: rgba(255,107,0,0.4);
}

.package-card:hover .pkg-icon {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.pkg-header h3 {
    font-family: var(--font-accent);
    font-size: 26px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.package-card.featured .pkg-header h3 {
    color: var(--white);
}

.pkg-header p {
    font-size: 12px;
    color: var(--gray-light);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.package-card.featured .pkg-header p {
    color: rgba(255,255,255,0.35);
}

.pkg-body {
    padding: 24px 28px;
}

.pkg-features {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
}

.pkg-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--black-light);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.package-card.featured .pkg-features li {
    color: rgba(255,255,255,0.65);
    border-bottom-color: rgba(255,255,255,0.06);
}

.pkg-features li:last-child { border-bottom: none; }

.pkg-features li i.fa-check {
    color: var(--red);
    font-size: 12px;
    flex-shrink: 0;
}

.pkg-features li i.fa-times {
    color: var(--gray-light);
    font-size: 12px;
    flex-shrink: 0;
}

.pkg-features li i.muted {
    color: rgba(0,0,0,0.15);
}

.package-card.featured .pkg-features li i.muted {
    color: rgba(255,255,255,0.15);
}

.pkg-note {
    font-size: 12px;
    color: var(--gray-light);
    font-style: italic;
    text-align: center;
    padding: 8px 0;
}

.package-card.featured .pkg-note {
    color: rgba(255,255,255,0.3);
}

.pkg-footer {
    padding: 0 28px 28px;
    text-align: center;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: var(--transition);
    background: transparent;
    color: var(--black);
    border: 2px solid rgba(0,0,0,0.15);
    width: 100%;
    justify-content: center;
    font-family: var(--font-main);
}

.btn-outline-dark:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.pkg-footer .btn-primary {
    width: 100%;
    justify-content: center;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: 100px 0;
    background: var(--white-off);
}

.benefits-section.dark-section {
    background: var(--black);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    background: rgba(255,107,0,0.06);
    border-color: rgba(255,107,0,0.2);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,107,0,0.1);
    border: 1px solid rgba(255,107,0,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--red);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    box-shadow: 0 8px 24px rgba(255,107,0,0.3);
}

.benefit-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--white-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.faq-item.open {
    border-color: rgba(255,107,0,0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255,107,0,0.02);
}

.faq-question span {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.4;
}

.faq-question i {
    color: var(--red);
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 16px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: 80px 0 100px;
    background: var(--white);
}

.gallery-filters {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 2px solid var(--white-soft);
    background: var(--white);
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #1a0000);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-inner {
    transform: scale(1.05);
}

.gallery-placeholder-icon {
    font-size: 48px;
    color: rgba(255,107,0,0.2);
    transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder-icon {
    color: rgba(255,107,0,0.4);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,107,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 24px 16px 12px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-label {
    transform: translateY(0);
}

.gallery-item.hidden {
    display: none;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-visual-main {
    background: var(--black);
    border-radius: 12px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}

.about-visual-main-inner {
    text-align: center;
    position: relative;
}

.about-visual-main-inner > i {
    font-size: 100px;
    color: rgba(255,107,0,0.1);
}

.about-stat-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-stat-card {
    background: var(--white-off);
    border: 1px solid var(--white-soft);
    border-radius: 8px;
    padding: 20px 16px;
    text-align: center;
    transition: var(--transition);
}

.about-stat-card:hover {
    border-color: rgba(255,107,0,0.2);
    background: rgba(255,107,0,0.03);
}

.about-stat-card .stat-num {
    font-family: var(--font-accent);
    font-size: 32px;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    letter-spacing: -1px;
    display: block;
    margin-bottom: 4px;
}

.about-stat-card .stat-label {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.about-content .section-tag {
    display: block;
    text-align: left;
    margin-bottom: 16px;
}

.about-content .section-tag::before,
.about-content .section-tag::after {
    display: none;
}

.about-content h2 {
    font-family: var(--font-accent);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--black);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.about-content > p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--white-off);
    border-radius: 8px;
    border-left: 3px solid var(--red);
    transition: var(--transition);
}

.about-value:hover {
    background: rgba(255,107,0,0.04);
}

.about-value > i {
    color: var(--red);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.about-value h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.about-value p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.5;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    padding: 100px 0;
    background: var(--black);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    border-color: rgba(255,107,0,0.3);
    background: rgba(255,107,0,0.04);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 20px;
    font-family: var(--font-accent);
    letter-spacing: -1px;
    box-shadow: 0 8px 24px rgba(255,107,0,0.3);
}

.team-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.team-role {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.team-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.contact-info h3,
.contact-form-wrap h3 {
    font-family: var(--font-accent);
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.contact-info > p,
.contact-form-wrap > p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--white-soft);
    transition: var(--transition);
}

.contact-info-item:last-child { border-bottom: none; }

.ci-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,107,0,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-info-item:hover .ci-icon {
    background: var(--red);
    color: var(--white);
}

.ci-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.ci-text span,
.ci-text a {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
    transition: var(--transition);
}

.ci-text a:hover { color: var(--red); }

.contact-social {
    display: flex;
    gap: 10px;
}

.contact-social a {
    width: 40px;
    height: 40px;
    background: var(--white-off);
    border: 1px solid var(--white-soft);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 16px;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white-off);
    border: 1px solid var(--white-soft);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    font-family: var(--font-main);
    color: var(--black);
    background: var(--white);
    border: 1.5px solid var(--white-soft);
    border-radius: var(--radius);
    transition: var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(255,107,0,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 14px;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    padding: 0 0 80px;
    background: var(--white);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 360px;
    border: 1px solid var(--white-soft);
    box-shadow: var(--shadow);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #1a0000);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.map-placeholder i {
    font-size: 48px;
    color: var(--red);
    margin-bottom: 16px;
    animation: glowPulse 2s ease infinite;
}

.map-placeholder h4 {
    font-family: var(--font-accent);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.map-placeholder p {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   COLORS SECTION (Araç Kaplama)
   ============================================ */
.colors-section {
    padding: 100px 0;
    background: var(--white-off);
}

.colors-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.color-swatch {
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.swatch-color {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 2px solid rgba(0,0,0,0.08);
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.color-swatch:hover .swatch-color {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    border-color: rgba(255,107,0,0.3);
}

.swatch-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.3px;
}

/* ============================================
   RESPONSIVE - PAGES
   ============================================ */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .colors-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .intro-visual {
        order: -1;
    }

    .intro-visual-inner {
        width: 300px;
        height: 300px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .package-card.featured {
        transform: none;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: 380px;
    }

    .page-hero-icon {
        display: none;
    }

    .page-hero h1 {
        font-size: clamp(36px, 10vw, 56px);
        letter-spacing: -2px;
    }

    .page-hero-actions {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .colors-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .about-stat-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .colors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-filters {
        gap: 6px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 11px;
    }
}