/* =================================
   BASE CSS - ARTI ZEMİN
   Reset, Variables, Typography
   ================================= */

/* Fonts are loaded via functions.php for better performance */

/* CSS Variables for consistent theming */
:root {
    --primary-color: #0A2342;
    --secondary-color: #FF6700;
    --background-light: #FFFFFF;
    --background-dark: #111821;
    --text-light: #f6f7f8;
    --text-dark: #333333;
    --accent-color: #FF6700;
    --metal-gray: #B4B8C5;
    --steel-grey: #8D99AE;
    --shadow-sm: 0 1px 2px 0 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);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Enhanced Font Classes */
.font-heading {
    font-family: 'Poppins', sans-serif;
}

.font-display {
    font-family: 'Inter', sans-serif;
}

/* Material Symbols Styling */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    font-size: inherit;
    vertical-align: middle;
}

/* Enhanced Typography */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Styling */
.section {
    padding: 2rem 0;
}

.section-title {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--steel-grey);
    font-size: 0.9rem;
}

/* Enhanced Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Stats Counter */
.stats-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), #1a3d66);
    color: white;
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
    padding: 0 2rem;
}

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

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

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--metal-gray);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Gradient Backgrounds */
.gradient-bg-1 {
    background: linear-gradient(135deg,
            rgba(255, 103, 0, 0.05) 0%,
            rgba(10, 35, 66, 0.05) 100%);
}

.gradient-bg-2 {
    background: linear-gradient(135deg,
            rgba(10, 35, 66, 0.05) 0%,
            rgba(255, 103, 0, 0.05) 100%);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.btn:focus,
.nav-item:focus,
button:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Base Responsive */
@media (max-width: 768px) {

    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }

    .stats-counter {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3rem 0;
    }
}

/* =================================
   HEADER & NAVIGATION CSS
   ================================= */

/* Animated Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

/* Enhanced Navigation */
/* Enhanced Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-menu li a {
    position: relative;
    display: inline-block;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after,
.nav-menu li.current_page_item a::after {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
    color: var(--accent-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--background-light);
    z-index: 999;
    transition: var(--transition);
    padding-top: 80px;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-list,
.mobile-nav ul {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    list-style: none;
    margin: 0;
}

.mobile-nav-item,
.mobile-nav li a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: block;
    /* Ensure full width clickability */
}

.mobile-nav-item:hover,
.mobile-nav li a:hover {
    color: var(--accent-color);
    padding-left: 2rem;
}

/* Responsive Header */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* =================================
   FOOTER CSS
   ================================= */

/* Enhanced Footer */
.footer {
    background: var(--background-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section p {
    color: var(--metal-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: var(--metal-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: var(--metal-gray);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* =================================
   BUTTONS CSS
   ================================= */

/* Animated Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

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

.btn-primary:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

/* Scroll to Top Button Enhancement */
.scroll-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 50;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.scroll-to-top:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* WhatsApp Button Enhancement */
.whatsapp-btn {
    position: fixed;
    left: 1.5rem;
    bottom: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.whatsapp-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* =================================
   HERO SLIDER CSS
   ================================= */

/* Hero Section Enhancements */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(10, 35, 66, 0.9), rgba(10, 35, 66, 0.7));
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 35, 66, 0.8), rgba(10, 35, 66, 0.6));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

/* Enhanced Hero Slider */
.hero-slider {
    position: relative;
    height: 60vh;
    min-height: 480px;
    overflow: hidden;
    background: var(--background-dark);
    touch-action: pan-y;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
    z-index: 2;
}

.slide.exit-left {
    opacity: 0;
    transform: translateX(-30px) scale(1);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.exit-right {
    opacity: 0;
    transform: translateX(30px) scale(1);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slide Content Animation */
.slide .container {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.3s;
}

.slide.active .container {
    opacity: 1;
    transform: translateY(0);
}

.slide h2 {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease 0.5s;
}

.slide.active h2 {
    opacity: 1;
    transform: translateY(0);
}

.slide p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease 0.7s;
}

.slide.active p {
    opacity: 1;
    transform: translateY(0);
}

.slide .flex {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease 0.9s;
}

.slide.active .flex {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Loading States */
.slide:not(.active) .btn {
    pointer-events: none;
    opacity: 0.7;
}

.slide.active .btn {
    pointer-events: auto;
    opacity: 1;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.slider-dot.active {
    width: 24px;
    background: white;
    border-radius: 10px;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-arrow.slider-prev {
    left: 1rem;
}

.slider-arrow.slider-next {
    right: 1rem;
}

.slider-arrow .material-symbols-outlined {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.slider-arrow:hover .material-symbols-outlined {
    transform: scale(1.1);
}

.slider-arrow:active .material-symbols-outlined {
    transform: scale(0.9);
}

/* Enhanced Responsive Design for Slider */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .slider-controls {
        bottom: 1rem;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .slider-arrow {
        width: 2.5rem;
        height: 2.5rem;
        display: none !important;
    }

    .slider-arrow.slider-prev {
        left: 0.5rem;
    }

    .slider-arrow.slider-next {
        right: 0.5rem;
    }

    .slide h1 {
        font-size: 2.5rem !important;
    }

    .slide p {
        font-size: 1.1rem !important;
    }

    .slide {
        background-attachment: scroll;
    }

    .slide .container {
        padding: 80px 1.5rem 4rem 1.5rem !important;
        margin-top: 0 !important;
        max-width: 100% !important;
        height: 65vh !important;
        min-height: 500px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .slide h2 {
        font-size: 1.85rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.2 !important;
        text-align: center !important;
        margin-top: 1rem !important;
        width: 100% !important;
        display: block !important;
        font-weight: 800;
    }

    .slide p {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
        line-height: 1.5 !important;
        text-align: center !important;
        padding: 0 0.5rem !important;
    }

    .slide .flex {
        flex-direction: row !important;
        gap: 0.75rem !important;
        justify-content: center !important;
        width: 100%;
    }

    .slide .flex .btn {
        flex: 1;
        max-width: 160px !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.85rem !important;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .slider-controls {
        bottom: 0.5rem;
        gap: 0.5rem;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .slide h1 {
        font-size: 2rem !important;
    }

    .slide p {
        font-size: 1rem !important;
    }

    .slide .container {
        padding: 0 0.75rem 6rem 0.75rem !important;
        margin-top: 6% !important;
    }

    .slide h1 {
        font-size: 1.9rem !important;
        margin-bottom: 1.25rem !important;
    }

    .slide p {
        font-size: 1rem !important;
        margin-bottom: 1.75rem !important;
    }

    .slide .flex .btn {
        max-width: 260px !important;
        padding: 0.875rem 1.5rem !important;
        font-size: 0.95rem !important;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .slider-arrow {
        display: flex !important;
        top: 8% !important;
        width: 1.5rem !important;
        height: 1.5rem !important;
        background: rgba(255, 255, 255, 0.8) !important;
        color: var(--primary-color) !important;
        font-size: 0.75rem !important;
    }

    .slider-arrow .material-symbols-outlined {
        font-size: 1rem !important;
    }

    .slider-arrow.slider-prev {
        left: 0.25rem !important;
    }

    .slider-arrow.slider-next {
        right: 0.25rem !important;
    }

    .slide .container {
        padding: 0 3rem 6rem 3rem !important;
        margin-top: 5% !important;
    }
}

/* =================================
   CARDS CSS
   ================================= */

/* Enhanced Card System */
.card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #ff8533);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.card-text {
    color: var(--steel-grey);
    line-height: 1.6;
}

/* Why Choose Us Section - Enhanced Cards */
.why-choose-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(30px);
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.why-choose-card:hover::before {
    left: 100%;
}

.why-choose-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.why-choose-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color), #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.why-choose-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Service Area Cards */
.service-area-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.service-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b35);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.service-area-card:hover::before {
    transform: scaleX(1);
}

/* FAQ Cards */
.faq-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(255, 107, 53, 0.01));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left-color: var(--primary-color);
}

.faq-card:hover::before {
    opacity: 1;
}

/* Process Cards */
.process-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.process-number {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color), #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.process-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #ff6b35);
    opacity: 0.3;
    animation: shimmer 2s infinite;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.process-card:hover .process-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Responsive Cards */
@media (max-width: 768px) {
    .card {
        padding: 1.5rem;
    }

    .why-choose-card,
    .service-area-card,
    .faq-card,
    .process-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .why-choose-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .why-choose-card:hover,
    .service-area-card:hover,
    .faq-card:hover,
    .process-card:hover {
        transform: translateY(-5px) scale(1.02);
    }
}

@media (max-width: 480px) {

    .why-choose-card,
    .service-area-card,
    .faq-card,
    .process-card {
        padding: 1rem;
    }
}

/* ========================================
   Google Reviews Component
   ======================================== */

/* Section Container */
.google-reviews-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 60px 0;
}

.google-reviews-section .section-title {
    text-align: center;
    margin-bottom: 32px;
}

/* Header Bar */
.google-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px 28px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.google-reviews-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.google-reviews-rating .google-logo {
    height: 28px;
    width: auto;
}

.google-reviews-rating .rating-label {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 15px;
}

.google-reviews-rating .stars {
    display: flex;
    gap: 2px;
}

.google-reviews-rating .star-icon {
    width: 18px;
    height: 18px;
}

.google-reviews-rating .rating-count {
    font-size: 14px;
    color: #666;
}

.google-review-btn {
    padding: 12px 24px;
    border: 2px solid #1a1a1a;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.google-review-btn:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Reviews Slider Container */
.google-reviews-wrapper {
    position: relative;
}

.google-reviews-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 4px 16px;
    scroll-behavior: smooth;
}

.google-reviews-slider::-webkit-scrollbar {
    display: none;
}

/* Review Card */
.google-review-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.google-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Card Header */
.review-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}

.reviewer-avatar.gradient-1 {
    background: linear-gradient(135deg, #ea4335 0%, #fbbc05 100%);
}

.reviewer-avatar.gradient-2 {
    background: linear-gradient(135deg, #34a853 0%, #4285f4 100%);
}

.reviewer-avatar.gradient-3 {
    background: linear-gradient(135deg, #fbbc05 0%, #ea4335 100%);
}

.reviewer-avatar.gradient-4 {
    background: linear-gradient(135deg, #4285f4 0%, #ea4335 100%);
}

.reviewer-details .reviewer-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 15px;
    margin-bottom: 2px;
}

.reviewer-details .reviewer-date {
    font-size: 13px;
    color: #888;
}

.google-icon-small {
    width: 22px;
    height: 22px;
    opacity: 0.9;
}

/* Rating Stars */
.review-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 14px;
}

.review-rating .star-icon {
    width: 16px;
    height: 16px;
}

.verified-badge {
    width: 18px;
    height: 18px;
    margin-left: 6px;
}

/* Review Content */
.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    /* Standard property for compatibility */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-text.expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.read-more-btn {
    font-size: 13px;
    color: #4285f4;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    font-weight: 500;
    transition: color 0.2s ease;
}

.read-more-btn:hover {
    color: #1a73e8;
    text-decoration: underline;
}

/* Review Image */
.review-image {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    object-fit: cover;
    margin-top: 8px;
    border: 2px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.review-image:hover {
    transform: scale(1.05);
}

/* Slider Navigation Arrows */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-nav-btn:hover {
    background: #f8f9fa;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav-btn.prev {
    left: -22px;
}

.slider-nav-btn.next {
    right: -22px;
}

.slider-nav-btn svg {
    width: 20px;
    height: 20px;
    fill: #333;
}

/* Mobile Navigation Dots */
.reviews-slider-nav {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #4285f4;
    width: 28px;
    border-radius: 5px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .slider-nav-btn {
        display: none;
    }

    .google-review-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .google-reviews-section {
        padding: 40px 0;
    }

    .google-reviews-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 16px;
    }

    .google-reviews-rating {
        flex-wrap: wrap;
        gap: 8px;
    }

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

    .google-review-card {
        flex: 0 0 85vw;
        max-width: 320px;
    }

    .google-reviews-slider {
        padding: 8px 16px 16px;
        margin: 0 -16px;
    }

    .reviews-slider-nav {
        display: flex;
    }
}

@media (max-width: 480px) {
    .google-review-card {
        flex: 0 0 90vw;
        padding: 20px;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .review-image {
        width: 60px;
        height: 60px;
    }
}

/* ========================================
   Category Cards Component
   ======================================== */

/* Section Container */
.category-cards-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.category-cards-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.category-cards-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 2px;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Category Card */
.category-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.category-card:hover::before {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.3) 100%);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.12);
}

/* Card Title */
.category-card .card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
    text-align: center;
}

.category-card .card-title h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin: 0;
    transition: transform 0.3s ease;
}

.category-card:hover .card-title h3 {
    transform: translateY(-4px);
}

/* Card Subtitle (optional) */
.category-card .card-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.1s;
}

.category-card:hover .card-subtitle {
    opacity: 1;
    transform: translateY(0);
}

/* View More Arrow */
.category-card .view-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.category-card:hover .view-arrow {
    opacity: 1;
    transform: translateX(0);
}

.category-card .view-arrow svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .category-cards-section {
        padding: 40px 0;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .category-card .card-title h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card {
        aspect-ratio: 1/1;
        border-radius: 12px;
    }

    .category-card .card-title {
        padding: 16px;
    }

    .category-card .card-title h3 {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .category-card .view-arrow {
        display: none;
    }
}

/* Alternative: Slider version for mobile */
@media (max-width: 480px) {
    .category-slider-enabled .category-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 4px 0 20px 0;
        margin: 0;
    }

    .category-slider-enabled .category-grid::-webkit-scrollbar {
        display: none;
    }

    .category-slider-enabled .category-grid .category-card {
        flex: 0 0 75%;
        scroll-snap-align: start;
        aspect-ratio: 4/3;
    }

    .category-slider-enabled .category-slider {
        display: none;
    }
}

/* ========================================
   EEAT++ Signals - Usta Notu Component
   Expert Notes for Trust & Authority
   ======================================== */

/* Usta Notu Block */
.usta-notu {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-left: 4px solid #f59e0b;
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 24px 0;
    position: relative;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.usta-notu::before {
    content: '💡';
    position: absolute;
    top: -12px;
    right: 16px;
    font-size: 24px;
    background: #fff;
    padding: 4px 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.usta-notu-title {
    font-weight: 700;
    color: #92400e;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.usta-notu-content {
    color: #78350f;
    font-size: 0.95rem;
    line-height: 1.7;
}

.usta-notu-content strong {
    color: #92400e;
}

/* Dikkat Notu - Warning variant */
.dikkat-notu {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    border-left: 4px solid #ef4444;
}

.dikkat-notu::before {
    content: '⚠️';
}

.dikkat-notu .usta-notu-title {
    color: #991b1b;
}

.dikkat-notu .usta-notu-content {
    color: #7f1d1d;
}

.dikkat-notu .usta-notu-content strong {
    color: #991b1b;
}

/* Pro Tip - Success variant */
.pro-tip {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-left: 4px solid #10b981;
}

.pro-tip::before {
    content: '✅';
}

.pro-tip .usta-notu-title {
    color: #065f46;
}

.pro-tip .usta-notu-content {
    color: #064e3b;
}

.pro-tip .usta-notu-content strong {
    color: #065f46;
}

/* Yerel Bilgi - Local insight */
.yerel-bilgi {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 4px solid #3b82f6;
}

.yerel-bilgi::before {
    content: '📍';
}

.yerel-bilgi .usta-notu-title {
    color: #1e40af;
}

.yerel-bilgi .usta-notu-content {
    color: #1e3a8a;
}

/* Responsive */
@media (max-width: 768px) {
    .usta-notu {
        padding: 20px 16px;
        margin: 20px 0;
    }

    .usta-notu::before {
        top: -10px;
        right: 12px;
        font-size: 20px;
    }

    .usta-notu-content {
        font-size: 0.9rem;
    }
}

/* =================================
   UTILITIES & ANIMATIONS CSS
   ================================= */

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

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

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes shimmer {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }

    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-10px) rotate(1deg);
    }

    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
}

.float {
    animation: float 6s ease-in-out infinite;
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.float-animation:nth-child(2) {
    animation-delay: 0.5s;
}

.float-animation:nth-child(3) {
    animation-delay: 1s;
}

.float-animation:nth-child(4) {
    animation-delay: 1.5s;
}

.float-animation:nth-child(5) {
    animation-delay: 2s;
}

.float-animation:nth-child(6) {
    animation-delay: 2.5s;
}

.animate-bounce-slow {
    animation: bounce-slow 2s ease-in-out infinite;
}

/* Scroll Animation Classes */
.animate-on-scroll {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    transform: translateY(0);
    opacity: 1;
}

.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

.animate-delay-5 {
    transition-delay: 0.5s;
}

.animate-delay-6 {
    transition-delay: 0.6s;
}