/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* UPDATED COLOR PALETTE */
    --black: #000000;
    --gold: #D4AF37;
    --off-white: #F8F8F8;
    --rose-beige: #EADBC8;
    --dark-gold: #B8941F;
    --light-gold: #E6C158;
    --dark-gray: #2A2A2A;
    --medium-gray: #666666;
    --light-gray: #E0E0E0;
    --pure-white: #FFFFFF;

    /* Design Tokens */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.2);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--off-white);
    overflow-x: hidden;
    font-weight: 400;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--black);
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    /* FIXED: Changed from right to center */
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    /* FIXED: Centered the underline */
    width: 80px;
    height: 4px;
    background: none;
    /* FIXED: Added gradient background */
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    color: var(--black);
}

h4 {
    font-size: 1.4rem;
    color: var(--dark-gray);
}

p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    font-weight: 400;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

a:hover {
    color: var(--dark-gold);
}

/* ===== LAYOUT & CONTAINERS ===== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    /* FIXED: Changed from right to center */
    margin-bottom: 30px;
    width: 100%;
}

.section-subtitle {
    text-align: center;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    font-weight: 400;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-gold), var(--gold));
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--black);
    box-shadow: var(--shadow);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--light-gold), var(--gold));
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(234, 219, 200, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

/* Logo Image Container */
.logo-image-container {
    width: 70px;
    height: 70px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--rose-beige);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    transition: var(--transition);
}

.logo-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 24px;
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-primary {
    font-weight: 800;
    font-size: 24px;
    color: var(--black);
    letter-spacing: -0.5px;
}

.logo-secondary {
    font-size: 12px;
    color: var(--medium-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 35px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    border-radius: 2px;
    transition: var(--transition);
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--black);
    font-weight: 600;
    position: relative;
    padding: 8px 0;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--pure-white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 180px 0 100px;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/background1.jpg');
    /* FIXED: Removed space from filename */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(212, 175, 55, 0.2) 100%);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    padding-right: 40px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 30px;
    color: var(--pure-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.hero-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
    border: 3px solid var(--gold);
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--pure-white);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid var(--gold);
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-image:hover {
    transform: scale(1.05);
}

.about-text {
    padding-left: 40px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: var(--rose-beige);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--gold);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--dark-gold);
}

.feature-icon {
    font-size: 28px;
    color: var(--dark-gold);
    margin-bottom: 15px;
}

/* ===== FOUNDER SECTION ===== */
.founder {
    background: linear-gradient(135deg, var(--rose-beige) 0%, rgba(234, 219, 200, 0.8) 100%);
    padding: 100px 0;
}

.founder-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
    background: var(--pure-white);
    border-radius: var(--border-radius);
    padding: 60px;
    box-shadow: var(--shadow);
}

.founder-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid var(--gold);
}

.founder-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.founder-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
}

.founder-info h3 {
    color: var(--gold);
    margin-bottom: 10px;
}

.founder-title {
    color: var(--medium-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.founder-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--black);
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    margin: 30px 0;
    line-height: 1.6;
}

.founder-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 18px;
    transition: var(--transition);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #005582);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
}

.social-link.instagram {
    background: linear-gradient(135deg, #E4405F, #C13584);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-link.facebook {
    background: linear-gradient(135deg, #4267B2, #365899);
}

.social-link.email {
    background: linear-gradient(135deg, #EA4335, #D14836);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
}

/* ===== PRODUCTS SECTION ===== */
.products {
    background: var(--pure-white);
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.category-tab {
    padding: 14px 30px;
    background: var(--rose-beige);
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.category-tab.active {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border-color: transparent;
    box-shadow: var(--shadow);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

/* Products loading state */
.products-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--light-gray);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.product-card {
    background: var(--pure-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(234, 219, 200, 0.5);
    position: relative;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--gold);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image-container {
    height: 250px;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid var(--gold);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-content {
    padding: 30px;
    position: relative;
    z-index: 1;
}

.product-category {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--black);
}

.product-description {
    color: var(--medium-gray);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    margin-top: 15px;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(184, 148, 31, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 30px;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay h4 {
    color: var(--black);
    margin-bottom: 15px;
}

.product-overlay p {
    color: rgba(0, 0, 0, 0.8);
    text-align: center;
    margin-bottom: 25px;
}

.section-cta {
    text-align: center;
    margin-top: 80px;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--rose-beige);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 70px;
}

.service-card {
    background: var(--pure-white);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(234, 219, 200, 0.5);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--rose-beige), var(--off-white));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--gold);
    font-size: 32px;
    box-shadow: var(--shadow-light);
    border: 2px solid var(--gold);
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--rose-beige) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.contact-item {
    display: flex;
    margin-bottom: 35px;
    align-items: flex-start;
    gap: 25px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.contact-social {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.contact-social .social-link {
    width: 50px;
    height: 50px;
    font-size: 20px;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: var(--pure-white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(234, 219, 200, 0.5);
}

.contact-form h3 {
    margin-bottom: 40px;
    text-align: center;
    color: var(--black);
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 24px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
    background: var(--rose-beige);
    color: var(--black);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    background: var(--pure-white);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.05);
}

.error-message {
    color: #ff4444;
    font-size: 14px;
    margin-top: 8px;
    font-weight: 500;
}

.form-note {
    font-size: 14px;
    color: var(--medium-gray);
    margin-top: 30px;
    text-align: center;
    font-style: italic;
}

.form-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-left: 4px solid #28a745;
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 30px;
    text-align: center;
}

.form-success i {
    color: #28a745;
    font-size: 36px;
    margin-bottom: 15px;
}

.form-success p {
    color: #155724;
    margin-bottom: 0;
    font-weight: 600;
}

/* ===== MAP CONTAINER ===== */
.map-container {
    margin-top: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(234, 219, 200, 0.5);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--black), var(--dark-gray));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    text-align: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shine 3s infinite;
}

.map-placeholder i {
    font-size: 80px;
    margin-bottom: 30px;
    color: var(--gold);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.map-placeholder .btn {
    margin-top: 30px;
    z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: rgba(248, 248, 248, 0.8);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 30px;
}

.footer-description {
    margin-bottom: 30px;
    line-height: 1.8;
    color: rgba(248, 248, 248, 0.7);
}

.footer-payment {
    margin-top: 30px;
}

.footer-payment p {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.payment-methods span {
    /* FIXED: Changed from .payment-method to span */
    background: rgba(212, 175, 55, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.payment-methods span:hover {
    /* FIXED: Changed from .payment-method to span */
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: var(--gold);
    margin-bottom: 40px;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: rgba(248, 248, 248, 0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a::before {
    content: '→';
    color: var(--gold);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--off-white);
    padding-left: 10px;
}

.footer-links a:hover::before {
    color: var(--light-gold);
}

.footer-address p {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    color: rgba(248, 248, 248, 0.7);
    gap: 15px;
}

.footer-address i {
    color: var(--gold);
    font-size: 18px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 50px;
    text-align: center;
    font-size: 15px;
    color: rgba(248, 248, 248, 0.6);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin-bottom: 15px;
}

.mode-toggle {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.mode-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--light-gold);
    transform: translateY(-3px);
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: var(--shadow-hover);
    z-index: 100;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: scale(1.2) rotate(10deg);
    animation: none;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--off-white), var(--rose-beige));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 5px solid rgba(234, 219, 200, 0.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 30px;
}

.loader-text {
    font-size: 18px;
    color: var(--black);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-content {
        gap: 60px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .founder-content {
        grid-template-columns: 350px 1fr;
        gap: 50px;
        padding: 50px;
    }
}

@media (max-width: 992px) {

    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-image-container {
        transform: perspective(1000px) rotateY(0deg);
        max-width: 600px;
        margin: 0 auto;
    }

    .about-text {
        padding-left: 0;
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 40px auto 0;
    }

    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-image-container {
        max-width: 400px;
        margin: 0 auto;
    }

    .founder-social {
        justify-content: center;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--pure-white);
        box-shadow: var(--shadow-hover);
        padding: 100px 40px 40px;
        transition: var(--transition);
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .nav-link {
        font-size: 18px;
    }

    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }

    .logo-image-container {
        width: 60px;
        height: 60px;
    }

    .logo-primary {
        font-size: 20px;
    }

    .hero {
        padding: 150px 0 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section {
        padding: 80px 0;
    }

    .founder-content {
        padding: 40px;
    }

    .contact-form {
        padding: 40px;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 30px;
        bottom: 30px;
        right: 30px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }

    .logo-image-container {
        width: 50px;
        height: 50px;
    }

    .logo-primary {
        font-size: 18px;
    }

    .logo-secondary {
        font-size: 10px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .category-tabs {
        gap: 10px;
    }

    .category-tab {
        padding: 12px 24px;
        font-size: 14px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        gap: 40px;
    }
}

/* ===== LOW BANDWIDTH MODE ===== */
.low-bandwidth .hero-image-container::before,
.low-bandwidth .about-image-container::before,
.low-bandwidth .founder-image-container::before,
.low-bandwidth .product-image-container::before,
.low-bandwidth .whatsapp-float,
.low-bandwidth .social-link,
.low-bandwidth .map-placeholder::before {
    display: none !important;
}

.low-bandwidth .hero-background {
    background: var(--black) !important;
}

.low-bandwidth .hero-image,
.low-bandwidth .about-image,
.low-bandwidth .founder-image,
.low-bandwidth .product-image {
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medium-gray);
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

.low-bandwidth .product-card,
.low-bandwidth .service-card,
.low-bandwidth .feature-item {
    box-shadow: none;
    border: 1px solid var(--light-gray);
}

.low-bandwidth .contact-form {
    box-shadow: none;
    border: 1px solid var(--light-gray);
}

.low-bandwidth .map-container {
    box-shadow: none;
    border: 1px solid var(--light-gray);
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--rose-beige);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--dark-gold), var(--gold));
}

/* ===== ANIMATIONS ===== */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}