/* ========================================
   MANNOL EGYPT - Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Mannol Brand */
    --primary-dark: #1a237e;
    --primary-blue: #0d1442;
    --primary-navy: #0a1128;
    --accent-yellow: #ffd700;
    --accent-gold: #f4b400;
    --accent-orange: #ff9800;

    /* Secondary Colors */
    --secondary-blue: #1565c0;
    --secondary-light: #42a5f5;

    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray: #9e9e9e;
    --dark-gray: #616161;
    --text-dark: #212121;
    --text-light: #757575;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a237e 0%, #0d1442 100%);
    --gradient-gold: linear-gradient(135deg, #ffd54f 0%, #f4b400 100%);
    --gradient-dark: linear-gradient(135deg, #0a1128 0%, #1a237e 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);

    /* Typography */
    --font-primary: 'Cairo', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
}

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

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

input,
select,
textarea {
    font-family: inherit;
    outline: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background: var(--primary-navy);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-info a:hover {
    color: var(--accent-yellow);
}

.contact-info i {
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 12px;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--accent-yellow);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ========================================
   HEADER
   ======================================== */
.header {
    background: var(--primary-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-yellow);
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Search Box */
.search-box {
    flex: 1;
    max-width: 600px;
    display: flex;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.category-select {
    padding: 12px 15px;
    border: none;
    background: var(--light-gray);
    color: var(--text-dark);
    font-size: 14px;
    cursor: pointer;
    min-width: 120px;
    border-left: 1px solid #ddd;
}

.search-box input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 14px;
    min-width: 200px;
}

.search-btn {
    padding: 12px 20px;
    background: var(--accent-yellow);
    color: var(--primary-dark);
    font-size: 16px;
    transition: var(--transition-fast);
}

.search-btn:hover {
    background: var(--accent-gold);
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--white);
    font-size: 11px;
    padding: 8px 15px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.action-btn i {
    font-size: 20px;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-yellow);
}

/* ========================================
   MAIN NAVIGATION
   ======================================== */
.main-nav {
    background: var(--accent-yellow);
    position: sticky;
    top: 82px;
    z-index: 999;
    box-shadow: var(--shadow-sm);
}

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

.mobile-menu-btn {
    display: none;
    padding: 10px;
    background: none;
    color: var(--primary-dark);
    font-size: 24px;
}

.nav-menu {
    display: flex;
    gap: 5px;
    width: 100%;
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 18px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-fast);
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
    background: var(--primary-dark);
    color: var(--accent-yellow);
}

.nav-menu>li>a i.fa-chevron-down {
    font-size: 10px;
    margin-right: 4px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    min-width: 200px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 14px;
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition-fast);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.dropdown-menu li a:hover {
    background: var(--primary-dark);
    color: var(--accent-yellow);
    padding-right: 25px;
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slide-text {
    max-width: 500px;
    color: var(--white);
}

.slide-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-yellow);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-xl);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.slide-text h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.slide-btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--accent-yellow);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-gold);
}

.slide-btn:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.slide-image {
    position: relative;
}

.slide-image img {
    max-height: 400px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background: var(--accent-yellow);
    color: var(--primary-dark);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dots .dot.active {
    background: var(--accent-yellow);
    width: 30px;
    border-radius: 6px;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--white);
    padding: 30px 25px;
    text-align: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    color: var(--accent-yellow);
    font-size: 28px;
}

.feature-card h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* ========================================
   SECTION HEADER
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-header h2 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
    margin-top: 15px;
}

.view-all-btn {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 20px;
    background: var(--primary-dark);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.view-all-btn:hover {
    background: var(--accent-yellow);
    color: var(--primary-dark);
}

/* ========================================
   CATEGORIES SECTION
   ======================================== */
.categories-section {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 17, 40, 0.9) 0%, rgba(10, 17, 40, 0.3) 100%);
    transition: var(--transition-normal);
}

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

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(10, 17, 40, 0.95) 0%, rgba(10, 17, 40, 0.5) 100%);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    color: var(--white);
    text-align: center;
    z-index: 2;
}

.category-info i {
    font-size: 36px;
    color: var(--accent-yellow);
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.category-card:hover .category-info i {
    transform: scale(1.2);
}

.category-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.category-info span {
    font-size: 14px;
    opacity: 0.8;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products-section {
    padding: 80px 0;
    background: var(--white);
}

.products-section.best-sellers {
    background: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
}

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

.product-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
}

.product-badge {
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.product-badge.new {
    background: var(--secondary-blue);
    color: var(--white);
}

.product-badge.sale {
    background: #e53935;
    color: var(--white);
}

.product-badge.hot {
    background: var(--accent-orange);
    color: var(--white);
}

.product-image {
    position: relative;
    padding: 20px;
    background: var(--light-gray);
    text-align: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-height: 160px;
    transition: var(--transition-normal);
}

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

.product-actions {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: var(--transition-fast);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-actions button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-full);
    color: var(--primary-dark);
    font-size: 14px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.product-actions button:hover {
    background: var(--accent-yellow);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 44px;
}

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

.product-specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.product-specs span {
    padding: 4px 10px;
    background: var(--light-gray);
    font-size: 11px;
    border-radius: var(--radius-sm);
    color: var(--text-dark);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
}

.old-price {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-unit {
    font-size: 12px;
    color: var(--text-light);
}

/* ========================================
   BANNER SECTION
   ======================================== */
.banner-section {
    padding: 60px 0;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.banner-card {
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: relative;
    min-height: 180px;
}

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

.banner-content h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.banner-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.banner-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.banner-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateX(-5px);
}

.banner-image {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 100px;
    color: rgba(255, 255, 255, 0.2);
}

/* ========================================
   WHY US SECTION
   ======================================== */
.why-us-section {
    padding: 80px 0;
    background: var(--gradient-dark);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-text h2 {
    font-size: 36px;
    color: var(--accent-yellow);
    margin-bottom: 30px;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-us-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-us-list li i {
    font-size: 24px;
    color: var(--accent-yellow);
    margin-top: 3px;
}

.why-us-list li h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 5px;
}

.why-us-list li p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.why-us-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   BRANDS SECTION
   ======================================== */
.brands-section {
    padding: 80px 0;
    background: var(--white);
}

.brands-slider {
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    gap: 40px;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-item {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-fast);
}

.brand-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 2px;
    padding: 10px 20px;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.brand-item:hover .brand-text {
    background: var(--primary-dark);
    color: var(--accent-yellow);
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletter-section {
    padding: 60px 0;
    background: var(--accent-yellow);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.newsletter-text p {
    color: var(--primary-dark);
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
}

.newsletter-form button {
    padding: 15px 30px;
    background: var(--primary-dark);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--primary-navy);
    transform: translateX(-3px);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--primary-navy);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-column {
    color: var(--white);
}

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

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-yellow);
}

.footer-about {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--white);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-yellow);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 18px;
    color: var(--accent-yellow);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-yellow);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-yellow);
    padding-right: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact li i {
    color: var(--accent-yellow);
    font-size: 16px;
    margin-top: 3px;
}

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

.footer-contact a:hover {
    color: var(--accent-yellow);
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-dark);
    color: var(--accent-yellow);
    border-radius: var(--radius-full);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent-yellow);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    animation: none;
}

/* ========================================
   PAGE HEADER (for inner pages)
   ======================================== */
.page-header {
    background: var(--gradient-primary);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--accent-yellow);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

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

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

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}