/* =========================================================
   ANIL NAKLİYAT - ULTRA PREMIUM HOLDING STYLE CSS
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    --primary: #FF4B2B; /* Enerji Turuncusu */
    --primary-dark: #E43A1D;
    --secondary: #0A192F; /* Kurumsal Lacivert */
    --secondary-light: #112240;
    --accent: #FFD700; /* Lüks Altın Rengi */
    --text-dark: #0F172A;
    --text-light: #64748B;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

/* =========================================================
   PRELOADER (AÇILIŞ EKRANI)
   ========================================================= */
#preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--secondary);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.6s ease;
}
.loader-logo { width: 180px; margin-bottom: 2rem; animation: pulse 1.5s infinite alternate; }
.spinner {
    width: 60px; height: 60px; border: 4px solid rgba(255,255,255,0.1);
    border-radius: 50%; border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes pulse { 0% { transform: scale(0.95); opacity: 0.8; } 100% { transform: scale(1.05); opacity: 1; } }

/* =========================================================
   TOPBAR (MEGA PROFESYONEL)
   ========================================================= */
.topbar {
    background: var(--secondary-light);
    color: #cbd5e1;
    padding: 2px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.topbar-left { display: flex; gap: 30px; }
.topbar-left span { display: flex; align-items: center; gap: 8px; }
.topbar-left i { color: var(--accent); font-size: 1.1rem; }
.mobile-only { display: none; }

.topbar-right { display: flex; gap: 20px; align-items: center; }
.social-icons { display: flex; gap: 15px; }
.social-icons a {
    color: #cbd5e1;
    background: rgba(255,255,255,0.1);
    width: 24px; height: 24px;
    font-size: 0.75rem;
    display: flex; justify-content: center; align-items: center;
    border-radius: 50%;
    transition: var(--transition);
}
.social-icons a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }

/* =========================================================
   NAVBAR (TEK SATIR KURUMSAL HOLDİNG)
   ========================================================= */
.navbar {
    background: transparent;
    padding: 20px 0;
    box-shadow: none;
    position: absolute;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

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

.nav-logo img { height: 45px; }
.nav-logo span { color: var(--white) !important; transition: var(--transition); }
.navbar.scrolled .nav-logo span { color: var(--secondary) !important; }

/* Scroll Margin for fixed navbar overlap fix */
section {
    scroll-margin-top: 90px;
}

/* Linkler */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: var(--transition);
    white-space: nowrap;
}

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

.navbar.scrolled .nav-links li a {
    color: var(--secondary) !important;
}

/* Sağ Taraf: Telefon + Buton */
.nav-right-single {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-phone i {
    font-size: 1.4rem;
    color: var(--primary);
}

.nav-phone div {
    display: flex;
    flex-direction: column;
}

.nav-phone span {
    font-size: 0.7rem;
    color: var(--text-light);
    white-space: nowrap;
}

.nav-phone strong {
    font-size: 0.9rem;
    color: var(--secondary);
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
}

.btn-quote-single {
    background: var(--primary);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    transition: var(--transition);
    font-size: 0.8rem;
    white-space: nowrap;
}

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

/* =========================================================
   HERO SLIDER (KAYAN GÖRSELLER)
   ========================================================= */
.hero-slider-wrap {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--secondary);
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center center;
}

.slide.active { opacity: 1; z-index: 1; }

.slide::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.4) 100%);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.slider-btn {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex; justify-content: center; align-items: center;
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    z-index: 5;
    max-width: 700px;
}

.slide.active .hero-content h1 {
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.slide.active .hero-content p {
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}
.slide.active .hero-content .hero-buttons {
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
    font-size: 4.5rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 25px;
}
.hero-content h1 span { color: var(--primary); border-bottom: 4px solid var(--primary); }
.hero-content p {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-primary-lg {
    background: var(--primary);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 4px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 10px;
    transition: var(--transition);
}
.btn-primary-lg:hover { background: var(--white); color: var(--secondary); }

/* =========================================================
   SERVICES SECTION (HİZMETLERİMİZ)
   ========================================================= */
.services { padding: 120px 0; background: var(--white); }
.section-header { text-align: center; margin-bottom: 80px; }
.section-header h5 { color: var(--primary); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 15px; font-weight: 800; }
.section-header h2 { font-size: 3.5rem; color: var(--secondary); }

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

.service-card {
    background: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding-bottom: 35px;
    border: 1px solid rgba(0,0,0,0.02);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.service-img {
    width: 100%; height: 260px; object-fit: cover;
    margin-bottom: 25px;
    transition: transform 0.8s ease;
}

.service-card:hover .service-img { transform: scale(1.08); }
.service-card h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--secondary); padding: 0 30px; font-weight: 700; }
.service-card p { font-size: 1rem; color: var(--text-light); padding: 0 30px; line-height: 1.6; margin-bottom: 20px; }

.service-link {
    display: inline-block;
    padding: 0 30px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    transition: var(--transition);
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--secondary);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* =========================================================
   MEGA FOOTER (DEV ALT BİLGİ)
   ========================================================= */
.footer {
    background: #060e1a;
    color: #94a3b8;
    padding: 60px 0 0 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 25px;
    margin-bottom: 25px;
}

.footer-logo { width: 180px; margin-bottom: 20px; }
.footer-about p { margin-bottom: 20px; font-size: 0.95rem; line-height: 1.5; }

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: ''; position: absolute;
    left: 0; bottom: 0; width: 50px; height: 3px;
    background: var(--primary);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 8px; font-size: 0.95rem; }
.footer-links li a { display: flex; align-items: center; gap: 8px; transition: 0.3s; }
.footer-links li a:hover { color: var(--primary); padding-left: 5px; }

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
    font-size: 0.95rem;
}
.footer-contact i {
    color: var(--primary);
    font-size: 1.2rem;
    background: rgba(255,75,43,0.1);
    width: 35px; height: 35px;
    display: flex; justify-content: center; align-items: center;
    border-radius: 5px;
}
.footer-contact h6 { color: var(--white); font-size: 1rem; margin-bottom: 3px; }

.newsletter-box {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 5px;
    border-left: 3px solid var(--primary);
}
.newsletter-box h4 { border: none; padding: 0; margin-bottom: 10px; }
.newsletter-box p { margin-bottom: 15px; font-size: 0.9rem; }
.newsletter-form { display: flex; }
.newsletter-form input {
    flex: 1; padding: 12px; border: none; outline: none;
    background: rgba(255,255,255,0.1); color: var(--white); font-size: 0.9rem;
}
.newsletter-form button {
    padding: 12px 20px; background: var(--primary); color: var(--white);
    border: none; cursor: pointer; font-weight: bold; transition: 0.3s; font-size: 0.9rem;
}
.newsletter-form button:hover { background: var(--white); color: var(--secondary); }

.footer-bottom {
    background: #03080f;
    padding: 30px 0;
    text-align: center;
    font-size: 1rem;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 3.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .faq-list { grid-template-columns: 1fr; }
}

/* =========================================================
   YORUMLAR VE SSS
   ========================================================= */
.testimonials {
    background: var(--bg-light);
    padding: 80px 0;
}
.testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    margin-top: 40px;
    padding-bottom: 20px;
}
.testimonials-grid::-webkit-scrollbar {
    height: 8px;
}
.testimonials-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    flex: 0 0 calc(20% - 24px); /* Show exactly 5 cards (assuming 30px gap) */
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-card .stars {
    color: #f59e0b;
    margin-bottom: 15px;
    font-size: 1rem;
}
.testimonial-card p {
    font-size: 0.95rem;
    color: var(--secondary);
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
}
.client-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}
.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}
.client-info strong {
    display: block;
    font-size: 1rem;
    color: var(--primary);
    font-weight: 700;
}
.client-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

@media (max-width: 1200px) {
    .testimonial-card { flex: 0 0 calc(33.333% - 20px); }
}
@media (max-width: 768px) {
    .testimonial-card { flex: 0 0 100%; }
}

.faq {
    background: var(--white);
    padding: 80px 0;
}
.faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 0;
}
.faq-item {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    height: fit-content;
}
.faq-item summary {
    padding: 20px 60px 20px 30px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    list-style: none;
    position: relative;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}
.faq-item[open] summary::after {
    content: '-';
}
.faq-content {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.6;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 5px;
    padding-top: 20px;
}

/* =========================================================
   KURUMSAL VE İLETİŞİM BÖLÜMLERİ
   ========================================================= */
.about-section {
    padding: 80px 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}
.about-experience strong {
    display: block;
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 5px;
}
.about-experience span {
    font-size: 1rem;
    font-weight: 600;
}
.about-content h5 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.about-content h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.2;
}
.about-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}
.about-features {
    list-style: none;
    margin-bottom: 30px;
}
.about-features li {
    font-size: 1.05rem;
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 600;
}
.about-features li i {
    color: var(--primary);
    margin-right: 10px;
}

.why-us {
    padding: 80px 0;
    background: var(--secondary);
}
.why-us .section-header h2 {
    color: var(--white);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.why-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.why-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}
.why-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 15px;
}
.why-card p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.contact-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.c-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    transition: var(--transition);
}
.c-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.c-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.c-card h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 15px;
}
.c-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* =========================================================
   EŞYA DEPOLAMA (STORAGE SECTION)
   ========================================================= */
.storage-section {
    padding: 100px 0;
    background: var(--bg-light);
}
.storage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.storage-content h5 {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 800;
}
.storage-content h2 {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 25px;
    line-height: 1.2;
}
.storage-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}
.storage-features {
    list-style: none;
    margin-bottom: 30px;
}
.storage-features li {
    font-size: 1.05rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.storage-features li i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
}
.storage-video {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.storage-video video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.video-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.video-overlay i {
    font-size: 2rem;
    color: var(--primary);
}
.video-overlay span {
    font-weight: 800;
    color: var(--secondary);
    font-size: 1.1rem;
}

/* =========================================================
   MOBILE SIDEBAR (HAMBURGER MENÜ)
   ========================================================= */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--secondary);
    cursor: pointer;
    padding: 5px;
}
.sidebar-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mobile-sidebar {
    position: fixed;
    top: 0; right: -320px; width: 300px; height: 100vh;
    background: var(--white);
    z-index: 1050;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
}
.mobile-sidebar.active {
    right: 0;
}
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.sidebar-header img {
    height: 40px;
    max-width: 200px;
    object-fit: contain;
}
.close-sidebar {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}
.close-sidebar:hover { color: var(--primary); transform: rotate(90deg); }
.sidebar-links {
    list-style: none;
    flex: 1;
}
.sidebar-links li { margin-bottom: 20px; }
.sidebar-links a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary);
    display: block;
    transition: var(--transition);
}
.sidebar-links a:hover { color: var(--primary); padding-left: 10px; }
.sidebar-contact {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.sidebar-contact p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1rem;
}
.sidebar-contact i {
    color: var(--primary);
    width: 20px;
    margin-right: 10px;
}
.sidebar-contact .social-icons {
    display: flex; gap: 15px; margin-top: 20px;
}
.sidebar-contact .social-icons a {
    width: 40px; height: 40px;
    background: var(--bg-light);
    color: var(--secondary);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    transition: var(--transition);
}
.sidebar-contact .social-icons a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-content h1 { font-size: 3rem; }
    .section-header h2 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .nav-contact-big { display: none; }
    .nav-links { display: none; }
    .nav-right-single { display: none; }
    .hamburger-btn { display: block; }
    .logo-text { display: block; font-size: 1.2rem !important; }
    .nav-logo img { height: 35px; }
    
    /* Topbar Mobile Styles */
    .desktop-only { display: none !important; }
    .mobile-only { display: flex !important; align-items: center; }
    
    .topbar { display: block; padding: 10px 0; }
    .topbar .container { flex-direction: row; justify-content: space-between; align-items: center; gap: 0; }
    .topbar-left { flex-direction: row; margin: 0; padding: 0; }
    .topbar-right { justify-content: flex-end; margin: 0; }
    
    .topbar-phone { color: #cbd5e1; font-weight: 700; font-size: 1rem; text-decoration: none; }
    .topbar-phone i { margin-right: 8px; color: var(--accent); }
    .topbar .social-icons { gap: 10px; }
    .topbar .social-icons a { width: 28px; height: 28px; font-size: 0.9rem; }
    
    .hero-slider-wrap { min-height: 500px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; }
    
    .section-header h2 { font-size: 2.2rem; }
    .section-header { margin-bottom: 50px; }
    
    .services, .why-us, .about-section, .testimonials, .faq, .contact-section, .storage-section { 
        padding: 60px 0; 
    }
    
    .services-grid, .footer-grid, .why-grid, .contact-grid-simple, .storage-grid, .faq-list { 
        grid-template-columns: 1fr; 
    }
    
    .footer-bottom .container { flex-direction: column; gap: 15px; text-align: center; }
    .btn-quote-single { padding: 10px 20px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .section-header h2 { font-size: 1.8rem; }
    .service-card h3 { font-size: 1.2rem; }
    .btn-primary { padding: 12px 30px; font-size: 0.9rem; }
}
