/* CSS Design System */
:root {
    /* Colors - Derived specifically from Logo */
    --primary-color: #ffffff;
    --secondary-color: #f9f9f9;
    --accent-color: #c19c5c;
    /* Logo Gold */
    --accent-hover: #a6854d;
    --accent-light: #fef8eb;
    --accent-gradient: linear-gradient(135deg, #d4af37 0%, #c19c5c 100%);

    --text-primary: #2d3436;
    /* Logo Charcoal */
    --text-secondary: #636e72;
    --text-light: #b2bec3;

    --white: #ffffff;
    --black: #1a1a1a;

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 10px 25px rgba(193, 156, 92, 0.2);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-heading);
    text-align: center;
}

.btn:active {
    transform: scale(0.95);
}

/* Buttons */
.btn-primary {
    background: var(--accent-gradient) !important;
    color: var(--white) !important;
    border: none !important;
    box-shadow: var(--shadow-gold) !important;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-3px) scale(1.02);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.hero .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header-top {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

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

.top-contact {
    display: flex;
    gap: 25px;
}

.top-contact a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    color: var(--white);
    opacity: 0.8;
}

.header-main {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

header.scrolled .header-top {
    margin-top: -40px;
    opacity: 0;
}

header.scrolled .header-main {
    padding: 10px 0;
    box-shadow: var(--shadow-soft);
    background-color: var(--white);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

header.scrolled .logo-icon {
    height: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-name .accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sub-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 2px;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.cta-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-sm {
    padding: 10px 25px;
    font-size: 0.85rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../assets/images/hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: left;
}

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

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1.4s ease;
}

/* About Section */
.about {
    padding: var(--section-padding);
}

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

.about-content h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Categories Section */
.categories {
    padding: var(--section-padding);
    background-color: var(--secondary-color);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow-soft);
}

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

.category-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.category-icon i {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Featured Products */
.featured {
    padding: var(--section-padding);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.product-img {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.product-info {
    padding: 30px;
    text-align: left;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.product-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Why Choose Us */
.why-us {
    padding: var(--section-padding);
    background-color: var(--white);
    position: relative;
}

.why-us .section-title h2 {
    color: var(--text-primary);
}

.why-us .section-title h2::after {
    background-color: var(--accent-color);
}

.why-us .section-title p {
    color: var(--text-secondary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-item {
    text-align: center;
    padding: 50px 35px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow-soft);
}

.why-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.why-item i {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.why-item h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Brands Section */
.brands {
    padding: var(--section-padding);
    background-color: var(--white);
    overflow: hidden;
    position: relative;
}

.brands .section-title {
    margin-bottom: 60px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.brand-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

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

.brand-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
    opacity: 0.7;
    filter: grayscale(0.3);
}

.brand-card:hover .brand-logo img {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.1);
}


/* Team Section */
.team {
    padding: var(--section-padding);
    background-color: var(--secondary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

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

.team-img {
    width: 100px;
    height: 100px;
    background: var(--accent-light);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.team-card:hover .team-img {
    background: var(--accent-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-info span {
    color: var(--accent-color);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

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

.team-social a {
    width: 35px;
    height: 35px;
    background: #f1f2f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.team-social a:hover {
    background: var(--accent-color);
    color: var(--white);
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: var(--secondary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    background: var(--white);
    padding: 15px;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
}

.map {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-soft);
}

/* Footer */
footer {
    padding: 80px 0 30px;
    background-color: var(--white);
    color: var(--text-primary);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about p {
    margin: 20px 0;
    color: #636e72;
}

/* Footer Logo - Clean and Minimal */
.footer-about .logo-text span {
    color: var(--text-primary);
}

.footer-about .logo-text b {
    color: var(--accent-color);
}

/* Footer Tagline */
.footer-tagline {
    margin-bottom: 20px;
}

.tagline-main {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tagline-location {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.footer-links h4 {
    color: var(--text-primary);
    margin-bottom: 25px;
}

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

.footer-links ul li a {
    color: #636e72;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-primary);
}

.social-links a:hover {
    background-color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #636e72;
    font-size: 0.9rem;
}

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

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .header-top {
        display: none;
        /* Hide top bar on mobile for cleaner look */
    }

    .header-main {
        padding: 10px 0;
    }

    .logo-icon {
        height: 45px;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .sub-text {
        font-size: 0.6rem;
    }

    header .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        gap: 20px;
        text-align: center;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    header .nav-links.active {
        display: flex;
        animation: slideDown 0.4s ease forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

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

    .nav-links a::after {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .cta-header .btn-primary {
        display: none;
        /* Hide CTA button on very small header to avoid crowding, or keep it if space allows */
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

/* Client Logos Section */
.clients {
    padding: var(--section-padding);
    background-color: var(--secondary-color);
    overflow: hidden;
}

.clients-wrapper {
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.clients-track {
    display: flex;
    width: max-content;
    gap: 100px;
}

.client-item {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Reviews Section - Enhanced Premium Look */
.reviews {
    padding: var(--section-padding);
    background-color: #fcfcfc;
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '"';
    position: absolute;
    top: 50px;
    right: 10%;
    font-size: 20rem;
    color: rgba(193, 156, 92, 0.03);
    font-family: serif;
    line-height: 1;
}

.reviews-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.rating-score {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.rating-stars {
    color: #f1c40f;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.rating-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-text i {
    color: #4285F4;
    font-size: 1.4rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(193, 156, 92, 0.1);
    border-color: rgba(193, 156, 92, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.review-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-gold);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.author-verified {
    color: #00b894;
    font-size: 0.8rem;
}

.card-stars {
    color: #f1c40f;
    font-size: 0.75rem;
}

.review-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.review-card::after {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 30px;
    right: 40px;
    font-size: 2.5rem;
    color: rgba(193, 156, 92, 0.05);
}

.google-icon-box {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4285F4;
    font-size: 1.1rem;
}

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

@media (max-width: 768px) {
    .reviews-summary {
        margin-bottom: 40px;
    }

    .rating-score {
        font-size: 2.5rem;
    }

    .review-card {
        padding: 30px;
    }
}