/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
    background: #f4f7fc;
    color: #1a2a3a;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== HEADER / NAV ===== */
header {
    background: #ffffff;
    border-bottom: 2px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 48px;
    width: auto;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b2b40;
}

.logo h1 span {
    color: #d4af37;
}

.logo .motto {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.4px;
    color: #3a5a70;
    font-weight: 400;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
}

.nav-links li a {
    color: #1e3b4f;
    font-weight: 500;
    font-size: 0.95rem;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #d4af37;
    border-bottom-color: #d4af37;
}

.btn-wa {
    background: #25D366;
    border: none;
    padding: 8px 20px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-wa:hover {
    background: #1da85c;
    transform: scale(1.02);
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: #d4af37;
    border: none;
    padding: 12px 32px;
    border-radius: 40px;
    color: #0b2b40;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-primary:hover {
    background: #c09c2a;
    transform: scale(1.02);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #d4af37;
    padding: 10px 30px;
    border-radius: 40px;
    color: #0b2b40;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: #d4af37;
    color: white;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #e8eff8, #d4e2ef);
    padding: 40px 0 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0b2b40;
}

.page-header h1 span {
    color: #d4af37;
}

.page-header p {
    color: #3a5a70;
    font-size: 1.1rem;
    margin-top: 6px;
}

/* ===== HERO ===== */
.hero {
    padding: 50px 0 30px;
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1 1 250px;
}

.hero-content h2 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0b2b40;
}

.hero-content h2 span {
    color: #d4af37;
}

.hero-content p {
    font-size: 1.1rem;
    color: #2d4a5e;
    margin: 20px 0 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1 1 280px;
    background-image: linear-gradient(145deg, #e2eaf3, #c8d6e6);
    border-radius: 60px 20px 60px 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 20px 30px -10px rgba(0,50,80,0.15);
}

.hero-image img {
    width: 120px;
    margin: 0 auto 12px;
}

.hero-badge {
    background: #0b2b40;
    color: #d4af37;
    padding: 6px 24px;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 8px;
}

/* ===== FEATURES ===== */
.features {
    padding: 30px 0 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.feature-item {
    background: white;
    padding: 28px 16px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: 0.25s;
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.12);
    border-color: #d4af37;
}

.feature-item i {
    font-size: 2.4rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.feature-item p {
    color: #3a5a70;
    font-size: 0.9rem;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
    padding: 30px 0 50px;
}

.testimonial-box {
    background: white;
    padding: 40px 36px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    border-left: 5px solid #d4af37;
}

.testimonial-box i {
    font-size: 2.4rem;
    color: #d4af37;
    margin-bottom: 12px;
}

.testimonial-box blockquote {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a2a3a;
    margin-bottom: 10px;
}

.testimonial-box cite {
    color: #3a5a70;
    font-style: normal;
}

/* ===== ABOUT ===== */
.about-section {
    padding: 50px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.about-text h2 span {
    color: #d4af37;
}

.about-text p {
    margin-bottom: 16px;
    color: #1f3d52;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.about-highlights span {
    background: #eef4f9;
    padding: 6px 18px;
    border-radius: 40px;
    font-weight: 500;
    border-left: 3px solid #d4af37;
}

.about-highlights span i {
    color: #d4af37;
    margin-right: 6px;
}

.about-image {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #d4af37;
    color: #0b2b40;
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 700;
}

/* ===== TEAM ===== */
.team-section {
    padding: 30px 0 50px;
    background: white;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 32px;
}

.section-title span {
    color: #d4af37;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 20px;
    border-radius: 30px;
    background: #f8faff;
    transition: 0.25s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.team-card img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 14px;
    border: 4px solid #d4af37;
}

.team-card h4 {
    font-size: 1.1rem;
}

.team-card p {
    color: #3a5a70;
}

/* ===== SERVICES ===== */
.services-section {
    padding: 50px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.service-card {
    background: white;
    padding: 32px 24px;
    border-radius: 30px;
    text-align: center;
    transition: 0.25s;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(212, 175, 55, 0.12);
    border-color: #d4af37;
}

.service-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 14px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.service-card p {
    color: #3a5a70;
}

/* ===== SHOP ===== */
.shop-section {
    padding: 40px 0 60px;
}

.shop-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-bottom: 32px;
    justify-content: center;
}

.shop-categories button {
    background: transparent;
    border: 1.5px solid #cbdae6;
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 500;
    color: #1e3b4f;
    cursor: pointer;
    transition: 0.15s;
    font-size: 0.95rem;
}

.shop-categories button.active,
.shop-categories button:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #0b2b40;
    font-weight: 600;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 28px;
    padding: 18px 14px 22px;
    text-align: center;
    transition: 0.25s;
    border: 1px solid #eef4f9;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card:hover {
    transform: scale(1.02);
    border-color: #d4af37;
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.12);
}

.product-image {
    width: 100%;
    height: 160px;
    background: #eaf0f7;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 12px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h4 {
    font-size: 1rem;
    margin: 6px 0 4px;
}

.product-card .price {
    font-weight: 700;
    color: #d4af37;
    font-size: 1.1rem;
    margin: 4px 0 12px;
}

.product-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-detail {
    background: transparent;
    border: 1.5px solid #d4af37;
    padding: 6px 18px;
    border-radius: 40px;
    color: #0b2b40;
    font-weight: 600;
    font-size: 0.8rem;
    transition: 0.2s;
}

.btn-detail:hover {
    background: #d4af37;
    color: white;
}

.whatsapp-small {
    background: #25D366;
    border: none;
    color: white;
    padding: 6px 16px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.whatsapp-small:hover {
    background: #1da85c;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail-section {
    padding: 50px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    padding: 40px;
    border-radius: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.product-detail-image {
    border-radius: 30px;
    overflow: hidden;
    background: #eaf0f7;
}

.product-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.product-detail-info h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin: 12px 0 16px;
}

.detail-desc {
    color: #1f3d52;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.detail-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.detail-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1f3d52;
}

.detail-features span i {
    color: #d4af37;
}

.detail-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0 12px;
    flex-wrap: wrap;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.sale-price {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.2rem;
}

/* If there's no sale, just show the price normally */
.price .regular-price {
    color: #0b2b40;
    font-weight: 700;
    font-size: 1.2rem;
}

/* ===== CONTACT ===== */
.contact-section {
    padding: 50px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2,
.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.contact-info h2 span,
.contact-form h2 span {
    color: #d4af37;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
}

.contact-item i {
    font-size: 1.6rem;
    color: #d4af37;
    width: 44px;
    text-align: center;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.contact-item p {
    color: #3a5a70;
}

.contact-social {
    margin-top: 30px;
}

.contact-social h4 {
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 18px;
    font-size: 1.8rem;
}

.social-links a {
    color: #1e3b4f;
    transition: 0.2s;
}

.social-links a:hover {
    color: #d4af37;
    transform: scale(1.1);
}

/* ===== FORM ===== */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 18px;
    border: 1.5px solid #dce6ef;
    border-radius: 50px;
    font-size: 1rem;
    background: #fafcff;
    outline: none;
    transition: 0.2s;
    width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #d4af37;
    background: white;
}

.contact-form textarea {
    border-radius: 24px;
    min-height: 80px;
    resize: vertical;
}

.contact-form .form-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.contact-form .form-row > * {
    flex: 1 1 160px;
}

.form-note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #3a5a70;
}

/* ===== MAP ===== */
.map-section {
    padding: 20px 0 50px;
}

.map-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 24px;
}

.map-section h2 span {
    color: #d4af37;
}

.map-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    height: 320px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== FOOTER ===== */
footer {
    background: #0b232f;
    color: #c6dae8;
    padding: 32px 0 16px;
    border-radius: 40px 40px 0 0;
    margin-top: 20px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo h2 {
    font-size: 1.6rem;
    color: white;
}

.footer-logo h2 span {
    color: #d4af37;
}

.footer-logo p {
    color: #9bb7cc;
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #c6dae8;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-social {
    display: flex;
    gap: 16px;
    font-size: 1.4rem;
}

.footer-social a {
    color: #c6dae8;
    transition: 0.2s;
}

.footer-social a:hover {
    color: #d4af37;
    transform: scale(1.1);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 16px;
    font-size: 0.9rem;
    color: #8aaec4;
}

.footer-bottom i {
    color: #d4af37;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .about-grid,
    .contact-grid,
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h2 {
        font-size: 2.4rem;
    }

    .navbar {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links {
        justify-content: center;
    }

    .logo a {
        justify-content: center;
    }

    .logo .motto {
        text-align: center;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 500px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-detail-image img {
        height: 250px;
    }
}
/* ===== Additional Styles for Beefed-Up Index ===== */

/* Hero Tag */
.hero-tag {
    display: inline-block;
    background: #d4af37;
    color: #0b2b40;
    padding: 4px 18px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    margin: 20px 0 28px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: #3a5a70;
}

/* Hero Rating */
.hero-rating {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #3a5a70;
}

.hero-rating i {
    color: #d4af37;
}

.hero-rating span {
    margin-left: 6px;
}

/* Quick Features */
.quick-features {
    padding: 30px 0 50px;
    background: #f8faff;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    background: #d4af37;
    color: #0b2b40;
    padding: 4px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0b2b40;
}

.section-header h2 span {
    color: #d4af37;
}

.section-header p {
    color: #3a5a70;
    max-width: 600px;
    margin: 8px auto 0;
}

/* About Preview */
.about-preview {
    padding: 60px 0;
    background: white;
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-preview-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.about-preview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #0b2b40;
    color: white;
    padding: 16px 24px;
    border-radius: 20px;
    text-align: center;
}

.experience-badge span {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #d4af37;
}

.experience-badge p {
    font-size: 0.85rem;
    margin: 0;
}

.about-preview-content h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.about-preview-content h2 span {
    color: #d4af37;
}

.about-preview-content p {
    color: #1f3d52;
    margin-bottom: 16px;
}

.about-preview-list {
    list-style: none;
    margin: 20px 0 28px;
}

.about-preview-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-preview-list li i {
    color: #d4af37;
}

/* Services Preview */
.services-preview {
    padding: 60px 0;
    background: #f8faff;
}

.services-preview .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.services-preview .service-card {
    background: white;
    padding: 32px 24px;
    border-radius: 30px;
    text-align: center;
    transition: 0.25s;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.services-preview .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(212, 175, 55, 0.12);
    border-color: #d4af37;
}

.service-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 14px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.service-card p {
    color: #3a5a70;
    margin-bottom: 16px;
}

.service-link {
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.service-link:hover {
    color: #c09c2a;
}

/* Shop Preview */
.shop-preview {
    padding: 60px 0;
    background: white;
}

.shop-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.shop-preview-card {
    background: #f8faff;
    border-radius: 28px;
    padding: 20px;
    text-align: center;
    transition: 0.25s;
    border: 1px solid #eef4f9;
}

.shop-preview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
    border-color: #d4af37;
}

.shop-preview-image {
    width: 100%;
    height: 160px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #eaf0f7;
}

.shop-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-preview-card h4 {
    font-size: 1rem;
    margin: 8px 0 4px;
}

.shop-preview-card p {
    color: #3a5a70;
    font-size: 0.9rem;
}

.shop-preview-price {
    display: block;
    font-weight: 700;
    color: #d4af37;
    font-size: 1.2rem;
    margin: 8px 0 16px;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background: #f8faff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.08);
}

.testimonial-stars {
    color: #d4af37;
    margin-bottom: 12px;
}

.testimonial-card p {
    color: #1f3d52;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #3a5a70;
}

/* Why Choose Us */
.why-choose {
    padding: 60px 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-choose-content h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.why-choose-content h2 span {
    color: #d4af37;
}

.why-choose-content p {
    color: #3a5a70;
    margin-bottom: 24px;
}

.why-choose-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.why-icon {
    width: 44px;
    height: 44px;
    background: #f0f4fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    font-size: 1.2rem;
    color: #d4af37;
}

.why-feature h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.why-feature p {
    font-size: 0.85rem;
    color: #3a5a70;
}

.why-choose-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.why-choose-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.why-choose-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #0b2b40;
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-choose-badge i {
    color: #d4af37;
    font-size: 1.2rem;
}

/* Appointment CTA */
.appointment-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #0b2b40, #1a3f5a);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.cta-content h2 span {
    color: #d4af37;
}

.cta-content p {
    font-size: 1.1rem;
    color: #c6dae8;
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-buttons .btn-primary {
    background: #d4af37;
    color: #0b2b40;
}

.cta-buttons .btn-primary:hover {
    background: #c09c2a;
}

.cta-buttons .btn-wa {
    background: #25D366;
}

.cta-buttons .btn-wa:hover {
    background: #1da85c;
}

.cta-contact {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1.1rem;
}

.cta-contact i {
    color: #d4af37;
    margin-right: 8px;
}

/* ===== FOOTER WITH COLUMNS ===== */
.main-footer {
    background: #0b232f;
    color: #c6dae8;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-brand img {
    height: 44px;
    width: auto;
}

.footer-brand h2 {
    font-size: 1.6rem;
    color: white;
}

.footer-brand h2 span {
    color: #d4af37;
}

.footer-col p {
    color: #9bb7cc;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.footer-col h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #d4af37;
    border-radius: 4px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #9bb7cc;
    text-decoration: none;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: #d4af37;
}

.footer-col ul li a i {
    font-size: 0.6rem;
    color: #d4af37;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9bb7cc;
    margin-bottom: 10px;
}

.footer-contact li i {
    color: #d4af37;
    width: 20px;
}

.footer-contact li a {
    color: #9bb7cc;
    text-decoration: none;
}

.footer-contact li a:hover {
    color: #d4af37;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c6dae8;
    font-size: 1.1rem;
    transition: 0.2s;
}

.footer-social a:hover {
    background: #d4af37;
    color: #0b2b40;
    transform: scale(1.05);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #8aaec4;
}

.footer-tagline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-tagline i {
    color: #d4af37;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .about-preview-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-stats {
        gap: 16px;
    }

    .cta-contact {
        gap: 16px;
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .shop-preview-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* ===== HERO SECTION WITH BACKGROUND IMAGE ===== */
.hero {
    padding: 0;
    background-image: url('../images/clinic.jpg');

}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    min-height: 500px;
    padding: 10px 1 px;
}

.hero-content {
    flex: 1 1 450px;
    padding: 20px 0;
}

.hero-content .hero-tag {
    display: inline-block;
    background: #d4af37;
    color: #0b2b40;
    padding: 4px 18px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.hero-content h2 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0b2b40;
}

.hero-content h2 span {
    color: #d4af37;
}

.hero-content p {
    font-size: 1.1rem;
    color: #2d4a5e;
    margin: 20px 0 30px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin: 20px 0 28px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: #3a5a70;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== HERO IMAGE WITH BACKGROUND ===== */
.hero-image-wrapper {
    flex: 1 1 400px;
    position: relative;
    border-radius: 60px 20px 60px 20px;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 20px 30px -10px rgba(0,50,80,0.15);
    overflow: hidden;
}

.hero-image-wrapper .hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(11, 43, 64, 0.85));
    text-align: center;
}

.hero-image-wrapper .hero-image-overlay .hero-badge {
    background: #d4af37;
    color: #0b2b40;
    padding: 6px 24px;
    border-radius: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    font-size: 1.1rem;
}

.hero-image-wrapper .hero-image-overlay p {
    margin-top: 6px;
    font-weight: 500;
    color: #ffffff;
    font-size: 1rem;
}

.hero-image-wrapper .hero-image-overlay .hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.9rem;
}

.hero-image-wrapper .hero-image-overlay .hero-rating i {
    color: #d4af37;
}

.hero-image-wrapper .hero-image-overlay .hero-rating span {
    color: #e0e0e0;
}

/* ===== HERO WITH IMG TAG (alternative) ===== */
.hero-image {
    flex: 1 1 400px;
    position: relative;
    border-radius: 60px 20px 60px 20px;
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 20px 30px -10px rgba(0,50,80,0.15);
    background: #e2eaf3;
}

.hero-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.hero-image .hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(11, 43, 64, 0.85));
    text-align: center;
}

.hero-image .hero-image-overlay .hero-badge {
    background: #d4af37;
    color: #0b2b40;
    padding: 6px 24px;
    border-radius: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    font-size: 1.1rem;
}

.hero-image .hero-image-overlay p {
    margin-top: 6px;
    font-weight: 500;
    color: #ffffff;
    font-size: 1rem;
}

.hero-image .hero-image-overlay .hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.9rem;
}

.hero-image .hero-image-overlay .hero-rating i {
    color: #d4af37;
}

.hero-image .hero-image-overlay .hero-rating span {
    color: #e0e0e0;
}

/* ===== PAGE-SPECIFIC HERO BACKGROUNDS ===== */
.hero-home .hero-image-wrapper {
    background-image: url('../images/child.jpg');
}

.hero-about .hero-image-wrapper {
    background-image: url('../images/hero/about-hero.jpg');
}

.hero-services .hero-image-wrapper {
    background-image: url('../images/hero/services-hero.jpg');
}

.hero-shop .hero-image-wrapper {
    background-image: url('../images/child.jpg');
}

.hero-contact .hero-image-wrapper {
    background-image: url('../images/hero/contact-hero.jpg');
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-image-wrapper,
    .hero-image {
        min-height: 300px;
    }
}