/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2e6a34;
    --secondary-color: #2e6a34;
    --accent-color: #2e6a34;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-light: #f1f5f9;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --gradient-primary: linear-gradient(135deg, #4a8a52 0%, #2e6a34 50%, #1f4a24 100%);
    --gradient-secondary: linear-gradient(135deg, #3d7a44 0%, #2e6a34 100%);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

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

/* Top Bar */
.top-bar {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 400;
}

.contact-info a:hover {
    color: #fff;
    transform: translateY(-1px);
}

.contact-info i {
    font-size: 0.875rem;
    opacity: 0.9;
}

.language-switcher {
    display: flex;
    gap: 10px;
}

.language-switcher span {
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 3px;
    transition: var(--transition);
}

.language-switcher .lang-active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: bold;
}

.language-switcher span:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 15px 0;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: flex-end;
}

.logo {
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
    margin-right: auto;
    padding-left: 2rem;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo h2 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
    margin: 0;
    padding-left: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    max-width: calc(100% - 650px);
    flex-wrap: nowrap;
    overflow: visible;
}

.nav-menu > li {
    position: relative;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    position: relative;
    padding: 0.5rem 0.75rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
    transform: translateY(-2px);
}

/* Dropdown toggle sadece direkt hover'da renk değişsin, mega-menu açıkken değil */
.mega-dropdown:hover .dropdown-toggle {
    color: var(--text-dark);
}

.mega-dropdown:hover .dropdown-toggle:hover {
    color: var(--primary-color);
}

.dropdown:hover .dropdown-toggle {
    color: var(--text-dark);
}

.dropdown:hover .dropdown-toggle:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


.mega-dropdown:hover .dropdown-toggle::after {
    width: 0;
}

.mega-dropdown:hover .dropdown-toggle:hover::after {
    width: 100%;
}

.dropdown:hover .dropdown-toggle::after {
    width: 0;
}

.dropdown:hover .dropdown-toggle:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    list-style: none;
    min-width: 220px;
    padding: 8px 0;
    margin: 0;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10002;
}

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

.dropdown-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dropdown-menu a {
    display: block !important;
    padding: 12px 20px !important;
    color: #1f2937 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    white-space: nowrap;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.dropdown-menu a:hover {
    background-color: #f3f4f6 !important;
    color: #4f46e5 !important;
    padding-left: 24px !important;
}

/* Mega Menu Styles */
.mega-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10002;
    margin-top: 10px;
    min-width: 750px;
    overflow: hidden;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.mega-menu-column {
    padding: 0 1.5rem;
    border-right: 1px solid #e5e7eb;
}

.mega-menu-column:last-child {
    border-right: none;
}

.mega-menu-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #3b82f6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mega-menu-title i {
    font-size: 1.1rem;
    color: #3b82f6;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin: 0;
    padding: 0;
}

.mega-menu-link {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem !important;
    color: #374151 !important;
    text-decoration: none !important;
    border-radius: 8px;
    transition: all 0.3s ease !important;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.mega-menu-link i {
    font-size: 0.7rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.mega-menu-link:hover {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%) !important;
    color: #1e40af !important;
    padding-left: 1.25rem !important;
    transform: translateX(5px);
}

.mega-menu-link:hover i {
    color: #1e40af;
    transform: translateX(3px);
}

.mega-menu-featured {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    border-radius: 12px;
    padding: 1.5rem !important;
    margin: -0.5rem;
    border: none !important;
}

.mega-menu-featured .mega-menu-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.mega-menu-featured .mega-menu-title i {
    color: #fbbf24;
}

.featured-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.featured-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.featured-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
}

.featured-card h5 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.featured-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin: 0 0 1rem 0;
}

.featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: white;
    color: #1e40af;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.featured-btn:hover {
    background: #fbbf24;
    color: #1e3a8a;
    transform: translateX(5px);
}

.featured-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.featured-btn:hover i {
    transform: translateX(3px);
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    z-index: 1001;
    flex-shrink: 0;
    padding-right: 3rem;
}

.btn-header {
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
}

.btn-header i {
    font-size: 0.875rem;
}

.btn-portal {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-portal:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

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

.btn-dealer:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-left: 1rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section - Yeni Layout */
.hero {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 6rem 0;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-new-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-main-content {
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    margin-right: 0.5rem;
    color: #818cf8;
}

.hero-main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line-1 {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-2 {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-large,
.btn-secondary-large {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-large {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    height: 500px;
}

.hero-center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
    animation: rotate 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.circle-inner {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.circle-inner i {
    font-size: 4rem;
    color: white;
    animation: rotate-reverse 20s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
    cursor: grab;
    user-select: none;
    z-index: 10;
}

.floating-card:active {
    cursor: grabbing;
}

.floating-card.dragging {
    animation: none !important;
    z-index: 1000;
    cursor: grabbing;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.floating-card i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    pointer-events: none;
}

.floating-card span {
    font-size: 0.875rem;
    pointer-events: none;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-slider-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.hero-slide-inner {
    position: relative;
    width: 100%;
    min-height: 70vh;
    background: transparent;
    border-radius: 24px;
    border: none;
    box-shadow: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-left-side {
    position: relative;
    z-index: 2;
    width: 55%;
    padding: 4rem 3rem 4rem 4rem;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-right: 2rem;
    box-shadow: var(--shadow-lg);
}

.hero-right-side {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    z-index: 1;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(
        15% 0,
        100% 0,
        100% 100%,
        15% 100%,
        30% 50%
    );
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.hero-content-wrapper {
    width: 100%;
}

.hero-left-side .hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

.hero-left-side .hero-subtitle {
    font-size: 1.05rem;
    color: #6c757d;
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
}

.hero-left-side .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Divider Line (SVG) */
.hero-divider {
    display: none;
}

.btn-dark-solid {
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.btn-dark-solid::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;
}

.btn-dark-solid:hover::before {
    left: 100%;
}

.btn-dark-solid:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.btn-dark-outline {
    background: transparent;
    color: var(--primary-color);
    padding: 0.875rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-dark-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-dark-outline:hover::before {
    width: 100%;
}

.btn-dark-outline:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    font-weight: 300;
}

.hero-image-placeholder span {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.875rem;
    opacity: 0.5;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.hero-left .hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-left .hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--text-light);
    letter-spacing: 0.01em;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-left .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Slider Navigation Buttons */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.slider-nav-btn i {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

/* Slider Pagination */
.slider-pagination {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 100;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pagination-dot:hover {
    background: #6b7280;
    transform: scale(1.2);
}

.pagination-dot.active {
    background: #1b2330;
    width: 2rem;
    border-radius: 6px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 400;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::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;
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background-color: #e5e7eb;
    color: #374151;
    border-color: #e5e7eb;
}

.btn-secondary:hover {
    background-color: #d1d5db;
    color: #1f2937;
    border-color: #d1d5db;
}

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

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

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

/* Section Titles */
.section-title {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* Portal Cards */
.portals {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.portal-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portal-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.portal-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.portal-card h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

/* Services */
.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.service-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #f8fafc 100%);
    position: relative;
}

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

.about-text p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.about-image {
    position: relative;
}

.about-placeholder {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 10px;
    padding: 100px 50px;
    text-align: center;
    color: white;
    font-size: 64px;
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #4a8a52 0%, #2e6a34 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Vision Mission Section */
.vision-mission-section {
    padding: 80px 0;
    background: #ffffff;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.vmv-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.vmv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 106, 52, 0.15);
    border-color: #2e6a34;
}

.vmv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #4a8a52 0%, #2e6a34 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(46, 106, 52, 0.3);
}

.vmv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1f2937;
    font-weight: 600;
}

.vmv-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #64748b;
    font-weight: 300;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 106, 52, 0.15);
    border-color: #2e6a34;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4a8a52 0%, #2e6a34 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1f2937;
    font-weight: 600;
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    font-weight: 300;
}

.text-center {
    text-align: center;
}

/* Packages - Tablo Formatı */
.packages {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.packages-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    background: white;
}

.packages-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.packages-table thead {
    background: var(--gradient-primary);
    color: white;
}

.packages-table th {
    padding: 2rem 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
}

.package-header-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.package-header-cell h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.package-price {
    font-size: 1.75rem;
    font-weight: 700;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.popular-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-col {
    background: rgba(99, 102, 241, 0.05);
    position: relative;
}

.featured-col::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
}

.packages-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.2s ease;
}

.packages-table tbody tr:hover {
    background: #f8fafc;
}

.packages-table td {
    padding: 1.5rem;
    text-align: center;
    color: var(--text-dark);
}

.feature-col {
    text-align: left !important;
    font-weight: 600;
    color: var(--text-dark);
    background: #f8fafc;
}

.feature-name {
    padding-left: 2rem !important;
}

.featured-cell {
    background: rgba(99, 102, 241, 0.03);
    font-weight: 600;
    color: var(--primary-color);
}

.packages-table td i.fa-check {
    color: #10b981;
    font-size: 1.25rem;
}

.packages-table td i.fa-times {
    color: #ef4444;
    font-size: 1.25rem;
}

.action-row td {
    padding: 2rem 1.5rem;
}

.btn-table {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #f1f5f9;
    color: var(--text-dark);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-table-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-table-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.package-card {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.package-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.package-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.package-card.featured::before {
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(1);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.3);
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.package-header h3 {
    font-size: 22px;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 300;
    font-size: 15px;
}

.package-features li i {
    color: var(--success-color);
    font-size: 14px;
}

/* Testimonials - Timeline Formatı */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.testimonials-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 3rem;
}

.testimonials-timeline::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 1rem;
    height: 1rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonial-info span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 0.875rem;
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-result {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    background: white;
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
    font-weight: 300;
    font-size: 15px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 300;
}

/* Expertise */
.expertise {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

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

.expertise-item {
    margin-bottom: 30px;
}

.expertise-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.expertise-name {
    font-weight: 400;
    color: var(--text-dark);
    font-size: 15px;
}

.expertise-percent {
    font-weight: 400;
    color: var(--primary-color);
    font-size: 15px;
}

.expertise-bar {
    width: 100%;
    height: 10px;
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.expertise-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.expertise-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer-progress 2s infinite;
}

@keyframes shimmer-progress {
    0% { left: -100%; }
    100% { left: 100%; }
}

.expertise-note {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
}

.expertise-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

/* Contact */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 17px;
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 300;
    font-size: 15px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    font-weight: 300;
    transition: all 0.3s ease;
    background-color: var(--bg-white);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234B5563' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
    cursor: pointer;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
}

/* Portal Modal */
.portal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.portal-modal.active {
    display: flex;
}

.portal-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.portal-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.portal-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #f3f4f6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b7280;
    font-size: 1.2rem;
}

.portal-modal-close:hover {
    background: #e5e7eb;
    color: #1f2937;
    transform: rotate(90deg);
}

.portal-modal-title {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    text-align: center;
}

.portal-modal-subtitle {
    color: #6b7280;
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.portal-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.portal-card {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.portal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a8a52 0%, #2e6a34 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.portal-card:hover {
    border-color: #2e6a34;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.portal-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a8a52 0%, #2e6a34 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.portal-card:hover .portal-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.portal-card-icon i {
    font-size: 2.5rem;
    color: white;
}

.portal-card h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.portal-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.portal-card-arrow {
    margin-top: auto;
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.portal-card:hover .portal-card-arrow {
    background: linear-gradient(135deg, #4a8a52 0%, #2e6a34 100%);
    color: white;
    transform: translateX(5px);
}

.portal-card-arrow i {
    color: #2e6a34;
    transition: color 0.3s ease;
}

.portal-card:hover .portal-card-arrow i {
    color: white;
}

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

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

@media (max-width: 768px) {
    .portal-modal-content {
        padding: 2rem;
    }
    
    .portal-modal-title {
        font-size: 1.5rem;
    }
    
    .portal-cards {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 4rem 0 1.5rem;
    border-top: 4px solid;
    border-image: var(--gradient-primary) 1;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo a {
    display: inline-block;
    text-decoration: none;
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-logo .logo-img {
    max-height: 48px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo .logo-img:hover {
    transform: scale(1.05);
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.02em;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-weight: 300;
    font-size: 0.9375rem;
}

.footer-link {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 0.5rem;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1.125rem;
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    font-size: 0.9375rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    font-size: 1.125rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    font-size: 0.875rem;
    margin-top: 3rem;
}


@media (min-width: 1301px) and (max-width: 1600px) {
    .nav-menu {
        gap: 1rem;
        max-width: calc(100% - 680px);
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
}

@media (min-width: 1301px) and (max-width: 1400px) {
    .nav-menu {
        gap: 0.85rem;
        max-width: calc(100% - 640px);
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .header-actions {
        gap: 0.75rem;
        padding-right: 2.5rem;
    }
    
    .btn-header {
        padding: 0.55rem 1.1rem;
        font-size: 0.8rem;
    }
    
    .logo {
        padding-left: 1.5rem;
    }
}

/* Mobile actions - sadece hamburger menüde göster */
.mobile-actions-item {
    display: none;
}

/* Tablet için hamburger menü */
@media (max-width: 1300px) and (min-width: 769px) {
    .navbar {
        padding: 15px 1rem !important;
        justify-content: space-between !important;
    }
    
    .logo {
        padding-left: 0 !important;
        flex: 0 0 auto;
    }
    
    .logo-img {
        max-height: 45px !important;
    }
    
    .mobile-actions-item {
        display: block;
        list-style: none;
    }
    
    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 2rem;
        border-top: 2px solid #e5e7eb;
        margin-top: 1rem;
    }
    
    .mobile-actions .btn-header {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 20px 0;
        gap: 0;
        transform: none !important;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        max-width: 100% !important;
    }

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

    .nav-menu li {
        width: 100%;
        padding: 15px 2rem;
    }
    
    .nav-link {
        padding: 0.75rem 1.5rem !important;
    }
    
    .dropdown-toggle {
        justify-content: space-between !important;
    }

    .header-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto !important;
        position: relative;
        z-index: 1002;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Dropdown for tablet */
    .dropdown {
        display: flex;
        flex-direction: column;
    }
    
    .dropdown-toggle {
        width: 100%;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }
    
    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }
    
    .dropdown.open .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: none;
        background: #f9fafb;
        margin-top: 0 !important;
        border-radius: 0 !important;
        padding: 0 !important;
        transform: none !important;
    }
    
    .dropdown.open .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 500px;
        padding: 10px 0 !important;
    }
    
    .dropdown-menu li {
        padding: 8px 0 !important;
        margin: 0 !important;
    }
    
    .dropdown-menu a {
        padding: 12px 1.5rem !important;
        display: block !important;
        width: 100%;
    }
    
    /* Mega Menu Tablet */
    .mega-menu {
        position: static !important;
        transform: none !important;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: none;
        background: #f9fafb;
        margin: 0 !important;
        border-radius: 0 !important;
        min-width: auto;
    }
    
    .mega-dropdown.open .mega-menu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 2000px;
    }
    
    .mega-menu-container {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }
    
    .mega-menu-column {
        padding: 1rem;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        background: white;
        border-radius: 8px;
    }
    
    .mega-menu-column:last-child {
        border-bottom: none;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
	 .container {
        padding: 0 1rem;
    }
    
    .navbar {
        padding: 15px 1rem !important;
        justify-content: space-between !important;
    }
    
    .logo {
        padding-left: 0 !important;
        flex: 0 0 auto;
    }
    
    .logo-img {
        max-height: 40px !important;
    }
    
    .mobile-actions-item {
        display: block;
        list-style: none;
    }
    
    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        padding: 1.25rem 1.5rem;
        border-top: 2px solid #e5e7eb;
        margin-top: 0.85rem;
    }
    
    .mobile-actions .btn-header {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 20px 0;
        gap: 0;
        transform: none !important;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        max-width: 100% !important;
    }

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

    .nav-menu li {
        width: 100%;
        padding: 12px 1.5rem;
    }
    
    .nav-link {
        padding: 0.6rem 1rem !important;
    }
    
    .dropdown-toggle {
        justify-content: space-between !important;
    }

    .header-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto !important;
        position: relative;
        z-index: 1002;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Dropdown for mobile */
    .dropdown {
        display: flex;
        flex-direction: column;
    }
    
    .dropdown-toggle {
        width: 100%;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }
    
    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }
    
    .dropdown.open .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: none;
        background: #f9fafb;
        margin-top: 0 !important;
        border-radius: 0 !important;
        padding: 0 !important;
        transform: none !important;
    }
    
    .dropdown.open .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 500px;
        padding: 10px 0 !important;
    }
    
    .dropdown-menu li {
        padding: 8px 0 !important;
        margin: 0 !important;
    }
    
    .dropdown-menu a {
        padding: 12px 1.5rem !important;
        display: block !important;
        width: 100%;
    }
    
    /* Mega Menu Mobile */
    .mega-menu {
        position: static !important;
        transform: none !important;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: none;
        background: #f9fafb;
        margin: 0 !important;
        border-radius: 0 !important;
        min-width: auto;
    }
    
    .mega-dropdown.open .mega-menu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 2000px;
    }
    
    .mega-menu-container {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }
    
    .mega-menu-column {
        padding: 1rem;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        background: white;
        border-radius: 8px;
    }
    
    .mega-menu-column:last-child {
        border-bottom: none;
    }
    
    .mega-menu-featured {
        margin: 0;
        padding: 1.5rem !important;
    }
    
    .featured-card {
        margin-bottom: 1rem;
    }
	
	
    .nav-menu li a {
        padding: 0 1.5rem;
    }

	
    .logo-img {
        max-height: 40px;
    }

    .hero {
        min-height: auto;
    }

    .hero-slider-wrapper,
    .hero-slider,
    .hero-slide {
        min-height: auto;
    }

    .hero {
        padding: 3rem 0;
        min-height: auto;
    }

    .hero-new-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        height: 300px;
        order: -1;
    }

    .hero-center-circle {
        width: 200px;
        height: 200px;
    }

    .circle-inner {
        width: 150px;
        height: 150px;
    }

    .circle-inner i {
        font-size: 2.5rem;
    }

    .floating-card {
        padding: 1rem;
        font-size: 0.75rem;
        animation: float 3s ease-in-out infinite;
        will-change: transform;
    }

    .floating-card i {
        font-size: 1.5rem;
    }
    
    .floating-card.card-1 {
        animation-delay: 0s;
    }
    
    .floating-card.card-2 {
        animation-delay: 1s;
    }
    
    .floating-card.card-3 {
        animation-delay: 2s;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        justify-content: center;
    }

    .packages-table-wrapper {
        border-radius: 12px;
    }

    .packages-table {
        font-size: 0.875rem;
    }

    .packages-table th,
    .packages-table td {
        padding: 1rem 0.75rem;
    }

    .package-header-cell h3 {
        font-size: 1.125rem;
    }

    .package-price {
        font-size: 1.25rem;
    }

    .testimonials-timeline {
        padding-left: 2rem;
    }

    .timeline-marker {
        left: -2.5rem;
        width: 0.75rem;
        height: 0.75rem;
    }

    .testimonial-header {
        flex-wrap: wrap;
    }

    .hero-divider {
        display: none;
    }

    .hero-content-wrapper {
        width: 100%;
    }

    .hero-left-side .hero-title {
        text-align: center;
    }

    .hero-left-side .hero-subtitle {
        text-align: center;
    }

    .hero-left-side .hero-buttons {
        justify-content: center;
    }
    
    .slider-nav-btn {
        display: none;
    }

    .slider-nav-btn {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .slider-prev {
        left: 1rem;
    }

    .slider-next {
        right: 1rem;
    }

    .section-title {
        font-size: 28px;
        font-weight: 400;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .vmv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-5px);
    }

    .top-bar-content {
        justify-content: center;
    }

    .contact-info {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .vmv-card {
        padding: 35px 25px;
    }

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

    .vmv-card h3 {
        font-size: 1.5rem;
    }

    .value-item {
        padding: 30px 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
    .hero-slider-wrapper {
        padding: 0 1rem;
    }
    
    .hero-left-side {
        padding: 2rem 1.5rem;
    }

    .hero-right-side {
        height: 300px;
    }

    .hero-left-side .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-dark-solid,
    .btn-dark-outline {
        width: 100%;
        text-align: center;
        padding: 0.875rem 2rem;
    }

    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .slider-prev {
        left: 0.625rem;
    }

    .slider-next {
        right: 0.625rem;
    }

    .slider-pagination {
        bottom: 1rem;
    }

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

    .pagination-dot.active {
        width: 1.5rem;
    }

    .section-title {
        font-size: 24px;
        font-weight: 400;
    }

    .portal-cards,
    .services-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 20px;
    }

    .footer-logo-img {
        max-width: 150px;
    }
}




/* İndex.php'deki sliderın altındaki kısım */



	/* Features Section */
.features-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
    position: relative;
}

.features-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #d1d5db;
    transform: translateX(-50%);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.feature-item.feature-left {
    justify-content: flex-start;
}

.feature-item.feature-right {
    justify-content: flex-end;
}

.feature-content {
    flex: 1;
    max-width: 45%;
}

.feature-image {
    flex: 0 0 auto;
    width: 280px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1b2330;
    line-height: 1.4;
    margin: 0 0 0.75rem 0;
}

.feature-item p {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.7;
    text-align: justify;
    margin: 0;
}

@media (max-width: 768px) {
    .features-grid::before {
        display: none;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item.feature-left,
    .feature-item.feature-right {
        justify-content: center;
    }
    
    .feature-content {
        max-width: 100%;
    }
    
    .feature-image {
        width: 100%;
        max-width: 300px;
        height: 200px;
    }
    
    .feature-item p {
        text-align: center;
    }
    
    .features-section {
        padding: 3rem 0;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2C4E71 0%, #3C6A90 50%, #93A5B5 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(44, 78, 113, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(44, 78, 113, 0.6);
    background: linear-gradient(135deg, #3C6A90 0%, #2C4E71 50%, #93A5B5 100%);
}

.scroll-to-top:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 78, 113, 0.4);
}

.scroll-to-top i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

