/* ====================================
   PART 1: RESET, VARIABLES, TYPOGRAPHY, LAYOUT, HEADER
   ==================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: var(--secondary);
}

h1 { font-size: 3.75rem; letter-spacing: -1.5px; }
h2 { font-size: 2.75rem; letter-spacing: -0.5px; }
h3 { font-size: 2rem; letter-spacing: -0.25px; }

p { margin-bottom: 1.2rem; }

ul { margin-left: 1.5rem; margin-bottom: 1.5rem; }
li { list-style: none; }

/* LAYOUT */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: visible;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.5rem;
}

.col {
    flex: 1;
    padding: 0 1.5rem;
}

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

/* HEADER */
header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 1rem 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

header.scrolled {
    padding: 0.75rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo:hover svg { transform: rotate(10deg); }

.logo svg {
    transition: transform 0.4s ease;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-text {
    font-weight: 700;
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* NAVIGATION */
nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav ul li a {
    font-weight: 500;
    color: var(--secondary);
    position: relative;
    padding: 0.5rem 0;
}

nav ul li a:hover { color: var(--primary); }

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

nav ul li a:hover::after,
nav ul li a.active::after { width: 100%; }



/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
    background-color: var(--light);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232d9670' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    overflow: visible;
}

.hero-content { max-width: 600px; }

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--secondary);
    line-height: 1.2;
}

.hero h1 span {
    display: block;
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--gray);
}

.hero-image { position: relative; }

.hero-image img {
    border-radius: 30px;
    box-shadow: var(--card-shadow);
    transition: transform 0.5s ease;
}

.hero-image:hover img { transform: scale(1.02); }

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--gradient-primary);
    padding: 1rem;
    border-radius: 24px;
    color: var(--white);
    font-weight: 600;
    box-shadow: var(--card-shadow);
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-badge-number { font-size: 2.5rem; font-weight: 700; }
.hero-badge-text { font-size: 1rem; max-width: 100px; line-height: 1.4; }

.hero-shape {
    position: absolute;
    z-index: -1;
}

.hero-shape-1 {
    top: 15%;
    left: 5%;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--glass-border);
    transform: rotate(45deg);
    animation: float 5s ease-in-out infinite;
}

.hero-shape-2 {
    bottom: 10%;
    right: 5%;
    width: 120px;
    height: 120px;
    border-radius: 60px;
    background: rgba(29, 53, 87, 0.05);
    animation: float 6s ease-in-out infinite;
}

/* IMAGE SLIDER */
.image-slider-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-slider-container:hover .slider-controls { opacity: 1; }

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.slider-btn svg { width: 18px; height: 18px; }

#hero-slider-image { transition: opacity 0.5s ease; }

/* BREADCRUMB */
.breadcrumb {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 1.5rem 2.5rem;
    margin: 2rem 0 3rem;
    margin-top: 120px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232d9670' fill-opacity='0.03'%3E%3Cpath d='M20 20m-2 0a2 2 0 1 1 4 0a2 2 0 1 1 -4 0'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.breadcrumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    gap: 0.5rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    position: relative;
}

.breadcrumb li:not(:last-child)::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin: 0 1rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.breadcrumb li:hover::after {
    opacity: 1;
    transform: translateX(2px);
}

.breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
}

.breadcrumb a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.breadcrumb a:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--glass-border);
}

.breadcrumb a:hover::before { left: 0; }

.breadcrumb li:last-child {
    color: var(--gray);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--gray);
    backdrop-filter: blur(5px);
}

/* PAGE HERO & HEADER */
.page-hero {
    padding-top: 12rem;
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232d9670' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    text-align: center;
}

.page-header {
    padding: 3rem 0 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--light);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232d9670' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.page-description {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray);
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    color: var(--gray);
    font-size: 0.95rem;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta-icon { color: var(--primary); }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.52);
    transform: translateY(-5px);
}
.btn-secondary {
    background: rgba(29, 53, 87, 0.1);
    color: var(--secondary);
}

.btn-secondary:hover {
    background: rgba(29, 53, 87, 0.15);
    transform: translateY(-5px);
}

.btn-lg {
    padding: 1.2rem 2.75rem;
    font-size: 1.1rem;
}

.btn-icon { width: 20px; height: 20px; }
/* ====================================
   PART 2: BLOG, PRODUCTS, SERVICES, FEATURED, ABOUT
   ==================================== */

/* BLOG CONTENT */
.blog-content-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-featured-image {
    margin-bottom: 3rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.blog-featured-image img {
    width: 100%;
    border-radius: 0;
    transition: transform 0.5s ease;
}

.blog-featured-image:hover img { transform: scale(1.02); }

.blog-text h2 {
    font-size: 2.25rem;
    color: var(--secondary);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.blog-text h3 {
    font-size: 1.75rem;
    color: var(--secondary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-text p { margin-bottom: 1.5rem; }

.blog-text ul, .blog-text ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-text li { margin-bottom: 0.5rem; }

.blog-text blockquote {
    background-color: var(--light);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
}

.blog-text blockquote p:last-child { margin-bottom: 0; }
.blog-text img { margin: 2rem 0; }

.blog-text .highlight {
    background-color: var(--glass-border);
    color: var(--primary);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.blog-footer {
    border-top: 1px solid var(--light-gray);
    margin-top: 4rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.blog-tag {
    display: inline-block;
    background-color: var(--light);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gray);
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background-color: var(--primary);
    color: var(--white);
}

.blog-share {
    display: flex;
    gap: 1rem;
}

.blog-share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light);
    border-radius: 50%;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.blog-share-link:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--light-gray);
}

.blog-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background-color: var(--light);
    transition: all 0.3s ease;
    width: 48%;
}

.blog-nav-link:hover {
    background-color: var(--primary);
    color: var(--white);
}

.blog-nav-link.prev { flex-direction: row-reverse; }
.blog-nav-title { font-weight: 600; }

/* BLOG SECTION */
.blog {
    padding: 8rem 0;
    background-color: var(--light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
}

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

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 0;
}

.blog-card:hover .blog-image img { transform: scale(1.1); }

.blog-date {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 0 10px 0 0;
}

.blog-content { padding: 2rem; }

.blog-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.blog-link::after {
    content: "→";
    transition: transform 0.3s ease;
}

.blog-link:hover::after { transform: translateX(5px); }
.blog-more { margin-top: 3rem; }

/* PRODUCT SECTION */
.product-section {
    padding: 8rem 0 4rem;
    background-color: var(--white);
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.product-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    min-height: 310px;
    position: relative;
    padding-top: 75%;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    border-radius: 0;
}

.product-image:hover img { transform: scale(1.1); }

.product-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-title a:hover { color: var(--primary); }

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.product-short-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray);
}

.product-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 1;
}

.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.btn-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.btn-details {
    background-color: var(--light-gray);
    color: var(--secondary);
}

.btn-details:hover {
    background-color: var(--secondary);
    color: var(--white);
}

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

.btn-donate:hover { box-shadow: var(--primary-shadow); }

/* PRODUCTS SECTION */
.products-section { padding: 4rem 0; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.product-card:hover .product-image img { transform: scale(1.1); }

.product-description {
    background-color: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--card-shadow);
}

.product-description h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.product-description h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    left: 0;
    bottom: 0;
}

.description-content { color: var(--gray); }
.description-content p { margin-bottom: 1.25rem; }
.description-content strong { color: var(--secondary); }

/* NO PRODUCTS */
.no-products {
    background-color: var(--light);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.no-products-title {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.no-products-text {
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-call:hover {
    box-shadow: 0 5px 20px rgba(45, 150, 112, 0.4);
    transform: translateY(-5px);
}

/* SERVICES */
.services {
    padding: 8rem 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

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

.service-card:hover::before { opacity: 0.05; }

.service-icon {
    margin: 0 auto 1.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--glass-border);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.8rem;
}

.service-title {
    margin-bottom: 1rem;
    color: var(--secondary);
    font-size: 1.4rem;
}

/* FEATURED SERVICES */
.featured-services {
    padding: 8rem 0;
    background-color: var(--white);
    position: relative;
    overflow: visible;
}

.featured-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
    align-items: start;
    overflow: visible;
    width: 80%;
    margin: 0 auto;
}

.featured-card {
    background-color: var(--white);
    border-radius: 24px;
    overflow: visible !important;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    min-height: 550px;
    position: relative;
    z-index: 1;
}

.featured-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--hover-shadow);
    z-index: 2;
}

.featured-card:has(.iti--show-dropdown) { z-index: 999997 !important; }

.featured-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    border-radius: 24px 24px 0 0;
}

.featured-card:hover .featured-image img { transform: scale(1.1); }

.featured-tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 1;
}

.featured-content {
    padding: 2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    width: 99%;
}

.featured-price {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.featured-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.input-field-wrapper {
    position: relative;
    min-height: 48px;
}

.tel-input-wrapper {
    position: relative;
    min-height: 70px;
    z-index: 2 !important;
}

.featured-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.featured-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--glass-border);
}

.featured-input::placeholder { color: #adb5bd; }

.featured-input.error {
    border-color: var(--error) !important;
    box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.2) !important;
}

.featured-input.success {
    border-color: var(--success) !important;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2) !important;
}

/* ABOUT SECTION */
.about, .about-hero {
    padding: 8rem 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.about-hero {
    background-color: var(--white);
    margin-top: 5rem;
}

.about-shape { position: absolute; z-index: 0; }

.about-shape-1 {
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background-color: rgba(45, 150, 112, 0.05);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 15s linear infinite alternate;
}

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

.about-image {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.about-image img { transition: transform 0.5s ease; }
.about-image:hover img { transform: scale(1.05); }

.section-title {
    position: relative;
    margin-bottom: 2.5rem;
    color: var(--secondary);
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 40px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
    transform: translateY(-50%);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-text {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

/* MISSION & VISION */
.mission-vision {
    padding: 8rem 0;
    background-color: var(--light);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card,
.vision-card {
    background-color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.mv-icon svg { width: 35px; height: 35px; }

.mission-card h3,
.vision-card h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.mission-card p,
.vision-card p { color: var(--gray); }

/* STATS SECTION */
.stats-section {
    padding: 8rem 0;
    background-color: var(--secondary);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}
/* ====================================
   PART 3: FORMS, SIDEBAR, CONTACT, FAQ, CTA, FOOTER, MOBILE
   ==================================== */

/* FORMS */
.product-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--secondary);
}

.form-group input,
.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--glass-border);
}

/* Phone Input */
.phone-input-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.country-select { position: relative; }

.country-select select {
    padding: 1rem 1rem 1rem 0.5rem;
    border: 1px solid var(--light-gray);
    border-right: none;
    border-radius: 12px 0 0 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    appearance: none;
    background-color: var(--white);
    cursor: pointer;
    color: var(--secondary);
}

.country-select select:focus {
    outline: none;
    border-color: var(--primary);
}

.phone-input-container input {
    flex: 1;
    border-radius: 0 12px 12px 0;
}

#phone {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3.5rem;
    height: auto;
    font-size: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

#phone:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--glass-border);
}

/* Quantity Input */
.quantity-input {
    display: flex;
    align-items: center;
    max-width: 150px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--light-gray);
    background-color: var(--white);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn.minus { border-radius: 12px 0 0 12px; }
.quantity-btn.plus { border-radius: 0 12px 12px 0; }
.quantity-btn:hover { background-color: var(--light-gray); }

.quantity-input input {
    width: 50px;
    height: 40px;
    border: 1px solid var(--light-gray);
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 1rem;
    padding: 0;
}

.quantity-input input:focus { outline: none; }

.quantity-input input::-webkit-inner-spin-button,
.quantity-input input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Add to Cart Button */
.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: var(--primary-shadow);
}

.add-to-cart-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 150, 112, 0.4);
}

.add-to-cart-btn svg { width: 24px; height: 24px; }

/* SIDEBAR */
.sidebar {
    background-color: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
}

.widget { margin-bottom: 2.5rem; }
.widget:last-child { margin-bottom: 0; }

.widget-title {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.category-list { list-style: none; }

.category-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--light-gray);
}

.category-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--secondary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: var(--primary);
    padding-left: 5px;
}

.category-link span {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.category-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.category-link:hover i { transform: translateX(5px); }

.category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 0.5rem;
    border-radius: 12px;
    background-color: var(--light-gray);
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
}

.subcategory-list {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 1rem;
    display: none;
}

.subcategory-item { margin-bottom: 0.75rem; }
.subcategory-item:last-child { margin-bottom: 0; }

.subcategory-link {
    color: var(--gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subcategory-link:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* SLAUGHTER VIDEOS */
.slaughter {
    padding: 8rem 0;
    background-color: var(--light);
    position: relative;
}

.slaughter-videos {
    max-width: 1200px;
    margin: 3rem auto 0;
    position: relative;
}

.video-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.video-container::-webkit-scrollbar { display: none; }

.video-wrapper {
    flex: 0 0 560px;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: var(--card-shadow);
    transition: transform 0.4s ease;
}

.video-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px 20px 0 0;
    border: none;
}

.video-title {
    padding: 1.25rem 1.5rem 0.5rem;
    margin: 0;
    font-size: 1.25rem;
    color: var(--secondary);
}

.video-date {
    padding: 0 1.5rem 1.25rem;
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.slaughter .slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: static;
    opacity: 1;
    transform: none;
    padding: 0;
}

/* CONTACT */
.contact {
    padding: 8rem 0;
    background-color: var(--light);
    position: relative;
}

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

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
}

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

.contact-icon {
    margin: 0 auto 1.25rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--glass-border);
    border-radius: 50%;
    color: var(--primary);
}

.contact-icon svg { width: 30px; height: 30px; }

.contact-method {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.contact-card p {
    color: var(--gray);
    margin-bottom: 0;
}

.contact-card a {
    color: var(--gray);
    transition: color 0.3s ease;
}

.contact-card a:hover { color: var(--primary); }

.contact-form-container {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-form .btn-icon { width: 18px; height: 18px; }

/* FAQ */
.faq {
    padding: 8rem 0;
    background-color: var(--white);
}

.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover { box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); }

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question:hover { background-color: rgba(45, 150, 112, 0.02); }

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
    padding-right: 2rem;
    line-height: 1.4;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-answer-content p { margin-bottom: 1rem; }
.faq-answer-content p:last-child { margin-bottom: 0; }
.faq-answer-content strong { color: var(--secondary); }

.faq-answer-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer-content li { margin-bottom: 0.5rem; }

.faq-item.active .faq-question { background-color: rgba(45, 150, 112, 0.05); }
.faq-item.active .faq-question h3 { color: var(--primary); }
.faq-item.active .faq-icon { background-color: var(--secondary); }
.faq-item.active .faq-icon svg { transform: rotate(45deg); }
.faq-item.active .faq-answer { max-height: 500px; }

/* CTA */
.cta {
    padding: 8rem 0;
    background: var(--gradient-accent);
    color: var(--secondary);
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cg transform='translate(10,15)'%3E%3Cpath d='M15 0C6.716 0 0 6.716 0 15s6.716 15 15 15c1.933 0 3.773-.365 5.464-.992C16.483 26.709 13 21.142 13 15s3.483-11.709 7.464-14.008C18.773.365 16.933 0 15 0z'/%3E%3Cpath d='m25 10-2.351 4.764L17 15.528l4.298 4.19-1.015 5.918L25 22.764l4.717 2.872-1.015-5.918L33 15.528l-5.649-.764L25 10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title,
.cta-title-white {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* DONATION */
.donation {
    padding: 8rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.donation-shape { position: absolute; z-index: 0; }

.donation-shape-1 {
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(29, 53, 87, 0.05);
    border-radius: 50%;
}

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

.donation-text { max-width: 500px; }

.donation-form-container {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
}

.donation-form-title {
    margin-bottom: 2rem;
    color: var(--secondary);
    text-align: center;
}

.donation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.donation-option {
    padding: 1rem 0.5rem;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donation-option.active {
    border-color: var(--primary);
    background-color: rgba(45, 150, 112, 0.05);
}

.donation-option:hover { border-color: var(--primary); }

.donation-amount {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary);
}

/* PAGINATION */
.pagination-container {
    margin: 3rem auto;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-top: 3rem;
}

.pagination li { margin: 0; }
.page-item { display: flex; }

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 50%;
    font-weight: 500;
    color: var(--secondary);
    background-color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 0.9rem;
}

.page-link:hover {
    background-color: var(--glass-border);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--primary-shadow);
}

.page-item.active .page-link,
.page-link.active {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--primary-shadow);
}

.page-link.ellipsis {
    background: none;
    box-shadow: none;
    width: auto;
    padding: 0 5px;
}

.page-link.ellipsis:hover {
    background: none;
    transform: none;
    box-shadow: none;
}

.page-link-prev,
.page-link-next {
    width: auto;
    min-width: auto;
    padding: 0 1.25rem;
    border-radius: 50px;
    gap: 0.5rem;
    font-weight: 600;
}

.page-link-prev:hover,
.page-link-next:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.page-link i { font-size: 0.9rem; }

.page-link[aria-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* FOOTER */
footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 5rem 0 0;
    position: relative;
    font-size: 15px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 3fr;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

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

.footer-about p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    color: var(--white);
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--primary); }

.footer-newsletter p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.footer-bottom {
    margin-top: 4rem;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* MOBILE BOTTOM MENU */
.mobile-bottom-menu {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background-color: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 88888;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 8px 5px;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 33.33%;
    height: 100%;
}

.menu-item:hover { background-color: rgba(41, 64, 76, 0.05); }

.menu-item svg {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
}

.menu-item span {
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.menu-item-primary {
    color: var(--white);
    background: var(--gradient-primary);
    border-radius: 12px;
    box-shadow: var(--primary-shadow);
    transform: translateY(-15px);
    margin-top: -10px;
    padding: 12px 5px;
}

.menu-item-primary svg { filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.2)); }

/* MOBILE MENU */
.mobile-menu-container {
    position: fixed;
    left: -100%;
    top: 0;
    width: 80%;
    height: 100vh;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-container.active { left: 0; }

.mobile-menu-header {
    padding: 20px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--light-gray);
    background-color: var(--light);
}

.mobile-menu-logo { flex: 1; }

.mobile-menu-logo img {
    max-width: 120px;
    height: auto;
    display: block;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    color: var(--secondary);
    padding: 5px 10px;
    flex-shrink: 0;
}

.close-icon { display: block; }

#mobile-nav-menu {
    display: block;
    padding: 20px;
    margin: 0;
    list-style: none;
}

#mobile-nav-menu li { margin-bottom: 15px; }

#mobile-nav-menu li a {
    display: block;
    padding: 10px 0;
    font-size: 18px;
    color: var(--secondary);
    font-weight: 500;
    text-decoration: none;
}

#mobile-nav-menu li a[href="https://www.biryudumiyilik.com.tr/tum-hizmetler/"] {
    color: var(--white);
    background: var(--gradient-primary);
    border-radius: 12px;
    padding: 0.7rem 1.5rem;
    box-shadow: var(--primary-shadow);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#mobile-nav-menu li a[href="https://www.biryudumiyilik.com.tr/tum-hizmetler/"]::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
/* ====================================
   PART 4: BANK, MODALS, PHONE INPUT, CATEGORY, KURBAN, ANIMATIONS, RESPONSIVE
   ==================================== */

/* BANK DETAILS */
.bank-details {
    padding: 8rem 0;
    background-color: var(--light);
}

.bank-section {
    max-width: 1200px;
    margin: 0 auto;
}

.bank-accounts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.bank-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.bank-header {
    padding: 1.5rem;
    background-color: var(--secondary);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bank-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bank-branch {
    font-size: 1rem;
    opacity: 0.9;
}

.btn-copy {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-copy:hover { background: var(--glass-border); }

.bank-info { padding: 1.5rem; }

.bank-field {
    display: flex;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 0.75rem;
}

.bank-field:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.bank-field label {
    font-weight: 600;
    color: var(--gray);
    width: 120px;
    flex-shrink: 0;
}

.bank-field span {
    font-weight: 500;
    color: var(--secondary);
}

.account-number, .iban {
    font-family: monospace;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.bank-notes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.note-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.note-card svg {
    color: var(--primary);
    flex-shrink: 0;
}

.note-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.note-text p {
    color: var(--gray);
    margin-bottom: 0;
}

/* BANK SELECTION */
.bank-selection {
    background-color: rgba(248, 249, 250, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: var(--dark);
}

.bank-selection:hover {
    border-color: rgba(45, 150, 112, 0.2);
    box-shadow: 0 5px 15px var(--glass-border);
}

.bank-selection label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    font-size: 1rem;
}

.bank-selection select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    background-color: var(--white);
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bank-selection select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--glass-border);
}

.bank-info-container {
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.bank-mini-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bank-mini-card {
    background: var(--white);
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.bank-mini-card:hover {
    border-color: rgba(45, 150, 112, 0.2);
    box-shadow: 0 8px 25px var(--primary-shadow);
    transform: translateY(-3px);
}

.bank-mini-name,
.bank-mini-iban {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: rgba(248, 249, 250, 0.8);
    border-radius: 12px;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
}

.bank-mini-name:last-child,
.bank-mini-iban:last-child { margin-bottom: 0; }

.bank-mini-iban span {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary);
    letter-spacing: 1.5px;
    padding: 0.75rem;
    background-color: rgba(45, 150, 112, 0.05);
    border-radius: 8px;
    border: 1px dashed rgba(45, 150, 112, 0.2);
    text-align: center;
}

#unvan-text { color: var(--primary); }

.copy-btn,
#copy-description {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(45, 150, 112, 0.2);
    min-width: 90px;
}

.copy-btn:hover,
#copy-description:hover {
    transform: translateY(-2px);
    box-shadow: var(--primary-shadow);
}

.copy-btn.copied,
#copy-description.copied {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
}

/* MODALS */
.payment-modal {
    display: none;
    position: fixed;
    z-index: var(--z-modal);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.payment-modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 2.5rem;
    border-radius: 24px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.4s ease;
}

.payment-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.payment-modal-close:hover { color: var(--primary); }

.payment-options {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.payment-option {
    flex: 1;
    padding: 1.5rem;
    border: 2px solid var(--light-gray);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.payment-option:hover {
    border-color: var(--primary);
    background-color: rgba(45, 150, 112, 0.05);
    transform: translateY(-5px);
}

.payment-option-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-color: rgba(41, 64, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.payment-option-icon svg { width: 30px; height: 30px; }
.payment-option h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.payment-option p { font-size: 0.9rem; color: var(--gray); margin-bottom: 0; }

/* Success Modal */
.success-content { text-align: center; max-width: 500px; }

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--success);
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg { width: 50px; height: 50px; }

.reminder-note {
    background-color: var(--glass-border);
    padding: 1rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

#reference-number { color: var(--primary); font-size: 1.2rem; }

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: var(--z-overlay);
    justify-content: center;
    align-items: center;
}

.loading-overlay.active { display: flex; }

.loading-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.loading-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary);
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

.loading-content p { margin-bottom: 0; color: var(--secondary); font-weight: 500; }

/* PHONE INPUT (ITI) */
.iti { position: relative !important; z-index: 11; overflow: visible !important; }

.iti__dropdown-content {
    position: absolute !important;
    z-index: 999999 !important;
    overflow: visible !important;
}

.iti__country-list {
    position: absolute !important;
    z-index: 999999 !important;
    background: var(--white) !important;
    border: 1px solid var(--light-gray) !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    max-height: 300px !important;
    overflow-y: auto !important;
    width: 300px !important;
}

.iti__country {
    padding: 12px 15px !important;
    border-bottom: 1px solid var(--light) !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
}

.iti__country:hover { background-color: var(--light) !important; }

.iti__country.iti__highlight {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}

.iti__search-input {
    width: 100% !important;
    padding: 10px 15px !important;
    border: none !important;
    border-bottom: 1px solid var(--light-gray) !important;
    font-size: 14px !important;
    outline: none !important;
}

/* WORKING PHONE INPUT */
.working-phone-wrapper { position: relative; margin-bottom: 1rem; }

.working-phone-input-row {
    display: flex;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    transition: all 0.3s ease;
    position: relative;
}

.working-phone-input-row:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--glass-border);
}

.working-country-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border: none;
    border-right: 1px solid var(--light-gray);
    cursor: pointer;
    min-width: 80px;
    width: 80px;
    height: 100%;
    outline: none;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.working-country-btn:hover { background: var(--light-gray); }

.working-country-flag {
    width: 24px;
    height: 18px;
    margin-right: 8px;
    border-radius: 2px;
    object-fit: cover;
}

.working-country-code {
    font-weight: 600;
    margin-right: 8px;
    color: var(--secondary);
    font-size: 1rem;
}

.working-dropdown-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
    color: var(--gray);
}

.working-country-btn.open .working-dropdown-icon { transform: rotate(180deg); }

.working-phone-number {
    flex: 1;
    border: none;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    outline: none;
    font-family: 'Poppins', sans-serif;
    background: transparent;
    text-indent: 5rem;
}

.working-phone-number::placeholder { color: #adb5bd; }

.working-country-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: var(--white) !important;
    border: 1px solid var(--light-gray) !important;
    border-radius: 12px !important;
    margin-top: 5px !important;
    max-height: 250px !important;
    overflow: hidden !important;
    z-index: 999999 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    display: none !important;
}

.working-country-dropdown.show { display: block !important; }

.working-search-box {
    padding: 12px 16px !important;
    border: none !important;
    border-bottom: 1px solid var(--light-gray) !important;
    width: 100% !important;
    outline: none !important;
    font-size: 14px !important;
    font-family: 'Poppins', sans-serif !important;
}

.working-countries-list { max-height: 200px !important; overflow-y: auto !important; }

.working-country-option {
    display: flex !important;
    align-items: center !important;
    padding: 12px 16px !important;
    cursor: pointer !important;
    border-bottom: 1px solid rgba(233, 236, 239, 0.5) !important;
    transition: all 0.3s ease !important;
}

.working-country-option:last-child { border-bottom: none !important; }
.working-country-option:hover { background: var(--light) !important; }

.working-country-option.selected {
    background: var(--glass-border) !important;
    color: var(--primary) !important;
}

.working-country-name {
    flex: 1 !important;
    margin-left: 12px !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
}

.working-country-dial {
    font-weight: 600 !important;
    color: var(--gray) !important;
    font-size: 0.9rem !important;
}

/* CATEGORY MENU */
.category-menu {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.category-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.category-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem;
    background: var(--white);
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    cursor: pointer;
    white-space: nowrap;
    min-width: fit-content;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.category-btn:hover {
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}

.category-btn:hover::before { left: 0; }
.category-btn:active { transform: translateY(-4px); }

/* KURBAN PROCESS */
.kurban-process-section {
    background-color: var(--light);
    border-radius: 24px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.kurban-process-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary);
    position: relative;
    z-index: 1;
}

.kurban-steps-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.kurban-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--white);
    padding: 1.5rem 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    position: relative;
    min-width: 0;
}

.kurban-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.kurban-step-connector {
    flex: 0 0 30px;
    height: 3px;
    background: var(--gradient-primary);
    margin-top: 28px;
    position: relative;
    z-index: 0;
    align-self: center;
    display: block;
}

.kurban-step-icon {
    background: var(--gradient-primary);
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--primary-shadow);
    margin-bottom: 1rem;
}

.kurban-step-icon svg { width: 24px; height: 24px; }

.kurban-step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kurban-step-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.kurban-step-description {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.kurban-proof-section {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: rgba(45, 150, 112, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary);
}

.kurban-proof-icon {
    background-color: var(--white);
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.kurban-proof-icon svg { width: 28px; height: 28px; }

.kurban-proof-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.kurban-proof-description { color: var(--gray); margin-bottom: 0; }

/* ANIMATIONS */
@keyframes float {
    0% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-20px) rotate(45deg); }
    100% { transform: translateY(0) rotate(45deg); }
}

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

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

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes logoFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
                transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: fadeIn 0.8s ease forwards;
}

.fade-in.in-view { opacity: 1; transform: translateY(0); }

.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-item.in-view { opacity: 1; transform: translateY(0); }

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    background: var(--gradient-primary);
    z-index: 9999;
    transform-origin: 0%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-btn:nth-child(1) { animation-delay: 0.1s; }
.category-btn:nth-child(2) { animation-delay: 0.2s; }
.category-btn:nth-child(3) { animation-delay: 0.3s; }
.category-btn:nth-child(4) { animation-delay: 0.4s; }
.category-btn:nth-child(5) { animation-delay: 0.5s; }
.category-btn:nth-child(6) { animation-delay: 0.6s; }
.category-btn:nth-child(7) { animation-delay: 0.7s; }
.category-btn:nth-child(8) { animation-delay: 0.8s; }
.category-btn:nth-child(9) { animation-delay: 0.9s; }
.category-btn:nth-child(10) { animation-delay: 1.0s; }
/* ====================================
   PART 5: RESPONSIVE MEDIA QUERIES
   ==================================== */

/* DESKTOP 1200px */
@media (max-width: 1200px) {
    h1 { font-size: 3.25rem; }
    h2 { font-size: 2.5rem; }
    
    .services-grid,
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    
    .footer-container { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-newsletter { grid-column: span 3; margin-top: 2rem; }
    
    .category-grid { gap: 0.75rem; }
    .category-btn { padding: 0.875rem 1.25rem; font-size: 0.9rem; }
}

/* TABLET 992px */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    
    .hero-container,
    .donation-content,
    .about-grid,
    .mv-grid,
    .contact-content,
    .product-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image,
    .about-image,
    .product-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    
    .blog-navigation { flex-direction: column; gap: 1rem; }
    .blog-nav-link { width: 100%; }
    
    .featured-services .featured-grid,
    .services-grid,
    .featured-grid,
    .blog-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        gap: 2rem !important;
    }
    
    nav ul { display: none; }
    
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        padding: 10px;
        cursor: pointer;
        z-index: 991;
        height: 40px;
    }
    
    .mobile-menu-btn .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 3px auto;
        background-color: var(--secondary);
        transition: all 0.3s ease-in-out;
    }
    
    .header-container {
        position: relative;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        margin: 0;
        z-index: 5;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-newsletter { grid-column: span 2; }
    
    .mobile-bottom-menu { display: flex; }
    body { padding-bottom: 65px; }
    body.viewing-bank-details { padding-bottom: 85px; }
    
    .iti__country-list { width: 280px; left: -60px; }
    
    .video-container { gap: 1.5rem; }
    .video-wrapper { flex: 0 0 450px; }
    
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    
    .kurban-steps-container {
        overflow-x: auto;
        padding-bottom: 1rem;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .kurban-step { min-width: 180px; }
    .kurban-step-description { font-size: 0.85rem; }
}

/* TABLET 768px */
@media (max-width: 768px) {
    #vesile-ol { display: none !important; }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .page-title { font-size: 3rem; }
    .product-title { font-size: 2rem; }
    .product-price { font-size: 1.75rem; }
    
    .form-row { flex-direction: column; gap: 1.5rem; }
    .product-description { padding: 2rem; }
    
    .blog-meta { flex-direction: column; gap: 0.75rem; }
    .blog-footer { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
    
    .featured-services .featured-grid,
    .services-grid,
    .featured-grid,
    .blog-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        gap: 1.5rem !important;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .featured-card {
        min-height: 480px;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .donation-options { grid-template-columns: repeat(2, 1fr); }
    .payment-options { flex-direction: column; }
    
    .payment-modal-content {
        margin: 15% auto;
        padding: 2rem;
        width: 90%;
    }
    
    .bank-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .bank-notes { grid-template-columns: 1fr; }
    .bank-accounts-grid { grid-template-columns: 1fr; }
    .bank-field { flex-direction: column; gap: 0.5rem; }
    .bank-field label { width: auto; }
    
    .footer-container { grid-template-columns: 1fr; gap: 2rem; }
    .footer-newsletter { grid-column: span 1; }
    .footer-about { text-align: center; }
    .footer-logo { justify-content: center; margin: 0 auto 1.5rem; }
    .footer-title { text-align: center; }
    .footer-title::after { left: 50%; transform: translateX(-50%); }
    .footer-links { align-items: center; }
    .social-links { justify-content: center; }
    
    .iti__country-list {
        position: fixed !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 280px !important;
        max-width: 90vw !important;
        z-index: 999999 !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        max-height: 60vh !important;
    }
    
    .error-message { font-size: 0.7rem; bottom: -20px; }
    .tel-input-wrapper { min-height: 65px; }
    
    .video-container { gap: 1rem; }
    .video-wrapper { flex: 0 0 350px; }
    .video-title { font-size: 1.1rem; }
    
    .container { padding: 0 1.5rem; }
    
    .about-hero,
    .mission-vision,
    .stats-section,
    .contact { padding: 6rem 0; }
    
    .about-text { max-width: none; }
    .mission-card, .vision-card { padding: 2rem 1.5rem; }
    .mv-icon { width: 70px; height: 70px; }
    .mv-icon svg { width: 30px; height: 30px; }
    .stat-number { font-size: 2.5rem; }
    .stat-label { font-size: 1rem; }
    
    .faq-question { padding: 1.5rem; }
    .faq-question h3 { font-size: 1.1rem; padding-right: 1.5rem; }
    .faq-answer-content { padding: 0 1.5rem 1.5rem; }
    .contact-form-container { padding: 2rem; }
    
    .page-link { width: 35px; height: 35px; font-size: 0.9rem; }
    .pagination { gap: 0.3rem; }
    
    .category-menu { padding: 4rem 0; }
    .section-title { font-size: 2.25rem; }
    .category-grid { gap: 0.5rem; }
    .category-btn { padding: 0.75rem 1rem; font-size: 0.85rem; }
    
    .kurban-process-section { padding: 2rem; margin: 2rem 0; }
    .kurban-process-title { font-size: 1.75rem; margin-bottom: 2rem; }
    .kurban-step { padding: 1.25rem 1rem; min-width: 160px; }
    .kurban-step-title { font-size: 1rem; }
    
    .kurban-proof-section {
        flex-direction: column;
        text-align: center;
    }
    
    .kurban-proof-icon { margin: 0 auto; }
    
    .breadcrumb { padding: 1rem 1.5rem; margin: 1.5rem 0 2rem; border-radius: 16px; }
    .breadcrumb ul { gap: 0.25rem; }
    
    .breadcrumb li:not(:last-child)::after {
        border-left-width: 6px;
        border-top-width: 4px;
        border-bottom-width: 4px;
        margin: 0 0.5rem;
    }
    
    .breadcrumb a,
    .breadcrumb li:last-child { font-size: 0.85rem; padding: 0.4rem 0.8rem; }
    
    .working-country-dropdown {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
        width: 90% !important;
        max-width: 350px !important;
        max-height: 60vh !important;
    }
    
    .working-country-btn { min-width: 100px; padding: 0.8rem 1rem; }
    .working-phone-number { padding: 0.8rem 1rem; }
    
    .bank-selection { padding: 1.25rem; margin: 1rem 0; }
    .bank-selection select { padding: 0.875rem 1rem; font-size: 0.95rem; }
    .bank-mini-card { padding: 1.25rem; }
    .bank-mini-name, .bank-mini-iban { padding: 1rem; gap: 0.75rem; }
    
    .copy-btn {
        align-self: stretch;
        justify-content: center;
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .bank-mini-iban span {
        font-size: 0.9rem;
        letter-spacing: 1px;
        word-break: break-all;
        line-height: 1.4;
        padding: 0.625rem;
    }
    
    #copy-description { font-size: 0.75rem; padding: 0.4rem 0.8rem; min-width: 70px; }
}

/* ====================================
   FİX: HİZMETLERİMİZ MOBİL TELEFON DROPDOWN
   ==================================== */

/* Featured Cards için özel overflow ayarları */
@media (max-width: 576px) {
    /* Hizmetlerimiz bölümü - overflow'ları kaldır */
    .featured-services {
        overflow: visible !important;
    }
    
    .featured-services .container {
        overflow: visible !important;
    }
    
    .featured-grid {
        overflow: visible !important;
    }
    
    /* Featured Card - dropdown açıldığında */
    .featured-card {
        overflow: visible !important;
        position: relative;
    }
    
    /* Card hover olduğunda z-index artırma */
    .featured-card:has(.iti--show-dropdown) {
        z-index: 999997 !important;
        position: relative;
    }
    
    /* Tel input wrapper */
    .featured-card .tel-input-wrapper {
        position: relative;
        z-index: 999998;
        overflow: visible !important;
    }
    
    /* ITI container */
    .featured-card .iti {
        position: relative !important;
        z-index: 999998 !important;
        overflow: visible !important;
    }
    
    /* Featured card content */
    .featured-content {
        overflow: visible !important;
        position: relative;
    }
    
    /* Featured form */
    .featured-form {
        overflow: visible !important;
        position: relative;
    }
    
    /* Featured form fields */
    .featured-form-fields {
        overflow: visible !important;
        position: relative;
    }
    
    /* Input field wrapper */
    .input-field-wrapper {
        overflow: visible !important;
        position: relative;
    }
    
    /* Dropdown açıldığında body scroll'u engelle */
    body.iti-mobile-open {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
    }
    
    /* ITI Dropdown için overlay (mobil) */
    .iti__dropdown-content:not(.iti__hide)::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999997;
        pointer-events: auto;
    }
    
    /* Ülke listesi - mobil için fixed position */
    .iti__country-list {
        position: fixed !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 280px !important;
        max-width: 85vw !important;
        max-height: 50vh !important;
        z-index: 999999 !important;
    }
}

/* Tablet için */
@media (max-width: 768px) and (min-width: 577px) {
    .featured-card:has(.iti--show-dropdown) {
        z-index: 999997 !important;
        overflow: visible !important;
    }
    
    .iti__country-list {
        position: fixed !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 320px !important;
        max-width: 90vw !important;
        max-height: 60vh !important;
    }
}