/* Ana CSS dosyası - Orijinal HTML'den alınan tüm stiller */

:root {
    /* Ana Renkler - Meg Otomotiv (Kırmızı ve Siyah) */
    --meg-primary: rgba(225, 29, 72, 0.8);
    --meg-secondary: rgba(244, 63, 94, 0.8);
    --meg-accent: rgba(251, 113, 133, 0.8);
    --meg-light: #fff1f2;
    --meg-dark: #1c1917;
    
    /* AutoClub Renkleri (Turuncu) - Saydamlık eklendi */
    --auto-primary: rgba(234, 88, 12, 0.8);
    --auto-secondary: rgba(249, 115, 22, 0.8);
    --auto-accent: rgba(253, 186, 116, 0.8);
    --auto-light: #fff7ed;
    --auto-dark: #9a3412;
    
    /* Dryclean Express Renkleri (Mavi ve Beyaz) - Saydamlık eklendi */
    --dry-primary: rgba(29, 78, 216, 0.8);
    --dry-secondary: rgba(59, 130, 246, 0.8);
    --dry-accent: rgba(147, 197, 253, 0.8);
    --dry-light: #eff6ff;
    --dry-dark: #1e3a8a;
    
    /* GoMarine Renkleri (Turkuaz ve Beyaz) - Saydamlık eklendi */
    --marine-primary: rgba(8, 145, 178, 0.8);
    --marine-secondary: rgba(6, 182, 212, 0.8);
    --marine-accent: rgba(103, 232, 249, 0.8);
    --marine-light: #ecfeff;
    --marine-dark: #155e75;
    
    /* Meg Tekne Hizmetleri Renkleri (Turkuaz ve Siyah) - Saydamlık eklendi */
    --boat-primary: rgba(14, 116, 144, 0.8);
    --boat-secondary: rgba(6, 182, 212, 0.8);
    --boat-accent: rgba(34, 211, 238, 0.8);
    --boat-light: #cffafe;
    --boat-dark: #1c1917;
    
    /* Meg VIP Taşıma Renkleri (Siyah ve Altın) - Saydamlık eklendi */
    --vip-primary: rgba(133, 77, 14, 0.8);
    --vip-secondary: rgba(161, 98, 7, 0.8);
    --vip-accent: rgba(250, 204, 21, 0.8);
    --vip-light: #fef9c3;
    --vip-dark: #1c1917;
    
    /* Dark Mode Colors */
    --bg-light: #ffffff;
    --text-light: #333333;
    --card-light: #ffffff;
    --border-light: #e5e7eb;
    
    --bg-dark: #121212;
    --text-dark: #f3f4f6;
    --card-dark: #1e1e1e;
    --border-dark: #2d2d2d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    background-color: var(--bg-light);
}

html.dark body {
    color: var(--text-dark);
    background-color: var(--bg-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Logo Styles */
.real-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.autoclub-logo, .dryclean-logo, .gomarine-logo, .megboat-logo, .viptransport-logo {
    height: 50px;
    width: 200px;
    object-fit: contain;
    display: inline-block;
}

.hero-logo {
    height: 65px;
    width: 268px;
    object-fit: contain;
    margin-bottom: 20px;
}

.meg-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.meg-logo-lg {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.card-logo {
    position: absolute;
    top: -30px;
    left: 15px;
    z-index: 2;
    background: var(--card-light);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

html.dark .card-logo {
    background: var(--card-dark);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.card-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.footer-logo {
    height: 30px;
    width: auto;
    margin-right: 10px;
    object-fit: contain;
}

/* Main Logo */
.main-logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    letter-spacing: -1px;
    font-size: 1.8rem;
    margin-left: 10px;
    line-height: 1;
}

.logo-text span {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #666;
}

html.dark .logo-text span {
    color: #aaa;
}

.logo-symbol {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--meg-primary);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.logo-symbol::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
}

/* Service card styles */
.service-card {
    background-color: var(--card-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

html.dark .service-card {
    background-color: var(--card-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

html.dark .service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Modal Styles - NEW */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1040;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
}

.modal-card {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    background-color: var(--card-light);
    border-radius: 10px;
    z-index: 1050;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    display: none;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal-card.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

html.dark .modal-card {
    background-color: var(--card-dark);
}

.modal-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.modal-card .content {
    padding: 2rem;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--auto-primary);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    z-index: 10;
    transition: all 0.2s ease;
}

.close-button:hover {
    background-color: var(--auto-dark);
    transform: scale(1.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: var(--auto-light);
    color: var(--auto-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.category-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    background-color: var(--card-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

html.dark .category-card {
    background-color: var(--card-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

html.dark .category-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--auto-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Dryclean Service Card Styles */
.dryclean-service-card {
    background-color: var(--card-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

html.dark .dryclean-service-card {
    background-color: var(--card-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dryclean-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

html.dark .dryclean-service-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.advantage-card {
    background-color: var(--card-light);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

html.dark .advantage-card {
    background-color: var(--card-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--dry-primary);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

html.dark .advantage-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--dry-light);
    color: var(--dry-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Campaign banner */
.campaign-banner {
    background-color: var(--dry-primary);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

html.dark .campaign-banner {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.campaign-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.campaign-banner::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* Award badge */
.award-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffd700;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 1rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

html.dark .award-badge {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.award-badge i {
    margin-right: 0.5rem;
    color: #b8860b;
}

/* Header Styles */
.header {
    background-color: var(--card-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

html.dark .header {
    background-color: var(--card-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

html.dark .header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Page Transitions */
.page-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.page-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.5), rgba(28, 25, 23, 0.5));
    z-index: 1;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    z-index: 0;
}

.hero-bg-item {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.7;
}

.hero-bg-item:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1520340356584-f9917d1eea6f?ixlib=rb-1.2.1&auto=format&fit=crop&w=750&q=80');
    background-color: #553; /* Fallback color */
}

.hero-bg-item:nth-child(2) {
    background-image: url('https://i.imgur.com/tkCYsNs.jpeg');
    background-color: #555; /* Fallback color */
}

.hero-bg-item:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1545173168-9f1947eebb7f?ixlib=rb-1.2.1&auto=format&fit=crop&w=750&q=80');
    background-color: #557; /* Fallback color */
}

.hero-bg-item:nth-child(4) {
    background-image: url('https://images.unsplash.com/photo-1593351415075-3bac9f45c877?ixlib=rb-1.2.1&auto=format&fit=crop&w=750&q=80');
    background-color: #477; /* Fallback color */
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Business Cards */
.business-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 440px; /* Daha fazla alan ekledik */
    display: flex;
    flex-direction: column;
    margin-bottom: 20px; /* Mobil görünümde kartlar arası boşluk */
    background-color: var(--card-light);
}

html.dark .business-card {
    background-color: var(--card-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

html.dark .business-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.business-card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.card-body {
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    z-index: 5;
    position: relative;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--meg-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--meg-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--meg-primary);
    color: var(--meg-primary);
}

.btn-outline:hover {
    background-color: var(--meg-primary);
    color: white;
}

/* Navigation */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
    color: var(--text-light);
    text-decoration: none;
}

html.dark .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--meg-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--meg-primary);
    font-weight: 600;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: var(--text-light);
}

html.dark .section-title {
    color: var(--text-dark);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--meg-secondary);
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    border-radius: 12px;
    background-color: var(--card-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

html.dark .feature-card {
    background-color: var(--card-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

html.dark .feature-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: var(--meg-light);
    color: var(--meg-primary);
    font-size: 1.8rem;
}

/* AutoClub Styles */
.autoclub {
    background-color: var(--bg-light);
}

html.dark .autoclub {
    background-color: var(--bg-dark);
}

.autoclub-hero {
    background-image: linear-gradient(135deg, rgba(225, 29, 72, 0.5), rgba(28, 25, 23, 0.5)), 
                      url('https://images.unsplash.com/photo-1520340356584-f9917d1eea6f?ixlib=rb-1.2.1&auto=format&fit=crop&w=750&q=80');
    background-size: cover;
    background-position: center;
}

.autoclub-btn {
    background-color: var(--auto-primary);
}

.autoclub-btn:hover {
    background-color: var(--auto-dark);
    box-shadow: 0 5px 15px rgba(190, 18, 60, 0.3);
}

.autoclub-feature .feature-icon {
    background-color: var(--auto-light);
    color: var(--auto-primary);
}

/* Dryclean Express Styles */
.dryclean {
    background-color: var(--bg-light);
}

html.dark .dryclean {
    background-color: var(--bg-dark);
}

.dryclean-hero {
    background-image: linear-gradient(135deg, rgba(225, 29, 72, 0.5), rgba(28, 25, 23, 0.5)), 
                      url('https://images.unsplash.com/photo-1545173168-9f1947eebb7f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
}

.dryclean-btn {
    background-color: var(--dry-primary);
}

.dryclean-btn:hover {
    background-color: var(--dry-dark);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.dryclean-feature .feature-icon {
    background-color: var(--dry-light);
    color: var(--dry-primary);
}

/* GoMarine Styles */
.gomarine {
    background-color: var(--bg-light);
}

html.dark .gomarine {
    background-color: var(--bg-dark);
}

.gomarine-hero {
    background-image: linear-gradient(135deg, rgba(225, 29, 72, 0.5), rgba(28, 25, 23, 0.5)), 
                      url('https://i.imgur.com/na8miw2.jpeg');
    background-size: cover;
    background-position: center;
}

.gomarine-btn {
    background-color: var(--marine-primary);
}

.gomarine-btn:hover {
    background-color: var(--marine-dark);
    box-shadow: 0 5px 15px rgba(0, 112, 170, 0.3);
}

.gomarine-feature .feature-icon {
    background-color: var(--marine-light);
    color: var(--marine-primary);
}

/* Meg Tekne Styles */
.megboat {
    background-color: var(--bg-light);
}

html.dark .megboat {
    background-color: var(--bg-dark);
}

.megboat-hero {
    background-image: linear-gradient(135deg, rgba(225, 29, 72, 0.5), rgba(28, 25, 23, 0.5)), 
                      url('https://i.imgur.com/ypR4gRa.jpeg');
    background-size: cover;
    background-position: center;
}

.megboat-btn {
    background-color: var(--boat-primary);
}

.megboat-btn:hover {
    background-color: var(--boat-dark);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.megboat-feature .feature-icon {
    background-color: var(--boat-light);
    color: var(--boat-primary);
}

/* Meg VIP Taşıma Styles */
.viptransport {
    background-color: var(--bg-light);
}

html.dark .viptransport {
    background-color: var(--bg-dark);
}

.viptransport-hero {
    background-image: linear-gradient(135deg, rgba(225, 29, 72, 0.5), rgba(28, 25, 23, 0.5)), 
                     url('https://images.unsplash.com/photo-1541348263662-e068662d82af?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
}

.viptransport-btn {
    background-color: var(--vip-primary);
}

.viptransport-btn:hover {
    background-color: var(--vip-dark);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.viptransport-feature .feature-icon {
    background-color: var(--vip-light);
    color: var(--vip-primary);
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: white;
    padding: 80px 0 30px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--meg-secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--meg-secondary);
    transform: translateY(-3px);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

html.dark .mobile-menu-toggle {
    color: var(--text-dark);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
}

.mobile-nav-links li {
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    transition-delay: calc(var(--i) * 0.1s);
}

.mobile-menu.open .mobile-nav-links li {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-links a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px;
    display: inline-block;
}

.mobile-nav-links a:hover {
    color: var(--meg-secondary);
}

.mobile-business-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.mobile-business-links a {
    margin: 10px;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-business-links a:hover {
    background-color: var(--meg-secondary);
}

/* Dark mode toggle */
.dark-mode-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 990;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: var(--card-light);
}

html.dark .dark-mode-toggle {
    color: var(--text-dark);
    background-color: var(--card-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dark-mode-toggle:hover {
    transform: scale(1.1);
}

/* Back to top button */
.back-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--meg-primary);
    color: white;
    position: fixed;
    bottom: 20px;
    right: 70px;
    z-index: 990;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--meg-dark);
    transform: translateY(-3px);
}

/* Loading indicator */
.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--meg-primary);
    z-index: 2000;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.loading-indicator.loading {
    animation: loading 2s infinite ease-in-out;
}

@keyframes loading {
    0% { transform: scaleX(0); }
    50% { transform: scaleX(0.5); }
    100% { transform: scaleX(0); transform-origin: right; }
}

/* Form styles */
.form-input {
    width: 100%;
    background-color: var(--card-light);
    color: var(--text-light);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

html.dark .form-input {
    background-color: var(--card-dark);
    color: var(--text-dark);
    border-color: var(--border-dark);
}

.form-input:focus {
    outline: none;
    border-color: var(--meg-primary);
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.2);
}

html.dark .form-input:focus {
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.4);
}

/* Highlight text color in dark mode */
html.dark .text-gray-600 {
    color: #a1a1aa !important;
}

html.dark .bg-gray-50,
html.dark .bg-gray-100 {
    background-color: #1f1f1f !important;
}

/* Lazy Load Images */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-image.loaded {
    opacity: 1;
}

/* Success and error messages */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    animation: slideDown 0.3s ease forwards;
}

.form-message i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.form-message.success {
    background-color: #dcfce7;
    color: #166534;
}

html.dark .form-message.success {
    background-color: #065f46;
    color: #d1fae5;
}

.form-message.error {
    background-color: #fee2e2;
    color: #b91c1c;
}

html.dark .form-message.error {
    background-color: #7f1d1d;
    color: #fecaca;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gold accents for VIP Transport */
.viptransport-gold-accent {
    background: linear-gradient(45deg, #854d0e, #ca8a04, #facc15);
    background-size: 200% 200%;
    animation: goldShine 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

@keyframes goldShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gold-border {
    border: 2px solid var(--vip-accent);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-up {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse animation for interactive elements */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Scroll-based animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header {
        padding: 1rem;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .business-card {
        margin-bottom: 2rem;
    }
    
    .real-logo, .autoclub-logo, .dryclean-logo, .gomarine-logo, .megboat-logo, .viptransport-logo {
        height: 40px;
    }
    
    .hero-logo {
        height: 60px;
    }
    
    .dark-mode-toggle {
        bottom: 15px;
        right: 15px;
    }
    
    .back-to-top {
        bottom: 15px;
        right: 65px;
    }
}/* Ana CSS dosyası - Orijinal HTML'den alınan stiller */

:root {
    /* Ana Renkler - Meg Otomotiv (Kırmızı ve Siyah) */
    --meg-primary: rgba(225, 29, 72, 0.8);
    --meg-secondary: rgba(244, 63, 94, 0.8);
    --meg-accent: rgba(251, 113, 133, 0.8);
    --meg-light: #fff1f2;
    --meg-dark: #1c1917;
    
    /* AutoClub Renkleri (Turuncu) */
    --auto-primary: rgba(234, 88, 12, 0.8);
    --auto-secondary: rgba(249, 115, 22, 0.8);
    --auto-accent: rgba(253, 186, 116, 0.8);
    --auto-light: #fff7ed;
    --auto-dark: #9a3412;
    
    /* Dryclean Express Renkleri (Mavi ve Beyaz) */
    --dry-primary: rgba(29, 78, 216, 0.8);
    --dry-secondary: rgba(59, 130, 246, 0.8);
    --dry-accent: rgba(147, 197, 253, 0.8);
    --dry-light: #eff6ff;
    --dry-dark: #1e3a8a;
    
    /* GoMarine Renkleri (Turkuaz ve Beyaz) */
    --marine-primary: rgba(8, 145, 178, 0.8);
    --marine-secondary: rgba(6, 182, 212, 0.8);
    --marine-accent: rgba(103, 232, 249, 0.8);
    --marine-light: #ecfeff;
    --marine-dark: #155e75;
    
    /* Meg Tekne Hizmetleri Renkleri (Turkuaz ve Siyah) */
    --boat-primary: rgba(14, 116, 144, 0.8);
    --boat-secondary: rgba(6, 182, 212, 0.8);
    --boat-accent: rgba(34, 211, 238, 0.8);
    --boat-light: #cffafe;
    --boat-dark: #1c1917;
    
    /* Meg VIP Taşıma Renkleri (Siyah ve Altın) */
    --vip-primary: rgba(133, 77, 14, 0.8);
    --vip-secondary: rgba(161, 98, 7, 0.8);
    --vip-accent: rgba(250, 204, 21, 0.8);
    --vip-light: #fef9c3;
    --vip-dark: #1c1917;
    
    /* Dark Mode Colors */
    --bg-light: #ffffff;
    --text-light: #333333;
    --card-light: #ffffff;
    --border-light: #e5e7eb;
    
    --bg-dark: #121212;
    --text-dark: #f3f4f6;
    --card-dark: #1e1e1e;
    --border-dark: #2d2d2d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    background-color: var(--bg-light);
}

html.dark body {
    color: var(--text-dark);
    background-color: var(--bg-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Logo Styles */
.real-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.autoclub-logo, .dryclean-logo, .gomarine-logo, .megboat-logo, .viptransport-logo {
    height: 50px;
    width: 200px;
    object-fit: contain;
    display: inline-block;
}

.hero-logo {
    height: 65px;
    width: 268px;
    object-fit: contain;
    margin-bottom: 20px;
}

.meg-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.meg-logo-lg {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 30px;
    width: auto;
    margin-right: 10px;
    object-fit: contain;
}

/* Header Styles */
.header {
    background-color: var(--card-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

html.dark .header {
    background-color: var(--card-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

html.dark .header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.5), rgba(28, 25, 23, 0.5));
    z-index: 1;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    z-index: 0;
}

.hero-bg-item {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Navigation */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
    color: var(--text-light);
}

html.dark .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--meg-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--meg-primary);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    z-index: 5;
    position: relative;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--meg-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--meg-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--meg-primary);
    color: var(--meg-primary);
}

.btn-outline:hover {
    background-color: var(--meg-primary);
    color: white;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: var(--text-light);
}

html.dark .section-title {
    color: var(--text-dark);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--meg-secondary);
}

/* Business Cards */
.business-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 440px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    background-color: var(--card-light);
}

html.dark .business-card {
    background-color: var(--card-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

html.dark .business-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.business-card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.card-body {
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.card-logo {
    position: absolute;
    top: -30px;
    left: 15px;
    z-index: 2;
    background: var(--card-light);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

html.dark .card-logo {
    background: var(--card-dark);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.card-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

/* Service Cards */
.service-card {
    background-color: var(--card-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

html.dark .service-card {
    background-color: var(--card-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

html.dark .service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: var(--auto-light);
    color: var(--auto-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    border-radius: 12px;
    background-color: var(--card-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

html.dark .feature-card {
    background-color: var(--card-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

html.dark .feature-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: var(--meg-light);
    color: var(--meg-primary);
    font-size: 1.8rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

html.dark .mobile-menu-toggle {
    color: var(--text-dark);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
}

.mobile-nav-links li {
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    transition-delay: calc(var(--i) * 0.1s);
}

.mobile-menu.open .mobile-nav-links li {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-links a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px;
    display: inline-block;
}

.mobile-nav-links a:hover {
    color: var(--meg-secondary);
}

/* Dark mode toggle */
.dark-mode-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 990;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: var(--card-light);
}

html.dark .dark-mode-toggle {
    color: var(--text-dark);
    background-color: var(--card-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dark-mode-toggle:hover {
    transform: scale(1.1);
}

/* Back to top button */
.back-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--meg-primary);
    color: white;
    position: fixed;
    bottom: 20px;
    right: 70px;
    z-index: 990;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--meg-dark);
    transform: translateY(-3px);
}

/* Loading indicator */
.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--meg-primary);
    z-index: 2000;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.loading-indicator.loading {
    animation: loading 2s infinite ease-in-out;
}

@keyframes loading {
    0% { transform: scaleX(0); }
    50% { transform: scaleX(0.5); }
    100% { transform: scaleX(0); transform-origin: right; }
}

/* Form styles */
.form-input {
    width: 100%;
    background-color: var(--card-light);
    color: var(--text-light);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

html.dark .form-input {
    background-color: var(--card-dark);
    color: var(--text-dark);
    border-color: var(--border-dark);
}

.form-input:focus {
    outline: none;
    border-color: var(--meg-primary);
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.2);
}

html.dark .form-input:focus {
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.4);
}

/* Success and error messages */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    animation: slideDown 0.3s ease forwards;
}

.form-message i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.form-message.success {
    background-color: #dcfce7;
    color: #166534;
}

html.dark .form-message.success {
    background-color: #065f46;
    color: #d1fae5;
}

.form-message.error {
    background-color: #fee2e2;
    color: #b91c1c;
}

html.dark .form-message.error {
    background-color: #7f1d1d;
    color: #fecaca;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: white;
    padding: 80px 0 30px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--meg-secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--meg-secondary);
    transform: translateY(-3px);
}

/* Lazy Load Images */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-image.loaded {
    opacity: 1;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-up {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse animation for interactive elements */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Scroll-based animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* VIP Transport Gold Effects */
.viptransport-gold-accent {
    background: linear-gradient(45deg, #854d0e, #ca8a04, #facc15);
    background-size: 200% 200%;
    animation: goldShine 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

@keyframes goldShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gold-border {
    border: 2px solid var(--vip-accent);
}

/* AutoClub Specific Styles */
.autoclub {
    background-color: var(--bg-light);
}

html.dark .autoclub {
    background-color: var(--bg-dark);
}

.autoclub-hero {
    background-image: linear-gradient(135deg, rgba(225, 29, 72, 0.5), rgba(28, 25, 23, 0.5)), 
                      url('https://images.unsplash.com/photo-1520340356584-f9917d1eea6f?ixlib=rb-1.2.1&auto=format&fit=crop&w=750&q=80');
    background-size: cover;
    background-position: center;
}

.autoclub-btn {
    background-color: var(--auto-primary);
    color: white;
}

.autoclub-btn:hover {
    background-color: var(--auto-dark);
    box-shadow: 0 5px 15px rgba(190, 18, 60, 0.3);
}

.autoclub-feature .feature-icon {
    background-color: var(--auto-light);
    color: var(--auto-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header {
        padding: 1rem;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .business-card {
        margin-bottom: 2rem;
    }
    
    .real-logo, .autoclub-logo, .dryclean-logo, .gomarine-logo, .megboat-logo, .viptransport-logo {
        height: 40px;
    }
    
    .hero-logo {
        height: 60px;
    }
    
    .dark-mode-toggle {
        bottom: 15px;
        right: 15px;
    }
    
    .back-to-top {
        bottom: 15px;
        right: 65px;
    }
}