:root {
    --primary-gold: #D4AF37;
    --primary-gold-dark: #B4941F;
    --text-dark: #1A1A1A;
    --text-light: #F5F5F5;
    --bg-dark: #121212;
    --bg-light: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

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

.text-gold {
    color: var(--primary-gold);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    color: #000;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: #000;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}



/* Header */
.header {
    background: #010101;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
}

.logo img {
    height: 140px;
    /* Adjust according to logo aspect ratio */
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.nav-list a:hover {
    color: var(--primary-gold);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 5px 0;
}

/* Hero */
.hero {
    height: 100vh;
    background: #000 url('../assets/hero-truck.png') no-repeat center center;
    background-size: contain;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 130px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    color: #ddd;
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Info Bar */
.info-bar {
    background: var(--primary-gold);
    padding: 40px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.info-item h3 {
    margin: 10px 0 5px;
    color: #000;
}

.info-item p {
    color: #333;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    /* Glass effect */
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.service-card p {
    color: #ccc;
}

/* Regions */
/* Regions Grid */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    /* Forced 10 columns */
    gap: 10px;
    /* Reduced gap given high density */
    margin-top: 40px;
}

.region-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.region-card:hover::before {
    transform: scaleX(1);
}

.region-card span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    /* Reduced from 1.1rem */
}

.region-card svg {
    width: 24px;
    /* Reduced from 32px */
    height: 24px;
    fill: var(--primary-gold);
    transition: var(--transition);
}

.region-card:hover svg {
    transform: scale(1.1);
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h4 {
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.contact-item a,
.contact-item p {
    display: block;
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.map-frame {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 1px solid var(--primary-gold);
    border-radius: 8px;
    overflow: hidden;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Footer */
.footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-logo img {
    height: 130px;
    margin: 0 auto 15px;
}

.copyright {
    color: #666;
    margin-top: 20px;
    font-size: 0.9rem;
}

/* Floating Buttons */
.float-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 2000;
}

.whatsapp-float {
    background: transparent;
    right: 30px;
    box-shadow: none;
    /* Remove box shadow from container, apply to icon if needed */
    padding: 0;
    border-radius: 0;
}

.whatsapp-icon {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.3));
}

.call-float {
    background: var(--primary-gold);
    right: 100px;
    /* Offset to not overlap */
    font-size: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }

    .logo img {
        height: 100px;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #000;
        transition: 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .header-actions {
        display: none;
        /* Hide header button on mobile, use hero/float */
    }

    .mobile-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .info-bar {
        margin-top: 0;
    }

    /* Mobile 2-column fix for Regions and Gallery */
    .regions-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .region-card {
        padding: 15px 10px;
    }
}

/* Quote Modal Styles */
.quote-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.quote-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-gold);
    width: 0%;
    transition: width 0.3s ease;
}

.step {
    display: none;
    animation: slideIn 0.3s ease;
}

.step.active {
    display: block;
}

.step h4 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #333;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.option-btn {
    padding: 15px;
    border: 2px solid #eee;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.option-btn:hover,
.option-btn.selected {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
}

/* Forms */
.form-group {
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
}

.full-width {
    width: 100%;
    margin-top: 10px;
}

/* AI Analysis Animation */
.ai-analysis {
    text-align: center;
    padding: 20px 0;
}

.scanner {
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-gold);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    animation: pulse 1.5s infinite;
}

.scanner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.2;
}

.analysis-text {
    font-weight: 600;
    margin-bottom: 20px;
    height: 24px;
}

.detail-item {
    display: block;
    margin: 5px 0;
    font-size: 0.9rem;
    color: #666;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.detail-item:nth-child(1) {
    animation-delay: 0.5s;
}

.detail-item:nth-child(2) {
    animation-delay: 1.5s;
}

.detail-item:nth-child(3) {
    animation-delay: 2.5s;
}

/* Result */
.result-card {
    text-align: center;
}

.check-icon {
    width: 60px;
    height: 60px;
    background: #4CAF50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.price-range {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 15px 0;
}

.note {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Instagram Gallery Cards */
.gallery-grid {
    display: grid;
    /* 5 columns on desktop by reducing min-width */
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    padding: 20px 0;
}

.gallery-item {
    display: block;
    background: #fff;
    padding: 8px;
    /* Reduced padding */
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    /* Smaller shadow */
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Image Container to enforce aspect ratio */
.gallery-item img {
    width: 100%;
    height: 140px;
    /* Force smaller height */
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.6s ease;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    /* Gold glow */
}

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

/* Instagram Icon Overlay */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 16px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text inside overlay */
.gallery-item::before {
    content: 'Instagram\'da Gör ↗';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px);
    background: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    color: #000;
    opacity: 0;
    transition: all 0.3s;
    z-index: 2;
    pointer-events: none;
    white-space: nowrap;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

/* Contact Alignment */
.contact-people-grid {
    display: grid;
    grid-template-columns: max-content max-content;
    column-gap: 15px;
    row-gap: 8px;
    align-items: baseline;
}

.cp-name {
    text-align: right;
    font-weight: bold;
    color: #fff;
    font-size: 1.1rem;
    /* Slightly larger for emphasis */
}

.cp-phone {
    text-align: left;
}

.cp-phone a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
}

.cp-phone a:hover {
    text-decoration: underline;
}