/* ============================================
   ENNSU İÇECEK - Main Stylesheet
   Toptan & Perakende Su Satışı - Gel-Al Noktası
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
    --primary: #0a4c8a;
    --primary-dark: #063560;
    --primary-light: #1a6fc4;
    --secondary: #00bcd4;
    --secondary-light: #4dd0e1;
    --accent: #00e5ff;
    --dark: #0a1628;
    --dark-alt: #112240;
    --light: #f0f8ff;
    --light-alt: #e0f2fe;
    --white: #ffffff;
    --gray-100: #f7fafc;
    --gray-200: #edf2f7;
    --gray-300: #e2e8f0;
    --gray-400: #cbd5e0;
    --gray-500: #a0aec0;
    --gray-600: #718096;
    --gray-700: #4a5568;
    --gray-800: #2d3748;
    --gradient-primary: linear-gradient(135deg, #0a4c8a 0%, #00bcd4 100%);
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #0a4c8a 50%, #00838f 100%);
    --gradient-card: linear-gradient(145deg, rgba(10,76,138,0.05) 0%, rgba(0,188,212,0.08) 100%);
    --shadow-sm: 0 2px 8px rgba(10,76,138,0.08);
    --shadow-md: 0 8px 30px rgba(10,76,138,0.12);
    --shadow-lg: 0 20px 60px rgba(10,76,138,0.15);
    --shadow-xl: 0 30px 80px rgba(10,76,138,0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

a {
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Preloader ---------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-inner .water-drop {
    width: 60px;
    height: 60px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: var(--gradient-primary);
    animation: dropBounce 1.4s ease-in-out infinite;
    margin: 0 auto 20px;
    position: relative;
}

.preloader-inner .water-drop::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}

.preloader-inner p {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInOut 1.4s ease-in-out infinite;
}

@keyframes dropBounce {
    0%, 100% { transform: rotate(-45deg) translateY(0); }
    50% { transform: rotate(-45deg) translateY(-20px); }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ---------- Navbar ---------- */
.navbar-custom {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
    z-index: 9999;
}

.navbar-custom.scrolled {
    padding: 8px 0;
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--gray-200);
}

.navbar-custom .navbar-brand img {
    height: 55px;
    transition: var(--transition);
}

.navbar-custom.scrolled .navbar-brand img {
    height: 45px;
}

.navbar-custom .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark) !important;
    padding: 10px 20px !important;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-custom .nav-link:hover {
    color: var(--primary) !important;
}

.navbar-custom .nav-link.active {
    color: var(--primary) !important;
}

.navbar-cta {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    padding: 10px 28px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 4px 15px rgba(10,76,138,0.3);
    transition: var(--transition) !important;
}

.navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10,76,138,0.4) !important;
}

.navbar-cta::after {
    display: none !important;
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 28px;
    height: 20px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-toggler-icon::before { top: 0; }
.navbar-toggler-icon span { top: 50%; transform: translateY(-50%); }
.navbar-toggler-icon::after { bottom: 0; }

/* ---------- Hero Section ---------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,188,212,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,229,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 10s ease-in-out infinite reverse;
}

@keyframes floatBubble {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(40px, 10px) scale(1.02); }
}

/* Water Particles */
.water-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.water-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(0,229,255,0.3);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,188,212,0.15);
    border: 1px solid rgba(0,188,212,0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--secondary-light);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-title span {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 35px;
    max-width: 500px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-primary-custom {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0,188,212,0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,188,212,0.4);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease 0.5s both;
}

.hero-image-wrapper img {
    max-height: 550px;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.3));
}

.hero-floating-card {
    position: absolute;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 18px 22px;
    animation: floatCard 4s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    bottom: 15%;
    left: -15%;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    top: 10%;
    right: -10%;
    animation-delay: 2s;
}

.hero-floating-card .card-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.hero-floating-card .card-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.hero-floating-card h6 {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.hero-floating-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    margin: 0;
}

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

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
    background: var(--white);
    padding: 50px 0;
    position: relative;
    z-index: 4;
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: var(--gray-300);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- Section Styles ---------- */
.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(10,76,138,0.08) 0%, rgba(0,188,212,0.08) 100%);
    border: 1px solid rgba(10,76,138,0.12);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 18px;
}

.section-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 600px;
    line-height: 1.8;
}

.section-description.centered {
    margin: 0 auto;
}

/* ---------- About Section ---------- */
.about-section {
    background: var(--gray-100);
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-experience-badge .number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-features {
    margin-top: 35px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-card);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(10,76,138,0.1);
}

.about-feature-icon i {
    color: var(--primary);
    font-size: 1.2rem;
}

.about-feature-text h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 3px;
}

.about-feature-text p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

/* ---------- Products Section ---------- */
.products-section {
    background: var(--white);
    overflow: hidden;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    height: 100%;
}

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

.product-card-image {
    position: relative;
    padding: 30px;
    background: var(--gradient-card);
    text-align: center;
    overflow: hidden;
}

.product-card-image img {
    height: 220px;
    object-fit: contain;
    transition: var(--transition);
}

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

.product-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card-body {
    padding: 25px;
}

.product-card-body h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.product-card-body p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.product-link:hover {
    color: var(--secondary);
    gap: 12px;
}

/* ---------- Why Choose Us Section ---------- */
.why-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.why-section::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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%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");
}

.why-section .section-badge {
    background: rgba(0,188,212,0.15);
    border-color: rgba(0,188,212,0.3);
    color: var(--secondary-light);
}

.why-section .section-title {
    color: var(--white);
}

.why-section .section-title span {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-section .section-description {
    color: rgba(255,255,255,0.7);
}

.why-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.why-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-8px);
    border-color: rgba(0,188,212,0.3);
}

.why-card-icon {
    width: 75px;
    height: 75px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.why-card:hover .why-card-icon {
    transform: rotateY(180deg);
}

.why-card-icon i {
    color: var(--white);
    font-size: 1.8rem;
}

.why-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
    line-height: 1.7;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: var(--white);
    padding: 80px 0;
}

.cta-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 70px 60px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,229,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box .cta-content {
    position: relative;
    z-index: 2;
}

.cta-box h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-box p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    color: var(--primary-dark);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-brand img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 300px;
    color: rgba(255,255,255,0.6);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.footer h5 {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--secondary);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(0,188,212,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-item .icon i {
    color: var(--secondary);
    font-size: 1rem;
}

.footer-contact-item .info p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-contact-item .info a {
    color: rgba(255,255,255,0.7);
}

.footer-contact-item .info a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 25px 0;
    margin-top: 60px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 8px 25px rgba(10,76,138,0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(10,76,138,0.4);
}

/* ---------- WhatsApp Button ---------- */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 10px 35px rgba(37,211,102,0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 25px rgba(37,211,102,0.4), 0 0 0 15px rgba(37,211,102,0.1); }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
    .hero-title { font-size: 3.2rem; }
    .section-title { font-size: 2.4rem; }
}

@media (max-width: 991.98px) {
    .hero-section { padding-top: 100px; }
    .hero-title { font-size: 2.8rem; }
    .hero-image-wrapper { margin-top: 50px; text-align: center; }
    .hero-image-wrapper img { max-height: 400px; }
    .hero-floating-card { display: none; }
    .section-padding { padding: 70px 0; }
    .section-title { font-size: 2.2rem; }
    .stat-item::after { display: none; }
    .about-experience-badge { right: 10px; bottom: 10px; padding: 18px 22px; }
    .about-experience-badge .number { font-size: 2rem; }
    .about-image-wrapper { margin-bottom: 40px; }
    .cta-box { padding: 50px 35px; }
    .cta-box h2 { font-size: 2rem; }
    
    .navbar-custom .navbar-collapse {
        background: var(--white);
        border-radius: var(--radius-md);
        padding: 20px;
        margin-top: 15px;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--gray-200);
    }
    
    .navbar-custom .nav-link {
        padding: 12px 15px !important;
        border-radius: var(--radius-sm);
    }
    
    .navbar-custom .nav-link:hover {
        background: var(--gray-100);
    }
    
    .navbar-custom .nav-link::after {
        display: none;
    }
    
    .navbar-cta {
        margin-top: 10px;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .hero-title { font-size: 2.2rem; }
    .hero-description { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-outline-custom {
        text-align: center;
        justify-content: center;
    }
    .section-title { font-size: 1.9rem; }
    .stat-number { font-size: 2.2rem; }
    .cta-box { padding: 40px 25px; text-align: center; }
    .cta-box h2 { font-size: 1.7rem; }
    .footer { padding-top: 60px; }
    .footer-bottom { text-align: center; }
    .footer-bottom .text-end { text-align: center !important; margin-top: 10px; }
    .whatsapp-btn { bottom: 20px; left: 20px; width: 50px; height: 50px; }
    .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

@media (max-width: 575.98px) {
    .hero-title { font-size: 1.9rem; }
    .section-title { font-size: 1.7rem; }
    .product-card-image img { height: 180px; }
    .cta-box h2 { font-size: 1.5rem; }
    .about-experience-badge { position: static; margin-top: 15px; display: inline-block; }
}

/* ============================================
   PAGE HERO / BREADCRUMB BANNER
   ============================================ */
.page-hero {
    background: var(--gradient-hero);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,188,212,0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 8s ease-in-out infinite;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,229,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 10s ease-in-out infinite reverse;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease both;
}

.page-hero-title span {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero .breadcrumb {
    justify-content: center;
    margin: 0;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.page-hero .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-size: 0.95rem;
}

.page-hero .breadcrumb-item a:hover {
    color: var(--secondary);
}

.page-hero .breadcrumb-item.active {
    color: var(--secondary-light);
    font-weight: 600;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
    content: "›";
    font-size: 1.2rem;
}

.page-hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.page-hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ============================================
   PRODUCT FILTER TABS
   ============================================ */
.product-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
    padding: 10px 28px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

.filter-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(10,76,138,0.3);
}

.filter-btn.active:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10,76,138,0.4);
}

/* Product grid item animation */
.product-grid-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.product-grid-item.hidden {
    display: none !important;
}

/* Enhanced product card for catalog page */
.product-card .product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.product-card .product-features li {
    font-size: 0.82rem;
    color: var(--gray-600);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card .product-features li i {
    color: var(--secondary);
    font-size: 0.75rem;
}

.btn-teklif {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    width: 100%;
    justify-content: center;
}

.btn-teklif:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10,76,138,0.3);
    color: var(--white);
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline-section {
    background: var(--gray-100);
    overflow: hidden;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 50px;
    margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 60px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 60px;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    top: 28px;
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(10,76,138,0.15);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.timeline-year {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
    background: var(--white);
}

.value-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.value-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-card);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
    border: 1px solid rgba(10,76,138,0.08);
}

.value-card:hover .value-card-icon {
    background: var(--gradient-primary);
    border-color: transparent;
}

.value-card-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.value-card:hover .value-card-icon i {
    color: var(--white);
}

.value-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   CERTIFICATES / QUALITY
   ============================================ */
.certificates-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.certificates-section::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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%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");
}

.cert-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.cert-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-8px);
    border-color: rgba(0,188,212,0.3);
}

.cert-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cert-card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.cert-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.cert-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    background: var(--white);
}

.team-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 25px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.team-card-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid var(--gray-200);
    transition: var(--transition);
}

.team-card:hover .team-card-avatar {
    border-color: var(--secondary);
    background: var(--gradient-primary);
}

.team-card-avatar i {
    font-size: 3rem;
    color: var(--primary);
    transition: var(--transition);
}

.team-card:hover .team-card-avatar i {
    color: var(--white);
}

.team-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-card .team-role {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
}

.team-card-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.team-card-social a {
    width: 36px;
    height: 36px;
    background: var(--gradient-card);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 0.9rem;
    transition: var(--transition);
}

.team-card-social a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-section {
    background: var(--white);
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.contact-info-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-card);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
    border: 1px solid rgba(10,76,138,0.08);
}

.contact-info-card:hover .contact-info-icon {
    background: var(--gradient-primary);
    border-color: transparent;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon i {
    color: var(--white);
}

.contact-info-card h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
}

.contact-info-card a {
    color: var(--primary);
    font-weight: 500;
}

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

/* Contact Form */
.contact-form-section {
    background: var(--gray-100);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.contact-form-wrapper h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-form-wrapper .form-subtitle {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

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

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    display: block;
}

.form-group .form-control,
.form-group .form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--gray-800);
    transition: var(--transition);
    background: var(--white);
}

.form-group .form-control:focus,
.form-group .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(10,76,138,0.1);
    outline: none;
}

.form-group textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.btn-submit {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(10,76,138,0.3);
    width: 100%;
    justify-content: center;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(10,76,138,0.4);
}

/* Map wrapper */
.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    height: 100%;
    min-height: 450px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
}

/* ============================================
   FAQ / ACCORDION
   ============================================ */
.faq-section {
    background: var(--white);
}

.faq-accordion .accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md) !important;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-accordion .accordion-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    padding: 20px 25px;
    background: var(--white);
    border: none;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--gradient-card);
    color: var(--primary);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a4c8a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: var(--transition);
}

.faq-accordion .accordion-body {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.8;
    padding: 0 25px 20px;
}

/* ============================================
   ABOUT STORY SECTION (full page)
   ============================================ */
.story-section {
    background: var(--white);
}

.story-section .story-text {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 20px;
}

.story-section .story-highlight {
    background: var(--gradient-card);
    border-left: 4px solid var(--primary);
    padding: 25px 30px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 30px 0;
}

.story-section .story-highlight p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-dark);
    font-style: italic;
    margin: 0;
    line-height: 1.8;
}

/* Mission & Vision */
.mission-vision-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    transition: var(--transition);
    height: 100%;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.mission-vision-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mission-vision-card h3 i {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.mission-vision-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0;
}

/* Success Alert */
.success-alert {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    display: none;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    animation: fadeInUp 0.5s ease;
}

.success-alert.show {
    display: flex;
}

.success-alert i {
    font-size: 1.5rem;
}

.success-alert p {
    margin: 0;
    font-weight: 500;
}

/* ============================================
   NEW PAGES RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .page-hero { padding: 130px 0 60px; }
    .page-hero-title { font-size: 2.5rem; }
    
    .timeline::before { left: 20px; }
    .timeline-item { width: 100%; left: 0 !important; padding-left: 55px !important; padding-right: 15px !important; text-align: left !important; }
    .timeline-dot { left: 11px !important; right: auto !important; }
    
    .contact-form-wrapper { padding: 35px 25px; }
    .map-wrapper { min-height: 350px; margin-top: 30px; }
    .map-wrapper iframe { min-height: 350px; }
}

@media (max-width: 767.98px) {
    .page-hero { padding: 120px 0 50px; }
    .page-hero-title { font-size: 2rem; }
    
    .filter-btn { padding: 8px 20px; font-size: 0.82rem; }
    
    .contact-info-section { margin-top: -20px; }
    .contact-form-wrapper { padding: 25px 20px; }
}

@media (max-width: 575.98px) {
    .page-hero-title { font-size: 1.7rem; }
    .timeline-item { padding-left: 45px !important; }
}
