/* ========================================
   NAKLIYE FİRMASI - ANA STIL DOSYASI
   Modern, Gradient Temalı, Responsive Tasarım
======================================== */

/* === CSS DEĞİŞKENLERİ === */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #f97316;
    --secondary-dark: #ea580c;
    --secondary-light: #fb923c;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #2563eb, #7c3aed, #f97316);
    --gradient-header: linear-gradient(90deg, #1d4ed8, #7c3aed);
    --gradient-button: linear-gradient(135deg, #f97316, #ea580c, #dc2626);
    --gradient-card: linear-gradient(180deg, #ffffff, #f8fafc);
    
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    --transition: all 0.3s ease;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

ul {
    list-style: none;
}

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

/* === CONTAINER === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER === */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.header-top {
    background: var(--gradient-header);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

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

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-info a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    color: white;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.header-main {
    padding: 15px 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    margin-left: 5px;
}

.logo-icon {
    font-size: 28px;
    color: var(--primary-color);
}

.logo h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.logo h1 i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-logo-img {
    height: 25px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 8px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 35px;
    height: 30px;
    position: relative;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    margin: 6px 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: var(--secondary-color);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: var(--secondary-color);
}

.main-nav ul {
    display: flex;
    gap: 5px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nav-link span {
    position: relative;
    z-index: 1;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    border-radius: 50px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
    transform-origin: left;
    animation: gradientShift 3s ease infinite;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link:hover span,
.nav-link.active span {
    color: white;
}

/* İletişim Butonu Özel Stil */
.nav-link.contact-btn {
    background: var(--gradient-button);
    background-size: 200% 200%;
    color: white;
    animation: gradientShift 4s ease infinite;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.nav-link.contact-btn::before {
    background: linear-gradient(135deg, #ea580c, #dc2626);
}

.nav-link.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

/* === MAIN CONTENT === */
.main-content {
    min-height: calc(100vh - 400px);
}

/* === MESSAGES/ALERTS === */
.messages-container {
    padding: 20px 0;
}

.alert {
    padding: 15px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
}

.alert-close:hover {
    opacity: 1;
}

/* === PAGE HEADER === */
.page-header {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 60px 0;
    text-align: center;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* === SLIDER === */
.slider-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    height: 100vh;
    z-index: 0;
}

.slider-spacer {
    height: 100vh;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

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

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
}

.slide-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

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

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.slider-dot.active {
    background: white;
}

/* === SECTION STYLES === */
.section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: var(--bg-light);
}

.section:first-of-type {
    margin-top: 0;
}

.main-content {
    position: relative;
    z-index: 1;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header .underline {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* === SERVICES GRID (ANASAYFA) === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card-image {
    height: 200px;
    overflow: hidden;
}

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

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

.service-card-content {
    padding: 25px;
}

.service-card-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}

/* === SERVICES PAGE (1/3 - 2/3 Layout) === */
.services-page {
    padding: 60px 0;
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.services-sidebar {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.services-list {
    margin-bottom: 30px;
}

.services-list h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.services-list ul li {
    margin-bottom: 5px;
}

.services-list ul li a {
    display: block;
    padding: 12px 15px;
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-weight: 500;
}

.services-list ul li a:hover,
.services-list ul li a.active {
    background: var(--primary-color);
    color: white;
}

.services-list ul li a i {
    margin-right: 10px;
}

/* Bilgi Alın Kutusu */
.info-box {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: white;
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.info-box h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.info-box p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.info-box .phone {
    font-size: 22px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.info-box .btn {
    background: white;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-box .btn-call {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    animation: pulse-call 2s infinite;
}

.info-box .btn-call:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-call {
    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); }
}

/* Hizmet Detay */
.service-detail {
    background: var(--bg-white);
}

.service-detail-image {
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-detail p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* === ABOUT SECTION === */
.about-section {
    background: var(--bg-light);
}

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

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
}

/* === GUIDE PREVIEW SECTION === */
.guide-preview-section {
    background: var(--bg-white);
}

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

.guide-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.guide-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.guide-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.guide-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* === CONTACT HOME SECTION === */
.contact-home-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.contact-home-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-home-form {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

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

.contact-home-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.contact-info-card i {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-card p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

/* === GALLERY === */
.gallery-section {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: white;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: var(--transition);
}

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

/* === CONTACT PAGE === */
.contact-section {
    padding: 60px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.contact-info-wrapper {
    padding: 40px;
}

.contact-info-wrapper h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.contact-info-list {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-item i {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

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

.map-container {
    margin-top: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
}

.map-overlay .btn {
    padding: 10px 20px;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* === FAQ / ACCORDION === */
.faq-section {
    padding: 60px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background: var(--primary-color);
    color: white;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 20px 25px;
    color: var(--text-medium);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    color: white;
    animation: gradientShift 5s ease infinite;
}

.btn-primary:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: var(--gradient-button);
    background-size: 200% 200%;
    color: white;
    animation: gradientShift 5s ease infinite;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
}

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

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

.btn-block {
    display: block;
    width: 100%;
}

/* === FOOTER === */
.footer {
    background: linear-gradient(180deg, #1f2937, #111827);
    color: white;
    position: relative;
    z-index: 1;
}

.footer-main {
    padding: 60px 0;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section h3 i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.7;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #9ca3af;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section .contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #9ca3af;
}

.footer-section .contact-list li i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.footer-social a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .services-layout,
    .contact-layout,
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .slider-section {
        height: 400px;
    }
    
    .service-detail-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-lg);
        display: none;
        padding: 80px 20px 20px;
        z-index: 999;
        overflow-y: auto;
    }
    
    .main-nav.active {
        display: block;
        animation: fadeInMenu 0.3s ease;
    }
    
    @keyframes fadeInMenu {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 5px;
    }
    
    .main-nav .nav-link {
        padding: 15px 20px;
        border-radius: var(--radius-md);
        font-size: 16px;
    }
    
    .nav-link.contact-btn {
        margin-top: 10px;
        justify-content: center;
    }
    
    .header-main-content {
        padding: 10px 0;
    }
    
    .slider-section {
        height: 280px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .page-header {
        padding: 35px 0;
    }
    
    .page-header h1 {
        font-size: 26px;
    }
    
    .section {
        padding: 45px 0;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .contact-home-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .guide-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    /* Services Layout Mobile */
    .services-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .services-sidebar {
        order: 2;
    }
    
    .service-detail {
        order: 1;
    }
    
    .service-detail-image {
        height: 250px;
    }
    
    .service-detail h2 {
        font-size: 22px;
    }
    
    /* About Content Mobile */
    .about-content {
        gap: 30px;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-text {
        order: 2;
    }
    
    /* Contact Layout Mobile */
    .contact-layout {
        gap: 30px;
    }
    
    .contact-info-item {
        gap: 12px;
    }
    
    .contact-info-item i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .contact-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .logo h1 {
        font-size: 14px;
    }
    
    .logo h1 i {
        font-size: 18px;
    }
    
    .logo-icon {
        font-size: 22px;
    }
    
    .footer-logo-img {
        height: 20px;
    }
    
    .slider-section {
        height: 70vh;
    }
    
    .slider-spacer {
        height: 70vh;
    }
    
    .slide-content {
        padding: 15px;
    }
    
    .slide-content h2 {
        font-size: 18px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .page-header {
        padding: 30px 0;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .page-header p {
        font-size: 14px;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-main {
        padding: 40px 0;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 16px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    /* Contact Form Mobile */
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 25px;
    }
    
    .contact-form-wrapper h3,
    .contact-info-wrapper h3 {
        font-size: 18px;
    }
    
    /* Service Cards Mobile */
    .service-card-content {
        padding: 20px;
    }
    
    .service-card-content h3 {
        font-size: 18px;
    }
    
    .service-card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    /* Info Box Mobile */
    .info-box {
        padding: 20px;
    }
    
    .info-box .phone {
        font-size: 18px;
    }
    
    /* Contact Home Section */
    .contact-home-form {
        padding: 25px;
    }
    
    .contact-info-card {
        padding: 15px;
        gap: 15px;
    }
    
    .contact-info-card i {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .contact-info-card h4 {
        font-size: 12px;
    }
    
    .contact-info-card p {
        font-size: 14px;
    }
    
    /* Guide Cards Mobile */
    .guide-card {
        padding: 20px;
    }
    
    .guide-card-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .guide-card h3 {
        font-size: 16px;
    }
    
    /* Buttons Mobile */
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .btn-block {
        padding: 14px 20px;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .faq-answer-content {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    /* About Section Mobile */
    .about-text h2 {
        font-size: 24px;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    /* Services Sidebar Mobile */
    .services-sidebar {
        padding: 20px;
    }
    
    .services-list h3 {
        font-size: 16px;
    }
    
    .services-list ul li a {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    /* Map Mobile */
    .map-container {
        height: 250px;
    }
    
    .map-overlay .btn {
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* === UTILITIES === */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

/* Placeholder resim yokken */
.placeholder-image {
    background: linear-gradient(135deg, var(--bg-gray), var(--border-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 48px;
}

/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

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

/* === DROPDOWN MENU === */
.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    display: block;
    width: 100%;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 14px;
    border-radius: 0;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-menu li a i {
    width: 20px;
    color: var(--primary-color);
}

/* === SERVICES CAROUSEL === */
.services-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.services-carousel {
    overflow: hidden;
    flex: 1;
}

.services-carousel-wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.services-carousel-wrapper .service-card {
    min-width: 320px;
    flex-shrink: 0;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
}

/* === FOOTER DEVELOPER CREDIT === */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 8px;
}

.developer-credit {
    font-size: 13px !important;
    color: #6b7280 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.developer-credit i {
    color: var(--secondary-color);
}

.developer-credit span {
    color: var(--primary-light);
    font-weight: 500;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.developer-email {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #9ca3af;
    font-size: 12px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-left: 5px;
}

.developer-email:hover {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.developer-email i {
    font-size: 11px;
}

/* === CONTACT FORM REQUIRED NOTICE === */
.required-notice {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 12px 15px;
    border-radius: var(--radius-md);
    font-size: 13px;
    color: #92400e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 4px solid #f59e0b;
}

.required-star {
    color: #e74c3c;
    font-weight: bold;
}

/* === GLOBAL ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }

/* Page transitions */
.main-content {
    animation: fadeIn 0.5s ease;
}

/* Button hover effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Card hover animations */
.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Input focus animations */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    transform: translateY(-2px);
}

/* Link underline animation */
.footer-section ul li a {
    position: relative;
}

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

.footer-section ul li a:hover::after {
    width: 100%;
}

/* === RESPONSIVE FOR NEW FEATURES === */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        display: none;
        min-width: 100%;
        margin-top: 10px;
        border-radius: var(--radius-md);
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            max-height: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            max-height: 500px;
            transform: translateY(0);
        }
    }
    
    .services-carousel-container {
        flex-direction: row;
        position: relative;
        align-items: center;
    }
    
    .carousel-btn {
        display: flex;
        width: 40px;
        height: 40px;
        font-size: 14px;
        z-index: 10;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .carousel-btn.carousel-prev {
        left: 5px;
    }
    
    .carousel-btn.carousel-next {
        right: 5px;
    }
    
    .services-carousel {
        margin: 0;
        width: 100%;
        overflow: hidden;
    }
    
    .services-carousel-wrapper {
        display: flex;
        gap: 0;
        overflow: visible;
        transition: transform 0.4s ease;
    }
    
    .services-carousel-wrapper .service-card {
        min-width: 100%;
        width: 100%;
        flex-shrink: 0;
        padding: 0 50px;
        box-sizing: border-box;
    }
    
    .developer-credit {
        flex-direction: column;
        gap: 4px;
    }
    
    .developer-email {
        margin-left: 0;
        margin-top: 5px;
    }
    
    /* Footer mobilde düzgün davransın */
    .footer {
        position: relative;
        z-index: 100;
    }
}

/* === EXTRA SMALL DEVICES === */
@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 14px;
    }
    
    .logo h1 i {
        font-size: 18px;
        margin-right: 5px;
    }
    
    .slider-section {
        height: 200px;
    }
    
    .slide-content h2 {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .page-header h1 {
        font-size: 20px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .guide-card {
        padding: 15px;
    }
    
    .guide-card-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .contact-info-card {
        padding: 12px;
    }
    
    .contact-info-card i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        left: 15px;
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* === TOUCH DEVICE OPTIMIZATIONS === */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover::before {
        transform: scaleX(0);
    }
    
    .nav-link.active::before {
        transform: scaleX(1);
    }
    
    .service-card:hover {
        transform: none;
    }
    
    .service-card:active {
        transform: scale(0.98);
    }
    
    .btn:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.95);
    }
    
    .gallery-item:hover img {
        transform: none;
    }
    
    .contact-info-card:hover {
        transform: none;
    }
}

/* === LANDSCAPE MODE === */
@media (max-height: 500px) and (orientation: landscape) {
    .slider-section {
        height: 60vh;
    }
    
    .page-header {
        padding: 20px 0;
    }
    
    .section {
        padding: 30px 0;
    }
}
