/* Ana Stiller */
:root {
    --primary-color: #ff6b35;
    --primary-hover: #ff8c5a;
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --bg-card: #1e1e1e;
    --bg-card-hover: #252525;
    --border-color: #333;
    --input-bg: #2a2a2a;
    --input-border: #444;
    --success-color: #4caf50;
    --danger-color: #f44336;
    --warning-color: #ff9800;
    --info-color: #2196f3;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-hover);
}

/* Text Utility Classes */
.text-muted {
    color: var(--text-muted) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.container {
    max-width: 1200px;
    padding: 0 15px;
}

/* Header Stili */
.main-header {
    background-color: var(--bg-darker);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.navbar-nav {
    margin-left: 20px;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 10px 15px !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--primary-color);
}

.btn-login, .btn-register {
    border-radius: 4px;
    padding: 8px 16px !important;
    margin-left: 5px;
}

.btn-login {
    border: 1px solid var(--primary-color);
}

.btn-register {
    background-color: var(--primary-color);
    color: #fff !important;
}

.btn-register:hover {
    background-color: var(--primary-hover);
}

.dropdown-menu {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
}

.dropdown-item {
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 4px;
}

.dropdown-item:hover {
    background-color: var(--bg-card-hover);
    color: var(--primary-color);
}

.dropdown-divider {
    border-top: 1px solid var(--border-color);
    margin: 8px 0;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background-color: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding-right: 30px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary.active {
    background-color: #e65a2b !important;
    border-color: #e65a2b !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.5) !important;
}

.btn-primary:focus-visible {
    background-color: #e65a2b !important;
    border-color: #e65a2b !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.5) !important;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Features Section */
.features-section {
    background-color: var(--bg-dark);
    position: relative;
}

.feature-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: var(--bg-card-hover);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Products Section */
.products-section {
    background-color: var(--bg-darker);
}

.product-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-dark);
}

.testimonial-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: var(--bg-card-hover);
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-user {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--bg-darker);
    padding: 60px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Footer */
.main-footer {
    background-color: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-right: 15px;
}

.footer-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-card);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-contact li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.newsletter {
    margin-top: 20px;
}

.newsletter h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.newsletter .input-group {
    margin-top: 10px;
}

.newsletter .form-control {
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--text-color);
    padding: 10px 15px;
}

.newsletter .btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.footer-divider {
    border-top: 1px solid var(--border-color);
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Cards */
.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-header {
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 20px;
}

.card-body {
    padding: 20px;
}

.card-footer {
    background-color: rgba(255, 255, 255, 0.05);
    border-top: 1px solid var(--border-color);
    padding: 15px 20px;
}

/* Forms */
.form-control, .form-select {
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--text-color);
    padding: 12px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background-color: var(--input-bg);
    border-color: var(--primary-color);
    color: var(--text-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

/* Checkbox Styles */
.form-check-input {
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    width: 1.2em;
    height: 1.2em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

.form-check-input:hover {
    border-color: var(--primary-hover);
}

.form-check-label {
    color: var(--text-muted);
    cursor: pointer;
    user-select: none;
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-check-label a:hover {
    color: var(--primary-hover);
}

/* Placeholder stilleri - okunabilir renk */
.form-control::placeholder {
    color: #999;
    opacity: 1;
}

.form-control::-webkit-input-placeholder {
    color: #999;
    opacity: 1;
}

.form-control::-moz-placeholder {
    color: #999;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #999;
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    color: #999;
    opacity: 1;
}

textarea.form-control::placeholder {
    color: #999;
    opacity: 1;
}

.form-label {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.input-group-text {
    background-color: var(--bg-card);
    border: 1px solid var(--input-border);
    color: var(--text-muted);
}

/* Alerts */
.alert {
    border: none;
    border-radius: 8px;
    padding: 15px 20px;
}

.alert-success {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
}

.alert-danger {
    background-color: rgba(244, 67, 54, 0.1);
    color: var(--danger-color);
}

.alert-warning {
    background-color: rgba(255, 152, 0, 0.1);
    color: var(--warning-color);
}

.alert-info {
    background-color: rgba(33, 150, 243, 0.1);
    color: var(--info-color);
}

/* Tables */
.table {
    color: var(--text-color);
}

.table th {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
}

.table td {
    border-color: var(--border-color);
    vertical-align: middle;
}

.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Badges */
.badge {
    padding: 5px 10px;
    font-weight: 500;
    border-radius: 4px;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-success {
    background-color: var(--success-color) !important;
}

.bg-danger {
    background-color: var(--danger-color) !important;
}

.bg-warning {
    background-color: var(--warning-color) !important;
}

.bg-info {
    background-color: var(--info-color) !important;
}

/* Avatar */
.avatar-circle {
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 auto;
}

/* Login & Register Pages - Split Design */
.auth-page-split {
    min-height: 100vh;
    background-color: var(--bg-darker);
}

.auth-left {
    background: linear-gradient(135deg, #2d1810 0%, #1a0d08 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.auth-left::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.auth-left-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
}

.auth-logo {
    text-align: center;
}

.auth-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.feature-item i {
    font-size: 1.3rem;
}

.auth-footer-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.auth-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-color: var(--bg-darker);
}

.auth-form-wrapper {
    width: 100%;
    max-width: 450px;
}

.auth-form-header h3 {
    font-size: 2rem;
}

.auth-form-header a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-form-header a:hover {
    color: var(--primary-hover);
}

.auth-form .form-label {
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.auth-form .form-label a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-form .form-label a:hover {
    color: var(--primary-hover);
}

.auth-form .form-control {
    padding: 12px 15px;
    font-size: 0.95rem;
    border-radius: 8px;
}

.password-input-wrapper {
    position: relative;
}

.password-input-wrapper .form-control {
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.auth-form .btn-lg {
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-form .btn-primary:active,
.auth-form .btn-primary:focus {
    background-color: #e65a2b !important;
    border-color: #e65a2b !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.5) !important;
}

.auth-form .form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-form .form-check-label a:hover {
    color: var(--primary-hover);
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
}

.auth-divider span {
    position: relative;
    background-color: var(--bg-darker);
    padding: 0 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-auth .btn-social {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 12px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-auth .btn-social:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--primary-color);
    color: var(--text-color);
    transform: translateY(-2px);
}

.btn-google i {
    color: #ea4335;
}

.btn-discord i {
    color: #5865f2;
}

.auth-links a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--text-muted) !important;
}

.auth-links a:hover {
    color: var(--primary-color) !important;
}

.auth-form-wrapper .btn-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-form-wrapper .btn-link:hover {
    color: var(--primary-color);
}

.auth-form-wrapper .btn-link:active,
.auth-form-wrapper .btn-link:focus {
    color: var(--primary-color);
    box-shadow: none !important;
}

/* Old Auth Pages Styles */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.auth-page::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.auth-page::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

.auth-page .container {
    position: relative;
    z-index: 1;
}

.auth-card {
    max-width: 450px;
    margin: 0 auto;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.auth-card .card-header {
    text-align: center;
    padding: 20px;
}

.auth-card .card-header h4 {
    margin: 0;
    font-weight: 600;
}

/* Teams Page */
.team-card {
    height: 100%;
}

.team-card .card-body {
    display: flex;
    flex-direction: column;
}

.team-card .card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-card .card-text {
    color: var(--text-muted);
    flex-grow: 1;
}

/* Profile Page */
.profile-card .avatar-circle {
    margin-bottom: 20px;
}

.profile-info {
    text-align: center;
    margin-bottom: 20px;
}

.profile-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.profile-info p {
    color: var(--text-muted);
}

/* Modal Styles */
.modal-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.03);
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.03);
}

.modal-body {
    color: var(--text-color);
}

.modal-body h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.modal-body p {
    color: var(--text-muted);
    line-height: 1.6;
}

.btn-close-white {
    filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 991.98px) {
    .auth-right {
        padding: 30px 20px;
    }
    
    .auth-form-wrapper {
        max-width: 100%;
    }
    
    .auth-form-header h3 {
        font-size: 1.6rem;
    }
    
    .navbar-nav {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-text {
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card, .product-card, .testimonial-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        margin-top: 15px;
        justify-content: center;
    }
    
    .footer-brand {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

/* Newsletter Stili */
.newsletter {
    margin-top: 20px;
}

.newsletter h6 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.newsletter .input-group {
    background-color: var(--input-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--input-border);
    transition: all 0.3s ease;
}

.newsletter .input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.newsletter .form-control {
    background-color: transparent;
    border: none;
    color: var(--text-color);
    padding: 12px 15px;
    font-size: 0.9rem;
}

.newsletter .form-control:focus {
    background-color: transparent;
    border: none;
    color: var(--text-color);
    box-shadow: none;
}

.newsletter .form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.newsletter .btn-primary {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter .btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.newsletter .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.newsletter-alert {
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideDown 0.3s ease;
}

.newsletter-alert.alert-success {
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: var(--success-color);
}

.newsletter-alert.alert-danger {
    background-color: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: var(--danger-color);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Newsletter responsive */
@media (max-width: 575.98px) {
    .newsletter .input-group {
        flex-direction: column;
    }
    
    .newsletter .form-control {
        border-bottom: 1px solid var(--input-border);
    }
    
    .newsletter .btn-primary {
        width: 100%;
        border-radius: 0 0 8px 8px;
    }
}