/* Global Styles */
:root {
    --primary-color: #E30613;  /* Bright red as primary color */
    --secondary-color: #1A1A1A;  /* Dark gray for secondary elements */
    --accent-color: #FFD700;  /* Gold for accents */
    --text-color: #333333;
    --light-gray: #F8F9FA;
    --dark-gray: #1A1A1A;
    --white: #FFFFFF;
    --footer-link: #fff;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.header.scrolled {
    background: var(--white) !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 600;
    color: var(--secondary-color) !important;
    padding: 0.5rem 1.2rem !important;
    position: relative;
}

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

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

/* Hero Section */
.hero-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, rgba(227, 6, 19, 0.05) 0%, rgba(227, 6, 19, 0.1) 100%);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.min-vh-75 {
    min-height: 75vh;
}

/* Feature Icons */
.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.2);
}

/* Cards */
.card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.card-body {
    padding: 2rem;
}

/* Buttons */
.btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.2);
}

.btn-primary:hover {
    background-color: #c40511;
    border-color: #c40511;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.3);
}

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

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

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

.social-links a {
    color: var(--white);
    font-size: 1.25rem;
    margin: 0 0.75rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Form Elements */
.form-control {
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    border: 2px solid #eee;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(227, 6, 19, 0.15);
}

/* Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .min-vh-75 {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}

/* Custom Utilities */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.rounded-4 {
    border-radius: 1rem !important;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-gray);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Contact Section */
#contact .card {
    border-radius: 1.5rem;
    background: var(--white);
}

#contact .card-body {
    padding: 2.5rem 2rem;
}

/* Sosyal Medya Butonları (Contact Card) */
#contact .btn.btn-outline-primary.rounded-circle {
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: background 0.2s, color 0.2s;
}
#contact .btn.btn-outline-primary.rounded-circle:hover {
    background: #b8000d;
    color: #fff;
}
#contact .contact-social-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

/* Sosyal Medya Alanı hizalama */
#contact .col-lg-6 > .mt-4 {
    margin-top: 2rem !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#contact .d-flex.gap-3 {
    gap: 0.5rem !important;
}

/* Footer Linkleri */
.footer a {
    color: var(--footer-link) !important;
    text-decoration: none !important;
    transition: color 0.2s;
}
.footer a:hover {
    color: var(--accent-color) !important;
    text-decoration: underline !important;
}

/* Footer başlıkları */
.footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Gönder Butonu */
#contactForm .btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    padding: 0.9rem 0;
    box-shadow: 0 2px 12px 0 rgba(227,6,19,0.08);
    transition: background 0.2s;
}
#contactForm .btn-primary:hover {
    background: #b8000d;
}

/* Form Spacing ve Responsive */
@media (max-width: 991px) {
    #contact .col-lg-6 {
        margin-bottom: 2rem;
    }
    #contact .card-body {
        padding: 1.5rem 1rem;
    }
}

/* Form input spacing */
#contactForm .form-label {
    font-weight: 500;
    margin-bottom: 0.3rem;
}
#contactForm .form-control, #contactForm .form-select {
    border-radius: 6px;
    min-height: 44px;
    font-size: 1rem;
}
#contactForm textarea.form-control {
    min-height: 100px;
}

/* Checkbox spacing */
#contactForm .form-check {
    margin-bottom: 1rem;
}

/* Özellikler Alanı (Fark Yaratan Özellikler) */
.features-section {
  background: var(--light-gray);
  padding: 4rem 0;
}
.features-box {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 3rem 2.5rem;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .features-box {
    margin-left: 0;
    margin-top: 2rem;
    padding: 2rem 1rem;
  }
}
.features-badge {
  background: rgba(227,6,19,0.12);
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 1rem;
  padding: 0.4rem 1.2rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  box-shadow: none;
}
.features-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--secondary-color);
  line-height: 1.15;
}
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.features-list li {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(227,6,19,0.06);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.2rem;
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 64px;
}
.features-list li:hover {
  box-shadow: 0 6px 24px rgba(227,6,19,0.12);
  transform: translateY(-2px) scale(1.01);
}
.features-list .feature-icon-sm {
  width: 44px;
  height: 44px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-right: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(227,6,19,0.10);
  border: 2px solid #fff;
}
.features-list .feature-title {
  font-weight: 700;
  font-size: 1.13rem;
  margin-bottom: 0.2rem;
  color: var(--secondary-color);
}
.features-list .feature-desc {
  color: #666;
  font-size: 0.99rem;
}
.features-list .feature-content {
  flex: 1;
}
@media (max-width: 991px) {
  .features-title {
    font-size: 1.5rem;
  }
  .features-box {
    padding: 1.5rem 0.7rem;
  }
}

/* Örnek Menüler Alanı */
.menu-card {
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
  background: #fff;
  text-align: center;
  padding-bottom: 2rem;
  margin: 0 auto;
  max-width: 340px;
}
.menu-card:hover {
  box-shadow: 0 16px 40px rgba(227,6,19,0.12);
  transform: translateY(-6px) scale(1.03);
}
.menu-card .card-img-top {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 2rem auto 1.5rem auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  border: 4px solid #fff;
  background: #fff;
}
.menu-card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}
.menu-card .card-text {
  color: #666;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.menu-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-card ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}
.menu-card ul li i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

/* Menü Alanı Ortalaması */
#menu .row.g-4 {
  justify-content: center;
}

/* Badge Modernleştirme */
.badge.bg-primary.bg-opacity-10.text-primary {
  background: rgba(227,6,19,0.08) !important;
  color: var(--primary-color) !important;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 1rem;
  padding: 0.4rem 1.2rem;
}

/* Why CatBox Section Styles */
.why-catbox-section {
    padding: 5rem 0;
    background: var(--white);
}

.why-catbox-section .display-4 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-catbox-section .lead {
    font-size: 1.25rem;
    color: var(--text-color);
    opacity: 0.8;
}

.why-catbox-section .row {
    margin-bottom: 5rem;
}

.why-catbox-section .row:last-child {
    margin-bottom: 0;
}

.why-catbox-section img {
    transition: all 0.5s ease;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-catbox-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.why-catbox-section .display-1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.why-catbox-section .h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.why-catbox-section .lead {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.why-catbox-section .text-primary.fw-bold {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.why-catbox-section .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.why-catbox-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(227, 6, 19, 0.3);
}

/* Responsive Styles for Why CatBox Section */
@media (max-width: 1199.98px) {
    .why-catbox-section .display-1 {
        font-size: 4rem;
    }
    
    .why-catbox-section .h2 {
        font-size: 2rem;
    }
}

@media (max-width: 991.98px) {
    .why-catbox-section {
        padding: 3rem 0;
    }
    
    .why-catbox-section .row {
        margin-bottom: 3rem;
    }
    
    .why-catbox-section .display-4 {
        font-size: 2.5rem;
    }
    
    .why-catbox-section .display-1 {
        font-size: 3.5rem;
    }
    
    .why-catbox-section .h2 {
        font-size: 1.75rem;
    }
    
    .why-catbox-section .lead {
        font-size: 1.1rem;
    }
    
    .why-catbox-section img {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .why-catbox-section .display-1 {
        font-size: 3rem;
    }
    
    .why-catbox-section .h2 {
        font-size: 1.5rem;
    }
    
    .why-catbox-section .btn-primary {
        width: 100%;
    }
}

/* General Section Padding */
main section {
    padding: 4rem 0;
}

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

/* Testimonials Section Styles */
.testimonials-section {
    padding: 5rem 0;
    background: var(--white);
}

.testimonials-section .display-4 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonials-section .lead {
    font-size: 1.25rem;
    color: var(--text-color);
    opacity: 0.8;
}

.testimonials-section .testimonial-users-img img {
    border: 3px solid var(--white);
    transition: all 0.3s ease;
}

.testimonials-section .testimonial-users-img img:hover {
    transform: translateY(-5px);
}

.testimonials-section .testimonial-users-img img:not(:first-child) {
    margin-left: -15px;
}

.testimonials-section .swiper-slide .card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
}

.testimonials-section .swiper-slide .card-body {
    padding: 2.5rem;
}

.testimonials-section .text-warning i {
    font-size: 1.2rem;
}

/* Swiper Navigation */
.testimonials-swiper {
    position: relative;
    padding: 0 40px;
    padding-bottom: 60px;
}

.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary-color);
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--white);
}

.testimonials-swiper .swiper-button-prev {
    left: 0;
}

.testimonials-swiper .swiper-button-next {
    right: 0;
}

.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
    font-size: 1rem;
}

/* Swiper Pagination */
.testimonials-swiper .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.testimonials-swiper .swiper-pagination .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.testimonials-swiper .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Responsive Styles for Testimonials Section */
@media (max-width: 991.98px) {
    .testimonials-section .row {
        flex-direction: column-reverse;
    }

    .testimonials-section .col-lg-6 {
        margin-bottom: 3rem;
    }

    .testimonials-swiper {
        padding: 0 20px;
        padding-bottom: 60px;
    }

    .testimonials-swiper .swiper-button-prev,
    .testimonials-swiper .swiper-button-next {
        top: 50%;
        transform: translateY(-50%);
    }

    .testimonials-swiper .swiper-button-prev {
        left: 0;
    }

    .testimonials-swiper .swiper-button-next {
        right: 0;
    }
}

@media (max-width: 767.98px) {
    .testimonials-section .display-4 {
        font-size: 2.5rem;
    }

    .testimonials-section .lead {
        font-size: 1.1rem;
    }

    .testimonials-section .swiper-slide .card-body {
        padding: 1.5rem;
    }

    .testimonials-swiper {
        padding: 0 10px;
        padding-bottom: 50px;
    }
} 