/* CSS Variables */
:root {
    --primary-color: #f59e0b;
    /* Orange - Matches "Al Rolla" and Toys theme */
    --primary-dark: #d97706;
    --brand-red: #ef4444;
    /* Red - For Call/Directions */
    --accent-color: #fbbf24;
    /* Yellow - Highlights */
    --text-color: #333333;
    --text-light: #64748b;
    --bg-white: #ffffff;
    --bg-light: #fefcf8;
    /* Warm light bg */
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    height: 70px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    /* Bolder as per image */
    color: var(--primary-color);
    /* Orange */
    display: flex;
    align-items: center;
}

.logo .accent {
    color: var(--primary-color);
}

.nav {
    display: flex;
    align-items: center;
    flex: 1;
}

/* Adjust nav distribution to mirror image: Logo - Links - Buttons */
@media (min-width: 901px) {
    .nav {
        justify-content: space-between;
        margin-left: 40px;
    }

    .nav-links {
        display: flex;
        gap: 25px;
        margin: 0 auto;
        /* Center the links */
        justify-content: center;
        flex: 1;
    }
}

.nav-links a {
    font-weight: 500;
    color: #4b5563;
    /* Dark gray */
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.logo i {
    color: var(--primary-color) !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Hero Section */
.hero {
    padding: 100px;
    margin-top: 50px;
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.2) 100%), url('images/hero-bg.png');
    background-size: cover;
    /* Fix repetition issues */
    background-repeat: no-repeat;
    background-position: center center;

    overflow: hidden;
    padding-top: 70px;
}

.hero-content {
    text-align: left;
    /* Changed to left alignment */
    z-index: 2;
    max-width: 650px;
    margin-left: 0;
    /* Align to left of container */
}

/* Badge */
.hero-badge {
    display: inline-block;
    background-color: #ffd700;
    /* Gold/Yellow */
    color: #333;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    margin-right: 5px;
    color: #d97706;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #e11d48;
    /* Reddish for "Toys" vibe, matching logo potential or just strong contrast */
}

.hero h1 span {
    color: var(--text-color);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: 0;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Info Row */
.hero-info-row {
    display: flex;
    gap: 25px;
    align-items: center;
}

.info-pill {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.info-pill i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.text-yellow {
    color: #fbbf24;
}

.text-blue {
    color: #3b82f6;
}

.text-green {
    color: #22c55e;
}

/* Custom Button Styles */
.btn-shop {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    border: none;
    padding: 14px 30px;
}

.btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-outline-hero {
    background: transparent;
    border: 2px solid #ef4444;
    color: #ef4444;
    padding: 12px 28px;
}

.btn-outline-hero:hover {
    background: #ef4444;
    color: white;
}

.btn-blue {
    background-color: #0ea5e9;
    color: white;
    border: none;
}

.btn-blue:hover {
    background-color: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

/* Header Buttons */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-outline-red {
    border: 1.5px solid var(--brand-red);
    color: var(--brand-red);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    background: transparent;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-red:hover {
    background: #fff1f2;
}

.btn-red {
    background-color: var(--brand-red);
    color: white;
    padding: 9px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(239, 68, 68, 0.3);
}

.btn-red:hover {
    background-color: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(239, 68, 68, 0.4);
}

/* Ensure Logo matches theme */
.logo i {
    color: var(--primary-color) !important;
    /* Force Orange */
    font-size: 1.6rem;
}

@media (max-width: 900px) {
    .header-buttons {
        display: none;
        /* Hide header buttons on tablet/mobile, use mobile menu maybe or just keep hero */
    }
}

/* Products Section */
.products {
    background-color: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.product-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: #eff6ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
}

.secondary-card .card-icon {
    background-color: #fffbeb;
    color: var(--accent-color);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.feature-list {
    text-align: left;
    width: 100%;
}

.feature-list li {
    margin-bottom: 10px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li i {
    color: var(--primary-color);
    /* Greenish check */
    font-size: 0.9rem;
}

/* Stationery Section */
.stationery {
    background-color: white;
    /* Clean look */
}

.stationery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.stationery-card {
    background-color: #f8fafc;
    /* Very light slate */
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: var(--transition);
}

.stationery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: #f1f5f9;
}

.stat-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.stat-icon-box.icon-blue {
    background-color: #e0f2fe;
    color: #0284c7;
}

.stat-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.stat-content p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .stationery-grid {
        grid-template-columns: 1fr;
    }

    .stationery-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
}

/* About Section Redesign */
.about {
    background-color: var(--bg-white);
    padding: 100px 0;
}

.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.about-badge {
    background-color: #dcfce7;
    color: #16a34a;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 25px;
}

.text-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-desc {
    max-width: 800px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    /* Soft, spread shadow */
    transition: var(--transition);
    border: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.icon-red {
    background-color: #fee2e2;
    color: #ef4444;
}

.icon-pink {
    background-color: #fce7f3;
    color: #ec4899;
}

.icon-orange {
    background-color: #ffedd5;
    color: #f97316;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    /* Orange text for numbers */
    margin-bottom: 5px;
}

.stat-card p {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    background-color: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    background-color: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-info {
    padding: 40px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    font-size: 1.5rem;
    margin-top: 3px;
    opacity: 0.9;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    font-weight: 300;
    font-size: 0.95rem;
    opacity: 0.9;
}

.info-item small {
    display: block;
    margin-top: 3px;
    opacity: 0.7;
}

.map-container {
    background-color: #eee;
    min-height: 400px;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer p {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    /* Hidden by default */
    width: 280px;
    height: 100%;
    background-color: var(--bg-white);
    z-index: 1002;
    padding: 30px;
    transition: var(--transition);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.mobile-nav-links {
    margin-top: 50px;
}

.mobile-nav-links li {
    margin-bottom: 20px;
}

.mobile-nav-links a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
}

.mobile-nav-links a:hover {
    color: var(--primary-color);
}

/* Responsive Media Queries */
@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 300px;
        min-height: auto;
    }

    .header-buttons {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav {
        justify-content: flex-end;
        /* Push toggle to right */
    }

    /* Hero Mobile Fixes */
    .hero {
        padding: 120px 20px 60px;
        /* More top padding for header */
        height: auto;
        min-height: auto;
        background-attachment: scroll;
        /* Fix parallax overlapping issues on mobile */
        /* Change gradient to top-down and lighter so image sees through on mobile */
        /* Much more transparent to show image as requested */
        background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 100%), url('images/hero-bg.png');
        background-position: center bottom;
        /* Anchor to bottom where toys likely are */
        background-size: cover;
    }

    .hero-content {
        text-align: center;
        /* Center align for better balance */
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero p {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        /* Center text in full width buttons */
    }

    .hero-info-row {
        flex-direction: column;
        /* Stack info items */
        align-items: center;
        gap: 15px;
        margin-top: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .product-card {
        padding: 30px;
    }

    .stationery-grid {
        grid-template-columns: 1fr;
    }

    /* Make chat widget smaller */
    .btn-chat {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .chat-widget {
        bottom: 20px;
        right: 20px;
    }
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.btn-chat {
    background-color: #25d366;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    /* Enhanced shadow */
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    border: 2px solid white;
    /* Border for contrast against any bg */
}

.btn-chat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
    color: white;
}

.btn-chat i {
    font-size: 1.2rem;
}