:root {
    --primary-color: #002147;
    /* Deep Navy */
    --secondary-color: #F8F4E3;
    /* Cream / Soft Beige */
    --tertiary-color: #C5A059;
    /* Muted Gold */
    --text-color: #333333;
    --light-text: #666666;
    --white: #ffffff;
    --bg-light: #FAF9F6;
    --transition: all 0.3s ease;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.brand-font {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--tertiary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-call {
    background-color: #FFB300;
    /* Bright Amber */
    color: var(--primary-color) !important;
    font-weight: 700;
}

.btn-call:hover {
    background-color: #FFA000;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--tertiary-color);
}

.nav-links a.active {
    color: var(--primary-color);
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Floating Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}


.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.1);
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-phone {
    background-color: var(--primary-color);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 80px 0 30px;
    color: var(--primary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--text-color);
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo img {
        height: 60px;
    }
}

/* Hero Slider */
.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .logo img {
        height: 50px;
    }

    .footer-logo {
        height: 40px;
    }
}

/* Background Classes */
.bg-hero-1 {
    background-image: url('../images/slider1.png');
}

.bg-hero-2 {
    background-image: url('../images/slider2.png');
}

.bg-hero-3 {
    background-image: url('../images/slider3.png');
}

.bg-storefront {
    background-image: url('../images/storefront.jpg');
}

.bg-page-hero {
    background-image: url('../images/hero.png');
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* Utility Classes */
.flex-social {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.cta-banner-btn {
    background-color: var(--tertiary-color);
}

.full-width {
    width: 100%;
}

.bg-white {
    background-color: white;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Reviews Section */
.reviews-section {
    background-color: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-user-img {
    width: 50px;
    height: 50px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
}

.review-meta {
    font-size: 0.8rem;
    color: #666;
}

.stars {
    color: #fbbc05;
    /* Google Gold */
    margin-bottom: 15px;
}

.google-rating {
    text-align: center;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.google-icon {
    width: 220px;
    height: auto;
    margin-right: 15px;
}

.google-rating strong {
    font-size: 1.4rem;
    color: var(--primary-color);
}

/* Map Section */
.home-map {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Page Components - Consolidated from internal styles */

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 33, 71, 0.8), rgba(0, 33, 71, 0.8)), url('../images/hero3.jpg') center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
}

/* Story Section */
.about-story {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.story-text {
    flex: 1.5;
    min-width: 300px;
}

.story-img {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.value-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.value-card i {
    font-size: 3rem;
    color: var(--tertiary-color);
    margin-bottom: 25px;
}

.value-card:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

/* Craftsmanship Section */
.craft-section {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap-reverse;
    background-color: var(--primary-color);
    color: white;
    padding: 0;
    overflow: hidden;
}

.craft-text {
    flex: 1;
    padding: 80px;
    min-width: 300px;
}

.craft-text h2 {
    color: white;
    margin-bottom: 20px;
}

.craft-img {
    flex: 1;
    min-width: 300px;
    align-self: stretch;
}

.craft-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(rgba(0, 33, 71, 0.9), rgba(0, 33, 71, 0.9)), url('../images/slider3.png') center/cover;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-banner h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-banner p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    padding-bottom: 25px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.product-img {
    height: 250px;
    background-color: #eee;
    margin-bottom: 20px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    margin-bottom: 10px;
    padding: 0 15px;
}

.product-card p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 20px;
    padding: 0 15px;
}

/* Teaser Grid */
.teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.teaser-item i {
    font-size: 2.5rem;
    color: var(--tertiary-color);
    margin-bottom: 20px;
}

/* Welcome Section */
.welcome-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.welcome-text {
    flex: 1;
    min-width: 300px;
}

.welcome-img {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Enhanced Responsive Overrides */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .about-story {
        gap: 30px;
    }

    .craft-text {
        padding: 60px 20px;
        text-align: center;
    }

    .craft-img {
        height: 300px;
    }

    .cta-banner {
        padding: 60px 20px;
    }

    .cta-banner h2 {
        font-size: 1.8rem;
    }

    .welcome-flex {
        gap: 30px;
        text-align: center;
    }
}

/* Page Specific Components */

/* Products Page */
.filter-bar {
    background: var(--bg-light);
    padding: 20px 0;
    margin-bottom: 50px;
    text-align: center;
}

.filter-btn {
    background: white;
    border: 1px solid #ddd;
    padding: 10px 25px;
    margin: 5px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.product-highlight {
    background-color: var(--secondary-color);
    margin-top: 80px;
    padding: 60px 0;
}

/* Why Choose Us Page */
.benefit-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

.benefit-card:nth-child(even) {
    flex-direction: row-reverse;
}

.benefit-img {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.benefit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-text {
    flex: 1;
    min-width: 300px;
}

.benefit-text i {
    font-size: 3rem;
    color: var(--tertiary-color);
    margin-bottom: 20px;
}

.benefit-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}





/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    background: var(--primary-color);
    color: white;
    padding: 50px;
    border-radius: 20px;
}

.contact-info h2 {
    color: white;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--tertiary-color);
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.form-group textarea {
    height: 150px;
}

.map-section {
    margin-top: 80px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
}

/* Mobile Adjustments for Benefits and Contact */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefit-card {
        gap: 30px;
        margin-bottom: 60px;
    }

    .benefit-card:nth-child(even) {
        flex-direction: row;
        /* Stack normally on mobile */
    }

    .benefit-img {
        height: 300px;
    }
}

@media (max-width: 768px) {

    .contact-info,
    .contact-form {
        padding: 40px 20px;
    }

    .benefit-text h2 {
        font-size: 1.8rem;
    }

    /* Global Mobile Fixes */
    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    .page-header {
        padding: 80px 0;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    /* Ensure images in grids don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }
}