/* ===== VIP TAŞıMACıLıK - LÜKS SİYAH & GOLD TEMA ===== */

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

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --dark-gray: #2a2a2a;
    --light-gray: #f5f5f5;
    --gold: #d4af37;
    --gold-light: #e6c866;
    --gold-dark: #b8941f;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.3);
    --gold-shadow: rgba(212, 175, 55, 0.3);
    
    --font-primary: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 4px 20px var(--shadow);
    --gold-gradient: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    --black-gradient: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--white);
    background-color: var(--primary-black);
    overflow-x: hidden;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--gold-gradient);
    color: var(--primary-black);
    padding: 12px 25px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--gold-shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--gold-shadow);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    padding: 12px 25px;
    border: 2px solid var(--gold);
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-logo i {
    font-size: 1.8rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.logo-link:hover {
    color: var(--gold-light);
    transform: scale(1.02);
}

.logo-link:hover i {
    transform: rotate(5deg);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-reservation {
    background: var(--gold-gradient) !important;
    color: var(--primary-black) !important;
    padding: 8px 20px !important;
    border-radius: var(--border-radius) !important;
    box-shadow: 0 2px 10px var(--gold-shadow) !important;
}

.btn-reservation:hover {
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--primary-black);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.6) 0%, rgba(26, 26, 26, 0.4) 50%, rgba(10, 10, 10, 0.7) 100%);
    z-index: 1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 3;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    justify-content: center;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    padding: 15px 30px;
    font-size: 1.1rem;
    min-width: 200px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    position: relative;
}

.hero-car-image {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.hero-car-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: float 3s ease-in-out infinite;
    border: 3px solid var(--gold);
    object-fit: cover;
    aspect-ratio: 16/9;
}

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

/* ===== SECTIONS ===== */
.services, .about, .contact, .reservation {
    padding: 5rem 0;
}

.services {
    background: var(--secondary-black);
}

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

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.service-card {
    background: var(--primary-black);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--dark-gray);
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: var(--gold);
}

.service-card .icon,
.service-card .service-icon {
    font-size: 4rem;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    line-height: 1.3;
}

.service-card p {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.service-card .service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 10, 0.1) 100%);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.service-card .service-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
}

.service-card .service-features span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6rem 0.8rem;
    background: rgba(212, 175, 55, 0.03);
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card .service-features span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: var(--transition);
}

.service-card .service-features span:hover::before {
    left: 100%;
}

.service-card .service-features span:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.service-card .service-features i {
    color: var(--gold);
    font-size: 0.8rem;
    background: var(--gold-gradient);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
}

.service-card .service-features i::before {
    color: var(--primary-black);
    font-weight: 700;
}

/* Service Card Image and Content */
.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--secondary-black);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(10, 10, 10, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.service-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: var(--primary-black);
    position: relative;
    gap: 1rem;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

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

.service-card .btn-primary {
    margin-top: auto;
    background: var(--gold-gradient);
    border: 2px solid var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

.service-card .btn-primary:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

/* ===== FLEET SECTION ===== */
.fleet {
    background: var(--primary-black);
}

.fleet-showcase {
    margin-bottom: 4rem;
}

.fleet-main-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
}

.fleet-hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/9;
}

.fleet-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 10, 10, 0.9));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.fleet-overlay h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.fleet-overlay p {
    color: var(--light-gray);
    font-size: 1.1rem;
}

.fleet-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.fleet-feature {
    background: var(--secondary-black);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--dark-gray);
    transition: var(--transition);
}

.fleet-feature:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--box-shadow);
}

.fleet-feature-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 4/3;
}

.fleet-feature-text {
    padding: 1.5rem;
}

.fleet-feature-text h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.fleet-feature-text p {
    color: var(--light-gray);
    line-height: 1.6;
}

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

/* ===== FLEET PREVIEW STYLES ===== */
.fleet-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.fleet-main-card {
    background: var(--secondary-black);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--dark-gray);
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.fleet-main-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.fleet-main-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.fleet-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.fleet-main-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(10, 10, 10, 0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.fleet-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.fleet-main-overlay h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.fleet-main-overlay p {
    color: var(--light-gray);
    font-size: 1rem;
}

.fleet-main-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fleet-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.fleet-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.fleet-feature-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.fleet-feature-item i {
    color: var(--gold);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.fleet-feature-item span {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.fleet-gallery {
    grid-column: 1 / -1;
    margin-top: 1rem;
}

.gallery-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-slides {
    position: relative;
    width: 100%;
    height: 300px;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
}

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

.gallery-slide .fleet-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-slide:hover .fleet-gallery-overlay {
    opacity: 1;
}

.gallery-slide .fleet-gallery-overlay span {
    background: var(--gold-gradient);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px var(--gold-shadow);
}

.gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.gallery-btn {
    background: rgba(0, 0, 0, 0.7);
    color: var(--gold);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    backdrop-filter: blur(5px);
}

.gallery-btn:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: scale(1.1);
}

.gallery-btn i {
    font-size: 1rem;
}

.gallery-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--gold);
    transform: scale(1.2);
}

.fleet-cta {
    text-align: center;
    margin-top: 2rem;
}

.fleet-card {
    background: var(--secondary-black);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--dark-gray);
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: var(--gold);
}

.fleet-card-image {
    position: relative;
    overflow: hidden;
}

.fleet-card-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    aspect-ratio: 16/10;
}

.fleet-card:hover .fleet-card-img {
    transform: scale(1.05);
}

.fleet-card-header {
    background: var(--gold-gradient);
    color: var(--primary-black);
    padding: 1.5rem;
    text-align: center;
}

.fleet-card-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.fleet-card-body {
    padding: 1.5rem;
}

.fleet-features {
    list-style: none;
}

.fleet-features li {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.fleet-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--secondary-black);
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.features {
    display: grid;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--primary-black);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--gold);
}

.feature i {
    color: var(--gold);
    font-size: 1.5rem;
}

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

.about-image i {
    font-size: 12rem;
    color: var(--gold);
    opacity: 0.3;
}

/* ===== ABOUT STATS ===== */
.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--primary-black);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--dark-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--primary-black);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--light-gray);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-image-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-main-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.about-badge {
    background: var(--gold-gradient);
    color: var(--primary-black);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px var(--gold-shadow);
}

.about-image-card:hover .about-main-img {
    transform: scale(1.05);
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--primary-black);
}

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

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--secondary-black);
    border-radius: var(--border-radius);
    border: 1px solid var(--dark-gray);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold);
    width: 30px;
}

.contact-item h3 {
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--light-gray);
}

.contact-form {
    background: var(--secondary-black);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--dark-gray);
}

.contact-form h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    background: var(--primary-black);
    border: 1px solid var(--dark-gray);
    border-radius: var(--border-radius);
    color: var(--white);
    font-family: var(--font-primary);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold-shadow);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

/* ===== RESERVATION SECTION ===== */
.reservation {
    background: var(--secondary-black);
}

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

.reservation-info h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.reservation-info p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.reservation-features {
    display: grid;
    gap: 1rem;
}

.reservation-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--primary-black);
    border-radius: var(--border-radius);
    border: 2px solid var(--dark-gray);
    transition: var(--transition);
}

.reservation-button:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.reservation-button h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.reservation-button p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 400px;
}

.reservation-button .btn-whatsapp,
.contact-link .btn-secondary {
    margin-bottom: 1.5rem;
    min-width: 250px;
}

.contact-link {
    margin-top: 1rem;
}

.contact-link .btn-secondary {
    min-width: 200px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-black);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--dark-gray);
}

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

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--light-gray);
    margin-bottom: 1rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--dark-gray);
    color: var(--gold);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-gray);
    color: #888;
}

/* ===== FIXED WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

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

.whatsapp-float i {
    font-size: 1.8rem;
    color: var(--white);
}

/* ===== FIXED PHONE BUTTON ===== */
.phone-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--gold-shadow);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
    animation: phone-pulse 2s infinite;
    border: none;
}

.phone-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px var(--gold-shadow);
}

.phone-float i {
    font-size: 1.8rem;
    color: var(--primary-black);
}

@keyframes phone-pulse {
    0% { box-shadow: 0 4px 20px var(--gold-shadow); }
    50% { box-shadow: 0 4px 20px rgba(212, 175, 55, 0.8); }
    100% { box-shadow: 0 4px 20px var(--gold-shadow); }
}



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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 40px;
        min-height: 60vh;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
    }

    .section-title {
        font-size: 2rem;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

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

    .about-stats {
        order: -1;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-main-img {
        height: 200px;
    }

    .reservation-button {
        padding: 1.5rem;
    }

    .reservation-button h3 {
        font-size: 1.3rem;
    }

    .reservation-button p {
        font-size: 0.95rem;
    }

    .reservation-button .btn-whatsapp,
    .contact-link .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-top: 1.2rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 1.5rem;
    }

    .phone-float {
        bottom: 15px;
        left: 15px;
        width: 50px;
        height: 50px;
        display: flex !important;
        z-index: 999;
    }

    .phone-float i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 90px 15px 30px;
        min-height: 50vh;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card,
    .fleet-card {
        margin: 0 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .about-main-img {
        height: 180px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-image {
        height: 180px;
    }

    .service-card .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-card .service-features {
        gap: 0.5rem;
    }

    .service-card .service-features span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .service-card .service-features i {
        font-size: 0.8rem;
        width: 14px;
        height: 14px;
    }

    .service-card .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .quick-contact-item {
        padding: 2rem 1.5rem;
    }

    .qc-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .quick-contact-item h3 {
        font-size: 1.2rem;
    }

    .quick-contact-item p {
        font-size: 1rem;
    }

    .hero-car-image {
        display: none;
    }

    .company-stats {
        grid-template-columns: 1fr;
    }

    .mv-grid,
    .team-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .gallery-slides {
        height: 200px;
    }

    .gallery-btn {
        width: 30px;
        height: 30px;
    }

    .gallery-btn i {
        font-size: 0.8rem;
    }

    .gallery-dots {
        bottom: 0.5rem;
        gap: 0.3rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .phone-float {
        bottom: 10px;
        left: 10px;
        width: 45px;
        height: 45px;
        display: flex !important;
        z-index: 999;
    }

    .phone-float i {
        font-size: 1.3rem;
    }

    .whatsapp-float {
        bottom: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
    }

    .whatsapp-float i {
        font-size: 1.3rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} 

/* Lüks Araç Filomuz (YENİ) */
.fleet-new {
    padding: 5rem 0;
}
.fleet-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.fleet-card {
    background: var(--primary-black);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: box-shadow 0.3s;
}
.fleet-card:hover {
    box-shadow: 0 8px 32px var(--gold-shadow);
}
.fleet-slider {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--secondary-black);
    border-bottom: 1px solid var(--dark-gray);
    touch-action: pan-y;
}
.fleet-slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
    transition: opacity 0.4s;
}
.fleet-slide.active {
    display: block;
    position: relative;
    opacity: 1;
    z-index: 2;
}
.fleet-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
}
.fleet-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: var(--gold);
    border: none;
    font-size: 2rem;
    padding: 0 12px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}
.fleet-slider-btn.prev { left: 10px; }
.fleet-slider-btn.next { right: 10px; }
.fleet-slider-btn:hover { background: var(--gold); color: var(--primary-black); }
.fleet-card-body {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
}
.fleet-card-body h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.fleet-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.2rem;
}
.fleet-features li {
    color: var(--gold);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212,175,55,0.07);
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
}
@media (max-width: 900px) {
    .fleet-cards {
        grid-template-columns: 1fr;
    }
    .fleet-card {
        max-width: 400px;
        margin: 0 auto;
    }
}
@media (max-width: 600px) {
    .fleet-slider, .fleet-slide img {
        height: 160px;
    }
    .fleet-card-body {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
} 

/* ===== PAGE HEADER STYLES ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/vito-exterior-1.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 1.3rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--light-gray);
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

/* ===== SERVICES PAGE STYLES ===== */
.service-features {
    background: var(--primary-black);
    padding: 5rem 0;
}

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

.feature-card {
    background: var(--secondary-black);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--dark-gray);
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-black);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* ===== PRICING SECTION ===== */
.pricing {
    background: var(--secondary-black);
    padding: 5rem 0;
}

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

.pricing-info h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.pricing-info p {
    color: var(--light-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.pricing-features {
    display: grid;
    gap: 1rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--primary-black);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--gold);
}

.pricing-feature i {
    color: var(--gold);
    font-size: 1.2rem;
}

.pricing-feature span {
    color: var(--white);
    font-weight: 500;
}

.pricing-cta {
    background: var(--primary-black);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid var(--gold);
}

.pricing-cta h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pricing-cta p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: var(--primary-black);
    padding: 5rem 0;
}

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

.testimonial-card {
    background: var(--secondary-black);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--dark-gray);
    transition: var(--transition);
}

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

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--light-gray);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-rating {
    color: var(--gold);
    font-size: 1.2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-black);
    font-size: 1.2rem;
}

.testimonial-info h4 {
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-story {
    background: var(--secondary-black);
    padding: 5rem 0;
}

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

.about-story .about-text h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-story .about-text p {
    color: var(--light-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.company-stats .stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--primary-black);
    border-radius: var(--border-radius);
    border: 1px solid var(--dark-gray);
    transition: var(--transition);
}

.company-stats .stat:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.company-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.company-stats .stat-label {
    color: var(--light-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.about-story .about-image i {
    font-size: 15rem;
    color: var(--gold);
    opacity: 0.3;
}

/* ===== MISSION VISION SECTION ===== */
.mission-vision {
    background: var(--primary-black);
    padding: 5rem 0;
}

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

.mv-card {
    background: var(--secondary-black);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--dark-gray);
    transition: var(--transition);
}

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

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.mv-icon i {
    font-size: 2rem;
    color: var(--primary-black);
}

.mv-card:hover .mv-icon {
    transform: scale(1.1);
}

.mv-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--light-gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== TEAM SECTION ===== */
.team {
    background: var(--secondary-black);
    padding: 5rem 0;
}

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

.team-member {
    background: var(--primary-black);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--dark-gray);
    transition: var(--transition);
}

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

.member-avatar {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.member-avatar i {
    font-size: 2rem;
    color: var(--primary-black);
}

.team-member:hover .member-avatar {
    transform: scale(1.1);
}

.team-member h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-desc {
    color: var(--light-gray);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose {
    background: var(--primary-black);
    padding: 5rem 0;
}

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

.advantage {
    background: var(--secondary-black);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--dark-gray);
    transition: var(--transition);
}

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

.advantage-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.advantage-icon i {
    font-size: 1.8rem;
    color: var(--primary-black);
}

.advantage:hover .advantage-icon {
    transform: scale(1.1);
}

.advantage h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.advantage p {
    color: var(--light-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== CERTIFICATES SECTION ===== */
.certificates {
    background: var(--secondary-black);
    padding: 5rem 0;
}

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

.certificate {
    background: var(--primary-black);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--dark-gray);
    transition: var(--transition);
}

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

.cert-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.cert-icon i {
    font-size: 1.8rem;
    color: var(--primary-black);
}

.certificate:hover .cert-icon {
    transform: scale(1.1);
}

.certificate h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.certificate p {
    color: var(--light-gray);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--primary-black);
    padding: 5rem 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: var(--light-gray);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

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

.cta-buttons .btn-whatsapp,
.cta-buttons .btn-secondary {
    min-width: 200px;
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* ===== CONTACT PAGE STYLES ===== */
.quick-contact {
    background: var(--secondary-black);
    padding: 5rem 0;
}

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

.quick-contact-item {
    background: var(--primary-black);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--dark-gray);
    transition: var(--transition);
    cursor: pointer;
}

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

.qc-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.qc-icon.whatsapp {
    background: #25d366;
}

.qc-icon.phone {
    background: var(--gold-gradient);
}

.qc-icon.email {
    background: #007bff;
}

.qc-icon.location {
    background: #dc3545;
}

.qc-icon i {
    font-size: 2rem;
    color: var(--white);
}

.quick-contact-item:hover .qc-icon {
    transform: scale(1.1);
}

.quick-contact-item h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.quick-contact-item p {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.qc-label {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
    background: var(--primary-black);
    padding: 5rem 0;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-detailed h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info-detailed p {
    color: var(--light-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--secondary-black);
    border-radius: var(--border-radius);
    border: 1px solid var(--dark-gray);
    transition: var(--transition);
}

.contact-method:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.5rem;
    color: var(--primary-black);
}

.method-content h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.method-content p {
    color: var(--light-gray);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.working-hours {
    background: var(--secondary-black);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--dark-gray);
}

.working-hours h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-grid {
    display: grid;
    gap: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--dark-gray);
}

.hour-item:last-child {
    border-bottom: none;
}

.day {
    color: var(--light-gray);
    font-weight: 500;
}

.time {
    color: var(--gold);
    font-weight: 600;
}

.contact-form-container {
    background: var(--secondary-black);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.contact-form-card {
    padding: 2.5rem;
}

.contact-form-card h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-form-card p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group label {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    background: var(--primary-black);
    border: 1px solid var(--dark-gray);
    border-radius: var(--border-radius);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold-shadow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-submit {
    margin-top: 1rem;
    padding: 15px 30px;
    font-size: 1.1rem;
    width: 100%;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--secondary-black);
    padding: 5rem 0;
}

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

.faq-item {
    background: var(--primary-black);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--dark-gray);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.faq-item h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--light-gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== RESPONSIVE DESIGN FOR NEW SECTIONS ===== */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .features-grid,
    .mv-grid,
    .team-grid,
    .advantages-grid,
    .certificates-grid,
    .quick-contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-content,
    .contact-main,
    .about-story .about-content {
        grid-template-columns: 1fr;
    }
    
    .company-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .about-story .about-text h2 {
        font-size: 2rem;
    }
}

 @media (max-width: 480px) {
     .page-header h1 {
         font-size: 2rem;
     }
     
     .page-header p {
         font-size: 1rem;
     }
     
     .feature-card,
     .mv-card,
     .team-member,
     .advantage,
     .certificate,
     .quick-contact-item,
     .faq-item {
         padding: 1.5rem;
     }
     
     .contact-form-card {
         padding: 1.5rem;
     }
     
     .company-stats {
         grid-template-columns: 1fr;
     }
     
     .cta-content h2 {
         font-size: 1.8rem;
     }
     
     .about-story .about-text h2 {
         font-size: 1.8rem;
     }

     .phone-float {
         bottom: 10px !important;
         left: 10px !important;
         width: 45px !important;
         height: 45px !important;
         display: flex !important;
         z-index: 999 !important;
     }

     .phone-float i {
         font-size: 1.3rem !important;
     }

     .whatsapp-float {
         bottom: 10px !important;
         right: 10px !important;
         width: 45px !important;
         height: 45px !important;
     }

     .whatsapp-float i {
         font-size: 1.3rem !important;
     }
 }

/* ===== BLOG STYLES ===== */
.blog-header {
    background: var(--black-gradient);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.blog-header .container {
    position: relative;
    z-index: 2;
}

.blog-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-title {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-subtitle {
    font-size: 1.3rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--gold);
    font-size: 0.95rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-content {
    background: var(--primary-black);
    padding: 5rem 0;
}

.blog-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-article {
    background: var(--secondary-black);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.blog-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-article:hover .article-image {
    transform: scale(1.05);
}

.article-content {
    padding: 3rem;
}

.article-content h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.article-content h3 {
    color: var(--gold-light);
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.article-content h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    font-weight: 600;
}

.article-content p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.article-content ul, .article-content ol {
    color: var(--light-gray);
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.article-content strong {
    color: var(--gold);
    font-weight: 600;
}

.feature-list {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--primary-black);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--gold);
}

.feature-item i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--gold);
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--light-gray);
    margin: 0;
    line-height: 1.6;
}

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

.location-item {
    background: var(--primary-black);
    padding: 1rem;
    text-align: center;
    border-radius: var(--border-radius);
    color: var(--gold);
    font-weight: 500;
    border: 1px solid var(--dark-gray);
    transition: var(--transition);
}

.location-item:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.tips-box {
    background: var(--primary-black);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--gold);
    margin: 2rem 0;
}

.tips-box h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tips-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.tips-box li {
    color: var(--light-gray);
    margin-bottom: 0.8rem;
}

.article-cta {
    background: var(--primary-black);
    padding: 3rem;
    text-align: center;
    border-top: 1px solid var(--dark-gray);
}

.article-cta h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.article-cta p {
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--secondary-black);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.sidebar-widget h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 0.8rem;
}

.sidebar-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 0;
    display: block;
    border-bottom: 1px solid var(--dark-gray);
}

.sidebar-links a:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

.contact-info p {
    color: var(--light-gray);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--gold);
    width: 20px;
}

/* Blog Responsive */
@media (max-width: 768px) {
    .blog-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-title {
        font-size: 2.2rem;
    }
    
    .blog-subtitle {
        font-size: 1.1rem;
    }
    
    .blog-meta {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .article-content {
        padding: 2rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .article-content h3 {
        font-size: 1.3rem;
    }
    
    .location-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .tips-box {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-header {
        padding: 6rem 0 3rem;
    }
    
    .blog-title {
        font-size: 1.8rem;
    }
    
    .blog-subtitle {
        font-size: 1rem;
    }
    
    .article-content {
        padding: 1.5rem;
    }
    
    .article-content h2 {
        font-size: 1.3rem;
    }
    
    .article-content h3 {
        font-size: 1.2rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .article-cta {
        padding: 2rem;
    }
    
    .location-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.8rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item i {
        margin-top: 0;
    }
} 
