/* ==========================================
   BUHANLAR İNŞAAT - Elite Premium Theme
   ========================================== */

/* ---------- Variables ---------- */
:root {
    --primary: #c9a84c;
    --primary-dark: #b8942e;
    --primary-light: #d4b96a;
    --dark: #1a1a2e;
    --darker: #0f0f1a;
    --dark-blue: #16213e;
    --navy: #0f3460;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --shadow: 0 5px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --radius: 12px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Montserrat', sans-serif; color: var(--gray-800); overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; transition: var(--transition); }

/* ---------- Typography ---------- */
.section-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.tag-line { width: 40px; height: 2px; background: var(--primary); }
.tag-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.2;
}
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle { color: var(--gray-600); font-size: 1.1rem; max-width: 600px; }
.section-padding { padding: 100px 0; }

/* ---------- Buttons ---------- */
.btn-premium {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-premium::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), #a07d1e);
    transition: left 0.4s ease;
    z-index: -1;
}
.btn-premium:hover::before { left: 0; }
.btn-premium:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.4); }
.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-light:hover { background: var(--white); color: var(--dark); }

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--darker);
    color: var(--gray-400);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-bar-left span { margin-right: 20px; }
.top-bar-right span { margin-right: 15px; }
.top-social a { color: var(--gray-400); margin-left: 12px; font-size: 13px; }
.top-social a:hover { color: var(--primary); }

/* ---------- Navbar ---------- */
#mainNav {
    background: rgba(26,26,46,0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
#mainNav.scrolled {
    background: rgba(15,15,26,0.98);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
}
.brand-slogan {
    color: var(--primary);
    font-size: 11px;
    letter-spacing: 1px;
}
.navbar-nav .nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 18px !important;
    position: relative;
    transition: var(--transition);
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 60%; }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary) !important; }
.btn-nav {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    padding: 8px 24px !important;
}
.btn-nav::after { display: none !important; }
.btn-nav:hover { box-shadow: 0 4px 15px rgba(201,168,76,0.4); }

/* ---------- Hero ---------- */
.hero-section { position: relative; }
.hero-slide {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(26,26,46,0.55) 0%, rgba(15,52,96,0.45) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.hero-tag {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(201,168,76,0.3);
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.7;
}
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

/* Swiper Hero */
.heroSwiper .swiper-pagination-bullet { background: var(--primary); opacity: 0.5; }
.heroSwiper .swiper-pagination-bullet-active { opacity: 1; width: 30px; border-radius: 5px; }
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev { color: var(--primary); }

/* ---------- Stats ---------- */
.stats-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.stat-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary);
    font-size: 24px;
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
}
.stat-label { color: var(--gray-600); font-size: 14px; font-weight: 500; }

/* ---------- About Preview ---------- */
.about-image-wrapper {
    position: relative;
}
.about-image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image-main img { width: 100%; display: block; }
.about-experience-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(201,168,76,0.4);
}
.exp-number { font-size: 2.5rem; font-weight: 800; display: block; line-height: 1; }
.exp-text { font-size: 13px; opacity: 0.9; }
.about-lead { font-size: 1.05rem; color: var(--gray-700); line-height: 1.8; }
.about-features { margin-top: 25px; }
.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.feature-icon { color: var(--primary); font-size: 22px; margin-top: 3px; }
.feature-text h5 { font-weight: 600; margin-bottom: 3px; color: var(--dark); }
.feature-text p { color: var(--gray-600); font-size: 14px; margin: 0; }

/* ---------- Services ---------- */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 32px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotateY(180deg);
}
.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}
.service-desc { color: var(--gray-600); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}
.service-link:hover { color: var(--primary-dark); }
.service-link i { transition: transform 0.3s; }
.service-link:hover i { transform: translateX(5px); }

/* ---------- Projects ---------- */
.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
    height: 100%;
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}
.project-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.project-card:hover .project-image img { transform: scale(1.1); }
.project-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(26,26,46,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-actions { display: flex; gap: 10px; }
.project-btn {
    width: 50px; height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
}
.project-card:hover .project-btn { transform: translateY(0); opacity: 1; }
.project-card:hover .project-actions .project-btn:nth-child(2) { transition-delay: 0.1s; }
.project-btn:hover { background: var(--primary-dark); }
.project-category {
    position: absolute;
    top: 15px; left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}
.project-info { padding: 20px; }
.project-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}
.project-location { color: var(--gray-500); font-size: 13px; margin-bottom: 10px; }
.project-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--gray-500);
    border-top: 1px solid var(--gray-200);
    padding-top: 12px;
}

/* ---------- Why Us ---------- */
.custom-accordion .accordion-item { border: none; margin-bottom: 10px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.custom-accordion .accordion-button { font-weight: 600; color: var(--dark); padding: 15px 20px; }
.custom-accordion .accordion-button:not(.collapsed) { background: rgba(201,168,76,0.1); color: var(--primary-dark); }
.custom-accordion .accordion-button::after { filter: grayscale(1); }
.why-us-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.why-us-image img { width: 100%; display: block; }

/* ---------- CTA ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}
.cta-text { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page Hero ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
    padding: 120px 0 60px;
}
.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 10px;
}
.breadcrumb { display: flex; align-items: center; gap: 10px; }
.breadcrumb-link { color: var(--primary); font-weight: 500; }
.breadcrumb-link:hover { color: var(--primary-light); }
.breadcrumb-separator { color: var(--gray-500); }
.breadcrumb-current { color: rgba(255,255,255,0.7); }

/* ---------- About Detail ---------- */
.about-image-grid { position: relative; }
.about-img-1 {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-1 img { width: 100%; display: block; }
.about-img-2 {
    position: absolute;
    bottom: -30px; right: -30px;
    width: 200px;
    border-radius: 15px;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}
.about-img-2 img { width: 100%; display: block; }
.experience-badge {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(201,168,76,0.4);
    z-index: 2;
}
.about-feature { margin-bottom: 20px; }
.about-feature .feature-icon {
    width: 50px; height: 50px;
    background: rgba(201,168,76,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 12px;
}
.about-feature h5 { font-weight: 600; margin-bottom: 5px; }
.about-feature p { color: var(--gray-600); font-size: 14px; }
.about-values { background: rgba(201,168,76,0.05); padding: 20px; border-radius: 12px; border-left: 4px solid var(--primary); }
.about-values h5 { font-weight: 600; margin-bottom: 5px; }
.about-values p { color: var(--gray-600); font-size: 14px; margin: 0; }

/* Mission Vision Cards */
.mv-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}
.mv-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}
.mv-card:hover { transform: translateY(-5px); }
.mv-icon {
    width: 70px; height: 70px;
    background: rgba(201,168,76,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
}
.mv-card.featured .mv-icon { background: rgba(255,255,255,0.2); color: var(--white); }
.mv-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 15px; }
.mv-card p { font-size: 14px; line-height: 1.7; opacity: 0.9; }

/* ---------- Service Detail ---------- */
.service-detail-row {
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-200);
}
.service-detail-row:last-child { border-bottom: none; }
.service-detail-row.reverse .row > div:first-child { order: 2; }
.service-detail-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.service-detail-image img { width: 100%; display: block; }
.service-detail-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    margin-bottom: 20px;
}
.service-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}
.service-detail-content p { color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; }

/* ---------- Project Filters ---------- */
.project-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.filter-btn {
    background: transparent;
    border: 2px solid var(--gray-300);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.project-item.hidden { display: none !important; }

/* ---------- Contact ---------- */
.contact-info-list { margin-top: 20px; }
.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.contact-icon {
    width: 50px; height: 50px;
    background: rgba(201,168,76,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}
.contact-text h5 { font-weight: 600; margin-bottom: 3px; font-size: 15px; }
.contact-text p { color: var(--gray-600); font-size: 14px; margin: 0; }
.contact-text a { color: var(--gray-600); }
.contact-text a:hover { color: var(--primary); }
.contact-social { display: flex; gap: 10px; }
.social-btn {
    width: 40px; height: 40px;
    background: var(--gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 16px;
    transition: var(--transition);
}
.social-btn:hover { background: var(--primary); color: var(--white); }
.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}
.contact-form .form-group label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--dark);
}
.contact-form .form-control {
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    transition: var(--transition);
}
.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}
.contact-map { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.contact-map iframe { display: block; }

/* ---------- Footer ---------- */
.pre-footer {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 40px 0;
}
.pre-footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 5px;
}
.pre-footer-text { color: rgba(255,255,255,0.9); }
.main-footer {
    background: var(--dark);
    padding: 80px 0 40px;
    color: rgba(255,255,255,0.7);
}
.footer-logo { margin-bottom: 20px; }
.logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}
.logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}
.footer-desc { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}
.social-link:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }
.footer-widget { margin-bottom: 20px; }
.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--primary);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-links a i { font-size: 10px; margin-right: 8px; color: var(--primary); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}
.footer-contact i { color: var(--primary); font-size: 16px; margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--primary); }
.copyright-footer {
    background: var(--darker);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.copyright-footer p { margin: 0; font-size: 13px; color: var(--gray-500); }
.copyright-footer a { color: var(--gray-500); }
.copyright-footer a:hover { color: var(--primary); }

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }

/* ---------- Mid Contact Form (Biz Sizi Arayalım) ---------- */
.mid-contact-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.mid-contact-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
}
.mid-contact-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.mid-contact-shape-left {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.mid-contact-shape-right {
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.mid-contact-content {
    position: relative;
    z-index: 2;
}
.mid-contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
}
.mid-contact-card .section-tag { justify-content: center; }
.mid-contact-card .section-title { text-align: center; }
.mid-contact-card .section-subtitle { text-align: center; margin: 0 auto 30px; }
.mid-contact-card .form-control {
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 15px;
    transition: var(--transition);
}
.mid-contact-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}
.mid-contact-phone {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    text-align: center;
}
.mid-contact-phone-inner {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 15px 30px;
    backdrop-filter: blur(10px);
}
.mid-contact-phone-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    animation: phonePulse 2s infinite;
}
@keyframes phonePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(201,168,76,0); }
}
.mid-contact-phone-text { color: rgba(255,255,255,0.7); font-size: 13px; }
.mid-contact-phone-number {
    display: block;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
}
.mid-contact-phone-number:hover { color: var(--primary); }

/* ---------- Testimonials ---------- */
.testimonials-section {
    background: var(--gray-100);
}
.testimonials-slider {
    padding: 20px 0;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 60px;
    color: rgba(201,168,76,0.12);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}
.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}
.testimonial-stars i { color: var(--primary); font-size: 14px; }
.testimonial-text {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(201,168,76,0.2);
    flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}
.testimonial-name { font-weight: 700; color: var(--dark); margin-bottom: 2px; font-size: 15px; }
.testimonial-role { color: var(--gray-500); font-size: 13px; }
.swiper-testimonials .swiper-pagination-bullet { background: var(--primary); opacity: 0.3; }
.swiper-testimonials .swiper-pagination-bullet-active { opacity: 1; }
.swiper-testimonials .swiper-button-next,
.swiper-testimonials .swiper-button-prev { color: var(--primary); }

/* ---------- Blog / Haberler ---------- */
.blog-section {
    background: var(--white);
}
.blog-card-home {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}
.blog-card-home:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-image-home {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.blog-image-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card-home:hover .blog-image-home img { transform: scale(1.1); }
.blog-date-home {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
}
.blog-date-home .day { display: block; font-size: 1.3rem; font-weight: 800; }
.blog-date-home .month { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.blog-content-home { padding: 25px; }
.blog-category-home {
    display: inline-block;
    background: rgba(201,168,76,0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}
.blog-title-home {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-title-home:hover { color: var(--primary); }
.blog-excerpt-home {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}
.blog-link-home {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}
.blog-link-home:hover { color: var(--primary-dark); }
.blog-link-home i { transition: transform 0.3s; }
.blog-link-home:hover i { transform: translateX(5px); }

/* ---------- WhatsApp / Floating Buttons ---------- */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
    position: relative;
}
.floating-btn:hover { transform: scale(1.1); color: var(--white); }
.floating-btn-whatsapp { background: #25d366; }
.floating-btn-phone { background: var(--primary); }
.floating-btn-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.floating-btn-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--dark);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
.floating-btn:hover .floating-btn-tooltip { opacity: 1; visibility: visible; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .cta-title { font-size: 2rem; }
    .page-title { font-size: 2.2rem; }
    .mid-contact-card { padding: 35px 25px; }
}
@media (max-width: 767px) {
    .hero-title { font-size: 2rem; }
    .hero-slide { min-height: 500px; }
    .section-padding { padding: 60px 0; }
    .top-bar-left span { display: block; margin-bottom: 5px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
    .contact-form-wrapper { padding: 25px; }
    .about-experience-badge { position: relative; bottom: auto; right: auto; margin-top: -30px; display: inline-block; }
    .mid-contact-card { padding: 30px 20px; }
    .mid-contact-phone-inner { flex-direction: column; text-align: center; padding: 20px; }
    .floating-buttons { bottom: 20px; right: 20px; }
    .floating-btn { width: 50px; height: 50px; font-size: 20px; }
    .testimonial-card { padding: 25px 20px; }
}
