/*
Theme Name: Mazinodesign
Theme URI: https://mazinodesign.com
Author: fstudio & DaveOrozco
Description: Tema personalizado para Mazinodesign — Estudio de diseño de interiores en Guadalajara, Jalisco, México.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: mazinodesign
*/
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #C8102E;       /* Rojo editorial */
    --primary-dark: #9B0A1F;        /* Rojo oscuro hover */
    --secondary-color: #0D0D0D;     /* Negro editorial */
    --text-color: #2a2a2a;
    --text-muted: #666666;
    --light-bg: #f4f4f2;
    --white: #ffffff;
    --black: #000000;
    --font-h1: 'Bodoni Moda', serif;
    --font-primary: 'DM Sans', sans-serif;
    --font-secondary: 'DM Sans', sans-serif;
    --font-hero-heavy: 'Oswald', sans-serif;
    --font-hero-editorial: 'Bodoni Moda', serif;
}

h1 {
    font-family: var(--font-h1);
}

h2, h3, h4, h5, h6, .subtitle, .section-subtitle, .hero-subtitle {
    font-family: var(--font-primary);
}

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

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

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.cta .btn {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.cta .btn:hover {
    background-color: transparent;
    color: var(--white);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* WP Admin Bar Fix */
body.admin-bar .header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    body.admin-bar .header {
        top: 46px;
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.logo {
    position: relative;
}

.logo img {
    height: 60px;
    transition: all 0.3s ease;
}

.logo-white {
    display: block;
}

.logo-dark {
    display: none;
}

.header.scrolled .logo img {
    height: 50px;
}

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

.main-nav a {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    position: relative;
}

.header.scrolled .main-nav a {
    color: var(--white);
}

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

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

.main-nav a.active {
    color: var(--primary-color);
}

.header.scrolled .main-nav a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.header.scrolled .mobile-menu-btn span {
    background-color: var(--secondary-color);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-success {
    border-left: 4px solid #28a745;
}

.toast-error {
    border-left: 4px solid var(--primary-color);
}

.toast-info {
    border-left: 4px solid #17a2b8;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 60px;
}



.slide-content h1, .slide-content h2 {
    font-family: var(--font-hero-editorial);
    color: var(--white);
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    max-width: 820px;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: none;
}

.hero-accent {
    color: var(--primary-color);
    font-family: var(--font-hero-editorial);
    font-style: italic;
    font-weight: 500;
    text-transform: none;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

.slider-nav button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav button:hover {
    background: var(--primary-color);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* About Preview Section */
.about-preview {
    padding: 120px 0;
    background-color: var(--white);
    text-align: left;
}

.about-content {
    border-left: 4px solid var(--primary-color);
    padding-left: 40px;
}

.about-content h2 {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
}

.about-content p {
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 0 40px;
    line-height: 1.85;
    color: var(--text-muted);
}

.about-content .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.about-content .stat-item {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-content .stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-content .stat-label {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary-color);
}

/* Portfolio Preview Section */
.portfolio-preview {
    padding: 100px 0;
    background-color: var(--secondary-color);
    text-align: left;
}

.portfolio-preview .section-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.portfolio-preview h2 {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 50px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

.portfolio-item .overlay h3 {
    font-family: var(--font-primary);
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.portfolio-item .overlay p {
    color: var(--primary-color);
    font-size: 1rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--primary-color);
    text-align: left;
}

.cta h2 {
    font-family: var(--font-primary);
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

.cta p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* Footer Styles */
.footer {
    background-color: var(--secondary-color);
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-contact {
    margin-bottom: 40px;
}

.footer-contact p {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-bottom a {
    color: var(--primary-color);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .main-nav a {
        color: var(--secondary-color) !important;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .slide-content {
        padding: 0 30px 80px;
    }

    .slide-content h1,
    .slide-content h2 {
        font-size: 2.8rem;
    }

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

@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }

    .logo img {
        height: 45px;
    }

    .slide-content {
        padding: 0 20px 70px;
    }

    .slide-content h1,
    .slide-content h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .about-content h2,
    .portfolio-preview h2,
    .cta h2 {
        font-size: 2rem;
    }

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

    .portfolio-item {
        height: 250px;
    }
}

/* Page Hero Section */
.page-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.page-hero-content h1 {
    font-family: var(--font-h1);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.05;
}

.page-hero-content p {
    font-size: 1rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
}

/* About Full Section */
.about-full {
    padding: 100px 0;
    background-color: var(--white);
}

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

.about-text h2 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.about-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values {
    padding: 100px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.values h2 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 60px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

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

.value-item {
    padding: 40px 30px;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.value-item h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

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

/* Team Section */
.team {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.team h2 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 60px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.team-member p {
    font-size: 1rem;
    color: var(--primary-color);
}

/* Portfolio Full Section */
.portfolio-full {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    color: var(--white);
}

.portfolio-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--white);
}

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

.contact-info h2,
.contact-form h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 50%;
}

.info-item h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.info-item p {
    font-size: 1rem;
    color: var(--text-color);
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--light-bg);
    color: var(--secondary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

.form-group label {
    display: block;
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.map-section {
    padding: 0;
}

.map-container iframe {
    display: block;
}

/* Shop Section */
.shop-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.product-card {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 15px;
    background: var(--primary-color);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.product-price {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: var(--secondary-color);
    text-align: center;
}

.newsletter h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-family: var(--font-secondary);
    font-size: 1rem;
}

.newsletter-form .btn {
    padding: 15px 30px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 25px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.services-section h2 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 60px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
}

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

.service-item {
    padding: 40px 25px;
    background: var(--light-bg);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-item:hover i {
    color: var(--white);
}

.service-item h3 {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
    line-height: 1.4;
}

.service-item:hover h3 {
    color: var(--white);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.process-section h2 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 60px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
}

.process-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.process-item:hover {
    transform: translateY(-5px);
}

.process-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.process-content h3 {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.process-content p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.testimonials-section h2 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 60px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0;
}

.testimonial-info p {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin: 3px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

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

.stat-item {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-label {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}


/* Responsive for internal pages */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .process-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid-full,
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .stats-grid,
    .services-grid,
    .process-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid-full,
    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }

    .about-content .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .process-item {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 35px;
    right: 35px;
    z-index: 9000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
    color: var(--white);
}

/* Pulse ring animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.4;
    animation: whatsapp-pulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0%   { transform: scale(1);   opacity: 0.4; }
    70%  { transform: scale(1.5); opacity: 0;   }
    100% { transform: scale(1.5); opacity: 0;   }
}