/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #fcbd00;
    --primary-dark: #e6a800;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 50px;
    width: auto;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.btn-randevu {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    color: white !important;
    padding: 12px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
    animation: randevuGlow 2s ease-in-out infinite;
}

.btn-randevu::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: randevuShine 3s linear infinite;
}

.btn-randevu:hover {
    box-shadow: 0 5px 25px rgba(255, 140, 0, 0.6);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(252, 189, 0, 0.9) 0%, rgba(243, 156, 18, 0.9) 100%),
                url('anasayfa.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    padding-top: 150px; /* Navbar için daha fazla yer bırak - arttırıldı */
    min-height: 100vh; /* Tam ekran yükseklik */
}

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

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: -50px; /* İçeriği yukarı kaydır */
}

.hero h1 {
    font-size: clamp(1.5rem, 4.5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideInUp 1s ease;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    text-align: left;
    padding: 0 5px;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInUp 1s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: slideInUp 1s ease 0.6s both;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-content {
    text-align: left;
    max-width: 100%;
    padding: 0 5px;
}

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

.hero-image-gallery {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    max-width: 500px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-image-gallery h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.image-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
}

.hero-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-img:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border-color: var(--primary-color);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    animation: slideInUp 1s ease 0.9s both;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px rgba(252, 189, 0, 0.5));
}

.feature-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
    animation: primaryGlow 2s ease-in-out infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: primaryShine 3s linear infinite;
}

.btn-primary:hover {
    box-shadow: 0 10px 35px rgba(255, 140, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #666;
    font-size: 1rem;
}

.pricing-note {
    margin-top: 1rem;
    padding: 10px 20px;
    background: rgba(252, 189, 0, 0.1);
    border-radius: 10px;
    display: inline-block;
}

.pricing-note p {
    margin: 0;
    color: var(--primary-color);
    font-size: 1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.about-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.about-icon i {
    font-size: 2rem;
    color: white;
}

.about-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Packages Section */
.packages {
    padding: 6rem 0;
    background: white;
}

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

.package-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid transparent;
}

.package-card.featured {
    border: 2px solid #667eea;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
}

.period {
    color: #666;
    font-size: 1rem;
}

.package-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: #555;
}

.package-features i {
    color: #28a745;
    font-size: 1.1rem;
}

/* Package Feature Styles */
.package-features li.included {
    color: #555;
}

.package-features li.included i {
    color: #28a745;
}

.package-features li.not-included {
    color: #999;
    opacity: 0.6;
}

.package-features li.not-included i {
    color: #dc3545;
}

.package-features li.gift {
    color: #667eea;
    font-weight: 600;
}

.package-features li.gift i {
    color: #667eea;
}

/* Package Styles */
.package-card.bronze .package-badge.bronze-badge {
    background: linear-gradient(135deg, #cd7f32 0%, #b8651e 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.package-card.gold .package-badge.gold-badge {
    background: linear-gradient(135deg, #fcbd00 0%, #f39c12 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.package-card.premium .package-badge.premium-badge {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.package-card.platinum .package-badge.platinum-badge {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.package-card.bronze {
    border: 2px solid #cd7f32;
}

.package-card.gold {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.package-card.premium {
    border: 2px solid #e74c3c;
}

.package-card.platinum {
    border: 2px solid #9b59b6;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.service-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Appointment Section */
.appointment {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.appointment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.appointment-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.appointment-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.appointment-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.appointment-form form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.footer .contact-item i {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer .contact-item span {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    justify-content: flex-start;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(252, 189, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-links a[href*="facebook"]:hover {
    background: #1877f2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.social-links a[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Floating Elements */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}

.call-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
}

.call-float a {
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.call-float a:hover {
    transform: scale(1.1);
}

.back-to-top {
    position: fixed;
    bottom: 170px; /* Call button'ın üstüne yerleştir */
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(252, 189, 0, 0.3);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* VIP Badge Styles */
.vip-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 50%, #ff8c00 100%);
    color: white;
    font-size: 0.5em;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 25px;
    margin-left: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid #fff;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
    position: relative;
    overflow: hidden;
    animation: vipBlink 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    font-family: 'Poppins', sans-serif;
}

.vip-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: vipShine 3s linear infinite;
}

/* VIP Badge Animations */
@keyframes vipBlink {
    0% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
    }
    25% {
        opacity: 0.8;
        box-shadow: 0 0 25px rgba(255, 140, 0, 0.7);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 30px rgba(255, 140, 0, 0.8), 0 0 40px rgba(255, 140, 0, 0.4);
    }
    75% {
        opacity: 0.8;
        box-shadow: 0 0 25px rgba(255, 140, 0, 0.7);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
    }
}

@keyframes vipShine {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* VIP Badge Responsive */
@media (max-width: 768px) {
    .vip-badge {
        font-size: 0.4em;
        padding: 6px 12px;
        margin-left: 8px;
        margin-top: 5px;
        display: inline-block;
    }
}

@media (max-width: 600px) {
    .vip-badge {
        font-size: 0.38em;
        padding: 5px 10px;
        margin-left: 0;
        margin-top: 8px;
        display: block;
        width: fit-content;
        text-align: center;
        margin: 8px auto 0 auto; /* Merkezde konumlandır */
    }
    
    .hero h1 {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .vip-badge-mobile {
        font-size: 0.9rem;
        padding: 10px 20px;
        margin: 1.5rem auto;
    }
    
    .hero h1 {
        font-size: clamp(1.4rem, 4vw, 2rem);
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 320px) {
    .vip-badge-mobile {
        font-size: 0.8rem;
        padding: 8px 16px;
        margin: 1rem auto;
    }
    
    .hero h1 {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: clamp(1.6rem, 4.5vw, 2.8rem);
        line-height: 1.3;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .dealership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* TÜM KUTUCUKLAR MOBİLDE ALT ALTA - ZORLA OVERRIDE */
    .profile-stats,
    .vision-mission,
    .specialties-grid,
    .dealership-grid,
    .certificates-grid,
    .about-grid,
    .services-grid,
    .packages-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 1.5rem !important;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu a {
        color: white !important;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
    }
    
    .nav-menu .btn-randevu {
        margin: 1rem auto;
        padding: 15px 30px;
        font-size: 1.1rem;
        border-radius: 30px;
        max-width: 200px;
        justify-content: center;
        border-bottom: none;
        background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
        box-shadow: 0 0 25px rgba(255, 140, 0, 0.5);
        animation: randevuGlow 2s ease-in-out infinite;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 8rem 0 4rem;
        background-attachment: scroll;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero .container {
        margin-top: 0; /* Mobilde margin-top sıfırla */
    }
    
    .hero h1 {
        font-size: clamp(1.4rem, 4vw, 2.2rem);
        text-align: center;
        line-height: 1.3;
        padding: 0 10px;
        margin-bottom: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 15px 20px;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-item i {
        font-size: 1.5rem;
    }
    
    .feature-item span {
        font-size: 0.8rem;
    }
    
    .hero-image-gallery {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .hero-image-gallery h3 {
        font-size: 1.1rem;
    }
    
    .image-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-img {
        height: 200px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-item {
        padding: 2rem 1.5rem;
    }
    
    .about-icon {
        width: 60px;
        height: 60px;
    }
    
    .about-icon i {
        font-size: 1.5rem;
    }
    
    .profile-main {
        gap: 2rem;
    }
    
    /* Company Profile - 3 kutucuk (Kurumsal Kimliğimiz altı) - STANDART MOBİL DÜZENİ */
    .profile-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-highlight {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .stat-highlight i {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }
    
    .stat-highlight h4 {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }
    
    .stat-highlight p {
        color: var(--text-light);
        font-size: 0.9rem;
        margin: 0;
    }
    
    /* Vision-Mission - 2 büyük kutucuk - STANDART MOBİL DÜZENİ */
    .vision-mission {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vm-item {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .vm-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.5rem;
    }
    
    .vm-icon i {
        font-size: 1.5rem;
    }
    
    .vm-item h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .vm-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Özel Hizmetlerimiz - STANDART MOBİL DÜZENİ */
    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .specialty-item {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .specialty-item i {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
    }
    
    .specialty-item h4 {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 1rem;
    }
    
    .specialty-item p {
        color: var(--text-light);
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .package-card {
        padding: 2rem 1rem;
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
        position: relative;
    }
    
    .package-card.featured,
    .package-card.gold {
        transform: none;
        border: 2px solid var(--primary-color);
    }
    
    .package-badge {
        font-size: 0.9rem;
        padding: 8px 16px;
        margin-bottom: 1.5rem;
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .package-header {
        margin-bottom: 2rem;
        margin-top: 1rem;
    }
    
    .package-price {
        margin-bottom: 2rem;
        margin-top: 1rem;
    }
    
    .price {
        font-size: 2.2rem;
        display: block;
    }
    
    .package-features ul {
        margin-bottom: 2rem;
        text-align: left;
        padding: 0 0.5rem;
    }
    
    .package-features li {
        margin-bottom: 0.8rem;
        font-size: 0.85rem;
        text-align: left;
        line-height: 1.4;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.5rem;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-item h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .service-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Yetkili Bayiliklerimiz - STANDART MOBİL DÜZENİ */
    .dealership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dealership-item {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .dealership-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.5rem;
    }
    
    .dealership-icon i {
        font-size: 1.5rem;
        color: white;
    }
    
    .dealership-item h3 {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 1rem;
    }
    
    .dealership-item p {
        color: var(--text-light);
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Sertifikalarımız ve Yetki Belgelerimiz - STANDART MOBİL DÜZENİ */
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .certificate-item {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .certificate-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.5rem;
    }
    
    .certificate-icon i {
        font-size: 1.5rem;
        color: white;
    }
    
    .certificate-item h3 {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 1rem;
    }
    
    .certificate-item p {
        color: var(--text-light);
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .appointment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .appointment-info h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .appointment-info p {
        text-align: center;
        font-size: 1rem;
    }
    
    .contact-info {
        gap: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }
    
    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 auto;
    }
    
    .contact-item h4 {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .google-maps-container {
        margin-top: 1.5rem;
    }
    
    .map-wrapper iframe {
        height: 250px;
        border-radius: 15px;
    }
    
    .appointment-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 15px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p,
    .footer-section ul li {
        font-size: 0.9rem;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .call-float {
        bottom: 90px;
        right: 20px;
    }
    
    .call-float a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .back-to-top {
        bottom: 150px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px; /* Daha küçük padding */
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 12px 18px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .feature-item {
        padding: 10px;
        font-size: 0.8rem;
    }
    
    .feature-item i {
        font-size: 1.2rem;
    }
    
    .hero-img {
        height: 180px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .about-item {
        padding: 1.5rem;
    }
    
    .about-item h3 {
        font-size: 1.1rem;
    }
    
    .about-item p {
        font-size: 0.9rem;
    }
    
    /* 480px altı - Tüm kutucuklar standart boyut */
    .stat-highlight {
        padding: 1.5rem 1rem;
    }
    
    .stat-highlight i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .stat-highlight h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-highlight p {
        font-size: 0.85rem;
    }
    
    .vm-item {
        padding: 1.5rem;
    }
    
    .vm-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }
    
    .vm-icon i {
        font-size: 1.3rem;
    }
    
    .vm-item h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .vm-item p {
        font-size: 0.85rem;
    }
    
    .specialty-item {
        padding: 1.5rem;
    }
    
    .specialty-item i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .specialty-item h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .specialty-item p {
        font-size: 0.85rem;
    }
    
    .package-card {
        padding: 1rem;
    }
    
    .package-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .package-features li {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .service-item h3 {
        font-size: 1.1rem;
    }
    
    .service-item p {
        font-size: 0.9rem;
    }
    
    /* Bayilik ve sertifikalar için 480px altı - standart boyut */
    .dealership-item,
    .certificate-item {
        padding: 1.5rem;
    }
    
    .dealership-icon,
    .certificate-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }
    
    .dealership-icon i,
    .certificate-icon i {
        font-size: 1.3rem;
    }
    
    .dealership-item h3,
    .certificate-item h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .dealership-item p,
    .certificate-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .appointment-info h2 {
        font-size: 1.8rem;
    }
    
    .appointment-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .call-float {
        bottom: 80px;
        right: 15px;
    }
    
    .call-float a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .back-to-top {
        bottom: 130px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* Orta boyut mobil cihazlar için özel düzenleme */
@media (min-width: 376px) and (max-width: 480px) {
    .hero h1 {
        font-size: clamp(1.3rem, 4.2vw, 1.8rem);
        line-height: 1.2;
        padding: 0 5px;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        letter-spacing: -0.01em;
    }
    
    .hero-content {
        padding: 0 5px;
    }
}

/* Küçük tablet boyutları için düzenleme */
@media (min-width: 481px) and (max-width: 767px) {
    .hero h1 {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
        line-height: 1.2;
        padding: 0 8px;
        word-break: break-word;
        overflow-wrap: break-word;
        letter-spacing: -0.02em;
    }
    
    .hero-content {
        padding: 0 8px;
    }
    
    .hero-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
}

/* Çok geniş ekranlar için sınırlandırma */
@media (min-width: 1600px) {
    .hero h1 {
        font-size: 3.5rem;
        max-width: 900px;
        line-height: 1.15;
    }
    
    .hero-content {
        max-width: 900px;
    }
}

/* iPhone SE ve benzeri küçük ekranlar */
@media (max-width: 320px) and (max-height: 568px) {
    .hero h1 {
        font-size: clamp(0.9rem, 5.5vw, 1.3rem) !important;
        line-height: 1.1;
        padding: 0 2px;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-content {
        padding: 0 2px;
    }
}

/* Çok küçük ekranlar için ekstra optimizasyon */
@media (max-width: 375px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: clamp(1.1rem, 4vw, 1.6rem);
        line-height: 1.2;
        padding: 0 3px;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        letter-spacing: -0.01em;
        max-width: 100%;
    }
    
    .hero-content {
        padding: 0 3px;
        max-width: 100%;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    .nav-menu {
        top: 60px;
    }
    
    .hero {
        padding: 7rem 0 3rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .packages-grid,
    .services-grid,
    .about-grid {
        gap: 1rem;
    }
    
    .package-features li {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-item {
        padding: 10px;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-section p,
    .footer-section ul li {
        font-size: 0.8rem;
    }
    
    /* Profile stats çok küçük ekranlar için */
    .profile-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.3rem; /* En az boşluk */
    }
    
    .stat-highlight {
        padding: 0.6rem 0.2rem; /* En küçük padding */
        font-size: 0.65rem;
        border-radius: 10px;
    }
    
    .stat-highlight i {
        font-size: 1rem; /* En küçük icon */
        margin-bottom: 0.2rem;
    }
    
    .stat-highlight h4 {
        font-size: 0.65rem; /* En küçük başlık */
        margin-bottom: 0.1rem;
        line-height: 0.9;
    }
    
    .stat-highlight p {
        font-size: 0.55rem; /* En küçük alt yazı */
        line-height: 1;
    }
    
    /* Vizyon/Misyon çok küçük ekranlar için */
    .vm-item {
        padding: 1rem 0.6rem;
    }
    
    .vm-icon {
        width: 35px;
        height: 35px;
        margin: 0 auto 0.6rem;
    }
    
    .vm-icon i {
        font-size: 0.9rem;
    }
    
    .vm-item h3 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .vm-item p {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    /* Özel hizmetler çok küçük ekranlar için */
    .specialty-item {
        padding: 1rem 0.6rem;
    }
    
    .specialty-item i {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }
    
    .specialty-item h4 {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .specialty-item p {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    /* Bayilik ve sertifikalar çok küçük ekranlar için */
    .dealership-item,
    .certificate-item {
        padding: 1rem 0.6rem;
    }
    
    .dealership-icon,
    .certificate-icon {
        width: 35px;
        height: 35px;
        margin: 0 auto 0.6rem;
    }
    
    .dealership-icon i,
    .certificate-icon i {
        font-size: 0.9rem;
    }
    
    .dealership-item h3,
    .certificate-item h3 {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        line-height: 1;
    }
    
    .dealership-item p,
    .certificate-item p {
        font-size: 0.7rem;
        line-height: 1.2;
    }
}

/* Landscape telefon yönlendirmeleri */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 5rem 0 2rem;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: clamp(1.2rem, 3.5vw, 1.8rem);
        line-height: 1.1;
        padding: 0 5px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-features {
        margin-top: 1rem;
    }
}

/* Tablet portrait özel düzenlemeler */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .appointment-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Print stilleri */
@media print {
    .header,
    .whatsapp-float,
    .back-to-top,
    .hero-buttons,
    .appointment-form {
        display: none !important;
    }
    
    body {
        color: black !important;
        background: white !important;
    }
    
    .hero {
        background: none !important;
        color: black !important;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
}

/* Erişilebilirlik iyileştirmeleri */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Yüksek kontrast modu */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --text-dark: #000000;
        --text-light: #333333;
    }
    
    .btn {
        border: 2px solid #000000;
    }
    
    .package-card {
        border: 2px solid #000000;
    }
}

/* Dark mode uyumluluğu */
@media (prefers-color-scheme: dark) {
    /* Kullanıcı sistem dark mode kullanıyorsa bazı renkleri ayarla */
    .footer {
        background: #1a1a1a;
    }
    
    .footer .contact-item i {
        background: var(--primary-color);
    }
}

/* Company Profile Section */
.company-profile {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(59, 130, 246, 0.03) 100%);
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.profile-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.profile-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.profile-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.profile-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-highlight {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-color);
}

.stat-highlight i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-highlight h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-highlight p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.vm-item {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.vm-icon i {
    font-size: 2rem;
    color: white;
}

.vm-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.specialties {
    text-align: center;
    margin-top: 6rem;
    margin-bottom: 4rem;
}

.specialties h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

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

.specialty-item {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-color);
}

.specialty-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.specialty-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.specialty-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Dealership Section */
.dealership {
    padding: 6rem 0;
    background: #f8f9fa;
}

.dealership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.dealership-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
}

.dealership-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.dealership-icon i {
    font-size: 1.8rem;
    color: white;
}

.dealership-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.dealership-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Certificates Section */
.certificates {
    padding: 6rem 0;
    background: white;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.certificate-item {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-color);
}

.certificate-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.certificate-icon i {
    font-size: 1.8rem;
    color: white;
}

.certificate-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.certificate-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Button Animations */
@keyframes randevuGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 140, 0, 0.6), 0 0 35px rgba(255, 140, 0, 0.3);
    }
}

@keyframes randevuShine {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes primaryGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 140, 0, 0.6), 0 0 35px rgba(255, 140, 0, 0.3);
    }
}

@keyframes primaryShine {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* VIP Badge Mobile and Desktop Versions */
.vip-badge-mobile {
    display: none; /* Default olarak gizle */
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 50%, #ff8c00 100%);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid #fff;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
    position: relative;
    overflow: hidden;
    animation: vipBlink 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin: 1rem auto;
    width: fit-content;
}

.vip-badge-mobile::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: vipShine 3s linear infinite;
}

.desktop-only {
    display: inline-block;
}

/* Mobile VIP Badge Display */
@media (max-width: 768px) {
    .vip-badge-mobile {
        display: block; /* Mobilde göster */
        margin: 1.5rem auto; /* Üstten ve alttan boşluk, yatay merkezde */
    }
    
    .desktop-only {
        display: none; /* Mobilde gizle */
    }
    
    .hero h1 {
        text-align: center;
        margin-bottom: 0.5rem; /* Başlık ile VIP badge arası mesafe */
    }
    
    .hero-content {
        text-align: center;
    }
}
