/* style.css */
/* Premium Corporate Design for Anka Sakatat */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #e87f17; /* Corporate Orange */
    --primary-hover: #cc6b10;
    --primary-light: #fef2e8;
    --accent: #f2cf56; /* Gold/Yellow Accent */
    --accent-hover: #e5be42;
    --dark: #121213; /* Deep Dark */
    --dark-grey: #242426;
    --medium-grey: #4a4a4d;
    --light-grey: #f4f6f8;
    --border-color: #e2e8f0;
    --white: #ffffff;
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--white);
    color: var(--dark-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography & Visual Elements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title-wrap i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 10px;
    display: inline-block;
}

.section-title-wrap h2 {
    font-size: 32px;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.section-title-wrap h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

/* UNIFIED SLANTED NAVIGATION HEADER */
.main-header-unified {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    margin: 0;
    width: 100%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-radius: 0 !important;
}

.unified-header-bar {
    display: flex;
    background-color: var(--white);
    border-radius: 0 !important;
    overflow: visible;
    height: 90px;
    align-items: stretch;
    position: relative;
    border: none !important;
    width: 100%;
}

/* Segment 1: Black Segment (Anka İşletmeler Grubu) */
.segment-black {
    background-color: #22252a;
    width: 25%;
    min-width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
    padding-right: 45px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
    z-index: 3;
    border-radius: 0 !important;
}

.segment-black a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.segment-black img {
    height: 78px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

/* Segment 2: White Segment (Anka Sakatat Badge) */
.segment-white {
    background-color: var(--white);
    width: 180px;
    margin-left: -40px; /* Perfectly overlaps the 40px slant of segment-black */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    clip-path: polygon(40px 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
    z-index: 2;
    border-radius: 0 !important;
}

.segment-white img {
    height: 72px;
    object-fit: contain;
}

/* Segment 3: Red Segment (Menu Links and Phone Button) - Overflow visible to support dropdowns */
.segment-red {
    position: relative;
    flex-grow: 1;
    margin-left: -40px; /* Perfectly overlaps the 40px slant of segment-white */
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Shift to the right */
    gap: 40px; /* Spacing between menu list and phone button */
    padding-left: 60px;
    padding-right: 4%;
    z-index: 1;
    border-radius: 0 !important;
}

.segment-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #e87f17 0%, #d67115 100%);
    clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
    border-radius: 0 !important;
}

/* Dynamic Submenu Dropdown styles */
.has-dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 210px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    display: none;
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.06);
    animation: dropdownFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dropdown li {
    width: 100%;
}

.nav-dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--dark) !important;
    font-size: 14px !important;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
    border: none !important;
}

.nav-dropdown li a:hover {
    background-color: var(--light-grey);
    color: var(--primary) !important;
    padding-left: 25px;
}

.has-dropdown:hover .nav-dropdown {
    display: block;
}

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

.unified-nav {
    display: flex;
    align-items: center;
}

.unified-nav-list {
    display: flex;
    align-items: center;
    gap: 35px; /* Increased spacing between menus */
}

.unified-nav-item a {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: 0.3px;
    position: relative;
    padding: 5px 0;
}

.unified-nav-item a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

.unified-nav-item.active a::after,
.unified-nav-item a:hover::after {
    width: 100%;
}

.unified-nav-item.active a {
    color: var(--white);
}

/* Phone Button (Yellow pill) */
.unified-phone-btn {
    background-color: #f2cf56;
    color: var(--dark) !important;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(242, 207, 86, 0.3);
    font-size: 14px;
    transition: var(--transition);
}

.unified-phone-btn:hover {
    background-color: #e5be42;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(242, 207, 86, 0.4);
}

.unified-phone-btn i {
    font-size: 16px;
}

.unified-hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

/* 3. HERO SLIDER */
.hero-section {
    position: relative;
    background-color: var(--dark);
    height: 480px;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: var(--white);
    max-width: 600px;
    z-index: 5;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #e2e8f0;
}

.hero-cta-btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 15px;
    text-transform: uppercase;
}

.hero-cta-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: var(--transition);
}

.hero-arrow:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.hero-prev { left: 30px; }
.hero-next { right: 30px; }

/* 4. BİZDEN HABERLER SECTION (News Slider Box) */
.news-slider-section {
    padding: 60px 0;
    background-color: var(--white);
}

.news-container {
    display: flex;
    background-color: var(--dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 380px;
}

.news-media {
    flex: 1.2;
    position: relative;
    overflow: hidden;
}

.news-slider-track {
    height: 100%;
    position: relative;
}

.news-media-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.news-media-slide.active {
    opacity: 1;
}

.news-media-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content-box {
    flex: 1;
    padding: 40px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-badge {
    background-color: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
    align-self: flex-start;
    letter-spacing: 1px;
}

.news-content-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.news-content-slide.active {
    display: block;
}

.news-date {
    color: var(--accent);
    font-size: 13px;
    margin-bottom: 10px;
}

.news-text {
    color: #cccccc;
    font-size: 15px;
    margin-bottom: 25px;
}

.news-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.news-btn:hover {
    background-color: var(--primary-hover);
    padding-left: 25px;
}

.news-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.news-dots {
    display: flex;
    gap: 8px;
}

.news-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.news-dot.active {
    background-color: var(--primary);
    width: 20px;
    border-radius: 4px;
}

.news-arrows {
    display: flex;
    gap: 10px;
}

.news-arrow-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.news-arrow-btn:hover {
    background-color: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

/* 5. PRODUCTS GRID/CAROUSEL (Pişmiş ve Çiğ Sakatatlar) */
.products-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.products-section.cooked {
    background-color: #fdfdfd;
}

.products-slider-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    gap: 15px;
}

.products-slider-track {
    display: flex;
    gap: 20px;
    width: 100%;
    transition: var(--transition);
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-top: 15px;
    padding-bottom: 15px;
}

.products-slider-track::-webkit-scrollbar {
    display: none;
}

.product-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    color: var(--dark);
    display: block;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white) !important;
}

.product-card:hover h3 {
    color: var(--white) !important;
}

.product-card:hover .product-code {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.product-img-wrapper {
    width: 130px;
    height: 130px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.product-card:hover .product-img-wrapper {
    border-color: var(--white);
    transform: rotate(3deg) scale(1.05);
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.product-card h3 {
    font-size: 16px;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 10px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-code {
    display: inline-block;
    background-color: var(--light-grey);
    color: var(--medium-grey);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.slider-arrow-btn {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 10;
}

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

/* 6. TESTIMONIALS (Müşteri Yorumu) */
.testimonial-section {
    padding: 60px 0;
    background: radial-gradient(circle at center, #ffffff 0%, #f4f6f8 100%);
    text-align: center;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 20px;
}

.quote-icon {
    font-size: 40px;
    color: #e2e8f0;
    position: absolute;
    opacity: 0.8;
}

.quote-icon.left {
    top: -10px;
    left: -30px;
}

.quote-icon.right {
    bottom: -10px;
    right: -30px;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 18px;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: 20px;
    font-style: italic;
    color: var(--medium-grey);
    margin-bottom: 20px;
    line-height: 1.5;
}

.quote-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 10px;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.quote-author {
    font-weight: 700;
    color: var(--dark);
    font-size: 15px;
    text-transform: uppercase;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
}

.testimonial-dot.active {
    background-color: var(--primary);
}

/* 7. WHATSAPP CTA BANNER */
.whatsapp-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 30px 0;
    border-bottom: 4px solid var(--accent);
}

.whatsapp-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.whatsapp-banner-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.whatsapp-icon-large {
    font-size: 55px;
    color: #2ecc71;
    animation: pulse 2s infinite;
}

.whatsapp-banner-box h3 {
    font-size: 18px;
    font-weight: 500;
}

.whatsapp-banner-box p {
    font-size: 20px;
    font-weight: 700;
}

.whatsapp-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-info-item i {
    font-size: 20px;
    color: var(--accent);
    width: 24px;
}

.whatsapp-info-item h4 {
    font-size: 14px;
    font-weight: 600;
}

.whatsapp-info-item p {
    font-size: 12px;
    color: #f1f3f5;
}

.whatsapp-btn-box {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
}

.whatsapp-btn-box h3 {
    font-size: 15px;
    margin-bottom: 10px;
}

.whatsapp-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #2ecc71;
    color: var(--white);
    font-weight: 700;
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(46, 204, 113, 0.2);
}

.whatsapp-link-btn:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

.whatsapp-phone-sub {
    display: block;
    margin-top: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
}

/* 8. BRANDS/REFERENCES CAROUSEL */
.brands-section {
    padding: 40px 0;
    background-color: #f1f3f5;
    border-bottom: 1px solid var(--border-color);
}

.brands-slider-container {
    display: flex;
    align-items: center;
    position: relative;
    gap: 20px;
}

.brands-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    width: 100%;
    padding: 10px 0;
}

.brands-slider-track::-webkit-scrollbar {
    display: none;
}

.brand-slide {
    flex: 0 0 calc(16.66% - 17px);
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 150px;
}

.brand-slide:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

.brand-logo-img {
    height: 45px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition: var(--transition);
}

.brand-slide:hover .brand-logo-img {
    filter: grayscale(0);
    opacity: 1;
}

.brand-slide span {
    font-size: 11px;
    font-weight: 600;
    color: var(--medium-grey);
    text-transform: uppercase;
}

.brand-slider-btn {
    background: none;
    border: none;
    color: var(--medium-grey);
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
}

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

/* 9. DARK STATS & ABOUT BLOCK */
.about-stats-section {
    background-color: var(--primary);
    color: #3f1d10;
    padding: 50px 0 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(63, 29, 16, 0.15);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.stat-item i {
    font-size: 36px;
    color: #2b130a;
}

.stat-content {
    text-align: left;
}

.stat-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2b130a;
    text-transform: uppercase;
}

.stat-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.about-summary-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-summary-block h3 {
    font-size: 16px;
    font-weight: 700;
    color: #2b130a;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-summary-block p {
    font-size: 14px;
    color: #3f1d10;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-icons-wrap {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon-btn {
    background-color: rgba(63, 29, 16, 0.05);
    border: 1px solid rgba(63, 29, 16, 0.15);
    color: #2b130a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.social-icon-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* 10. BLUE FOOTER */
.red-footer {
    background-color: #3f1d10; /* Dark brown/orange tone matching the logo */
    color: var(--white);
    padding: 20px 0;
    border-top: 1px solid #2b130a;
    font-size: 13px;
}

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

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo-wrap img {
    height: 35px;
    object-fit: contain;
}

.footer-meta-info {
    display: flex;
    gap: 25px;
}

.footer-meta-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #e2e8f0;
}

.footer-meta-info a {
    color: #e2e8f0;
}

.footer-meta-info a:hover {
    color: var(--accent);
}

/* GENERAL DYNAMIC PAGES & DETAIL LAYOUTS */
.page-banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/banner.png') center/cover;
    height: 220px;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-bottom: 50px;
}

.page-banner h1 {
    font-size: 38px;
    text-transform: uppercase;
}

.page-content-wrapper {
    padding-bottom: 60px;
}

.content-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 40px;
}

.main-content-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.main-content-card h2 {
    margin-bottom: 20px;
    color: var(--dark);
    font-size: 24px;
}

.main-content-card p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--medium-grey);
}

.main-content-card ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style: disc;
}

.main-content-card li {
    margin-bottom: 8px;
}

.sidebar-card {
    background-color: var(--light-grey);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
}

.sidebar-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
}

.sidebar-list li {
    margin-bottom: 12px;
}

.sidebar-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--dark-grey);
}

.sidebar-list a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Contact Page Form */
.contact-form-wrap {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 15px;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 122, 66, 0.15);
}

.form-submit-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
}

.form-submit-btn:hover {
    background-color: var(--primary-hover);
}

.contact-info-widget {
    background-color: var(--light-grey);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.info-widget-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-widget-item i {
    font-size: 24px;
    color: var(--primary);
}

.info-widget-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.info-widget-item p {
    color: var(--medium-grey);
    font-size: 14px;
}

/* Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .unified-header-bar {
        display: grid;
        grid-template-rows: 75px 70px;
        grid-template-columns: 1fr auto;
        height: 145px;
        background-color: var(--white);
        align-items: stretch;
        padding: 0;
        border-radius: 0 !important;
        border: none !important;
    }
    
    .segment-black {
        grid-row: 1;
        grid-column: 1 / span 2;
        background-color: #22252a; /* dark gray/black segment color */
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        padding: 0;
        clip-path: none;
        margin: 0;
        z-index: 10;
        border-radius: 0 !important;
    }
    
    .segment-black img {
        height: 62px; /* Increased from 48px */
        filter: brightness(0) invert(1) !important; /* Force white group logo */
    }
    
    .segment-black .group-text {
        display: none;
    }
    
    .segment-white {
        grid-row: 2;
        grid-column: 1;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-left: 20px;
        width: auto;
        margin-left: 0;
        clip-path: none;
        background: none;
        z-index: 10;
        border-radius: 0 !important;
    }
    
    .segment-white img {
        height: 52px;
    }
    
    .segment-red {
        display: none; /* Hide desktop nav and phone on tablet/mobile */
        z-index: 999 !important; /* High z-index to overlay content */
    }
    
    /* When clicked, display absolute dropdown menu */
    .segment-red.mobile-active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 145px; /* Aligns with 145px height header */
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--primary) 0%, #053b1e 100%);
        padding: 25px;
        box-shadow: var(--shadow-lg);
        clip-path: none;
        margin-left: 0;
        gap: 20px;
        align-items: stretch;
    }
    
    .unified-nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .unified-nav-item a {
        display: block;
        padding: 10px 0;
        width: 100%;
        color: var(--white) !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .segment-red::before {
        display: none; /* Hide slant background on mobile dropdown list */
    }
    
    .nav-dropdown {
        position: static;
        display: block;
        box-shadow: none;
        background-color: transparent;
        border: none;
        padding: 5px 0 5px 20px;
        min-width: auto;
        width: 100%;
        animation: none;
    }
    
    .nav-dropdown li a {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 8px 10px !important;
        font-size: 13px !important;
        font-weight: 500;
        border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    }
    
    .nav-dropdown li a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--white) !important;
        padding-left: 15px;
    }
    
    .unified-phone-btn {
        justify-content: center;
        width: 100%;
    }
    
    .unified-hamburger {
        grid-row: 2;
        grid-column: 2;
        display: block;
        color: var(--dark); /* dark icon for white header bar background */
        align-self: center;
        justify-self: end;
        margin-right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }
    
    .products-slider-track {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .whatsapp-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-grid, .contact-form-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 15px;
    }
    
    .news-container {
        flex-direction: column;
    }
    
    .news-media {
        height: 250px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .red-footer .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-meta-info {
        flex-direction: column;
        gap: 10px;
    }
}
/* 15. NEW MOCKUP FOOTER DESIGNS */
.whatsapp-cta-banner {
    background-color: var(--primary);
    color: var(--white);
    padding: 40px 0;
}
.cta-banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
}
.cta-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.big-wa-icon {
    font-size: 55px;
    color: var(--white);
}
.cta-subtitle {
    font-size: 14px;
    font-weight: 500;
}
.cta-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}
.cta-middle {
    display: flex;
    gap: 15px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.feature-icon {
    font-size: 24px;
    margin-top: 5px;
}
.feature-item h4 {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 3px 0;
    color: var(--white);
}
.feature-item p {
    font-size: 12px;
    margin: 0;
    opacity: 0.9;
    color: var(--white);
}
.wa-button-card {
    background-color: #12c665;
    padding: 15px 25px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.wa-btn-title {
    font-size: 16px;
    font-weight: 700;
}
.wa-action-btn {
    background-color: var(--white);
    color: #12c665;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}
.wa-btn-phone {
    font-size: 24px;
    font-weight: 700;
}
.dark-about-section {
    background-color: #4b4d4e;
    color: var(--white);
    padding: 70px 0;
    text-align: center;
}
.dark-about-logo {
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo-main {
    font-size: 38px;
    font-weight: 700;
    font-family: "Times New Roman", Times, serif;
    font-style: italic;
}
.logo-subtext {
    font-size: 16px;
    font-weight: 600;
    margin-top: 5px;
}
.dark-about-text {
    max-width: 850px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
    color: #e2e8f0;
}
.social-icons-wrap {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
}
.social-icon-btn:hover {
    background-color: var(--white);
    color: #4b4d4e;
}
.orange-bottom-footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 15px 0;
    font-size: 13px;
}
.orange-bottom-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-left img {
    height: 50px;
}
.footer-right {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
}

@media (max-width: 992px) {
    .cta-banner-inner { flex-direction: column; text-align: center; }
    .cta-left { flex-direction: column; }
    .cta-middle { flex-direction: column; align-items: center; }
    .feature-item { flex-direction: column; align-items: center; text-align: center; }
    .orange-bottom-footer .container { flex-direction: column; gap: 15px; }
    .footer-right { flex-direction: column; gap: 10px; }
}

