/* CSS Variables & Reset */
:root {
  --bg-main: #F4EFEA;
  --bg-secondary: #E9DCCF;
  --text-dark: #111111;
  --text-gray: #555555;
  --white: #FFFFFF;
  --placeholder-gray: #C4C4C4;
  --btn-dark: #000000;
  --border-color: #D1C7BD;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* KOTAK UTAMA (CONTAINER) */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5px;
}

.section-padding {
  padding: 10px 0;
}

/* Reusable Components */
.btn {
  display: inline-block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-black {
  background-color: var(--btn-dark);
  color: var(--white);
}

.btn-white {
  background-color: var(--white);
  color: var(--text-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

.image-placeholder {
  background-color: var(--placeholder-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 100%;
  height: 100%;
  position: relative;
}

.image-placeholder svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
  opacity: 0.5;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .subtitle {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  font-family: 'Playfair Display', serif, sans-serif;
  letter-spacing: -0.5px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 550px;
  margin-bottom: 80px;
}

.hero .image-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 10;
  width: 100%;
  max-width: 750px;
  padding: 20px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 15px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Expertise Section */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 30px;
}

.expertise-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.expertise-card .img-wrapper {
  height: 180px;
}

.expertise-card .content {
  padding: 25px;
}

.expertise-card.large {
  display: flex;
  flex-direction: row;
}

.expertise-card.large .img-wrapper {
  width: 50%;
  height: 100%;
}

.expertise-card.large .content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.expertise-card h3 {
  font-size: 18px;
  margin: 10px 0;
}

.expertise-card p {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.explore-link {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* About Section */
.about-section {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 25px;
  color: var(--text-gray);
  font-size: 14px;
}

.about-features {
  margin-bottom: 25px;
}

.about-features li {
  margin-bottom: 10px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-image {
  flex: 1;
  height: 450px;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  grid-auto-rows: 230px;
}

.gallery-grid .item-1 { grid-column: span 1; grid-row: span 2; }
.gallery-grid .item-2 { grid-column: span 1; grid-row: span 1; }
.gallery-grid .item-3 { grid-column: span 1; grid-row: span 2; }
.gallery-grid .item-4 { grid-column: span 1; grid-row: span 1; }
.gallery-grid .item-5 { grid-column: span 1; grid-row: span 2; }
.gallery-grid .item-6 { grid-column: span 1; grid-row: span 1; }

/* Collections Section */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  margin-bottom: 40px;
}

.collection-item .icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.collection-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.collection-item p {
  font-size: 13px;
  color: var(--text-gray);
}

.collections-actions {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

/* CTA Section */
.cta-section {
  background-color: #8C8275;
  text-align: center;
  padding: 80px 20px;
  color: var(--white);
  margin: 40px 0;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 15px;
  margin-bottom: 30px;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border: 1px solid var(--border-color);
}

.stars {
  color: #000;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 13px;
  margin-bottom: 30px;
  min-height: 80px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 35px;
  height: 35px;
  background: #EAEAEA;
  border-radius: 50%;
}

.client-details h4 {
  font-size: 13px;
  margin-bottom: 2px;
}

.client-details p {
  font-size: 11px;
  color: var(--text-gray);
}

/* FAQ Section */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 25px;
}

.faq-item h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 13px;
  color: var(--text-gray);
}

.faq-more {
  text-align: center;
  margin-top: 50px;
}

/* Newsletter */
.newsletter-section {
  text-align: center;
  max-width: 550px;
  margin: 0 auto 60px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.newsletter-form input {
  padding: 12px 15px;
  width: 280px;
  border: 1px solid var(--border-color);
  background: transparent;
}

.large-image-block {
  height: 450px;
  margin-bottom: 0;
}

/* Footer */
.footer {
  background-color: var(--bg-secondary);
  padding: 60px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 40px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.footer-column h4 {
  font-size: 13px;
  margin-bottom: 15px;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  font-size: 12px;
  color: var(--text-gray);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}
/* Tambah ruang di bawah header sahaja */
header {
    margin-bottom: 60px; /* Tukar 60px kepada nilai lain jika mahu lebih/kurang jarak */
}
/* ==============================
   MOBILE RESPONSIVE DESIGN
   Tidak mengubah desktop layout
   ============================== */

@media (max-width: 768px) {

    /* Container */
    .container {
        width: 100%;
        padding: 0 20px;
    }

    /* Header spacing */
    header {
        margin-bottom: 30px;
    }


    /* ================= HERO ================= */

    .hero {
        height: 450px;
        margin-bottom: 50px;
    }

    .hero-content {
        width: 100%;
        padding: 20px;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }


    /* ================= SECTION TITLE ================= */

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 26px;
    }


    /* ================= EXPERTISE ================= */

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .expertise-card.large {
        flex-direction: column;
    }


    .expertise-card.large .img-wrapper,
    .expertise-card.large .content {
        width: 100%;
    }


    .expertise-card.large .img-wrapper {
        height: 220px;
    }


    .expertise-card .content {
        padding: 20px;
    }



    /* ================= ABOUT ================= */

    .about-section {
        flex-direction: column;
        gap: 30px;
    }


    .about-content,
    .about-image {
        width: 100%;
        flex: none;
    }


    .about-image {
        height: 300px;
        order: -1;
    }


    .about-content h2 {
        font-size: 26px;
    }



    /* ================= GALLERY ================= */

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }


    .gallery-grid .item-1,
    .gallery-grid .item-2,
    .gallery-grid .item-3,
    .gallery-grid .item-4,
    .gallery-grid .item-5,
    .gallery-grid .item-6 {
        grid-column: span 1;
        grid-row: span 1;
    }



    /* ================= COLLECTION ================= */

    .collections-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }



    /* ================= CTA ================= */

    .cta-section {
        padding: 60px 20px;
    }


    .cta-section h2 {
        font-size: 26px;
    }



    /* ================= TESTIMONIAL ================= */

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap:20px;
    }


    .testimonial-card {
        padding:25px;
    }



    /* ================= FAQ ================= */

    .faq-list {
        width:100%;
    }



    /* ================= NEWSLETTER ================= */

    .newsletter-form {
        flex-direction: column;
        align-items:center;
    }


    .newsletter-form input {
        width:100%;
        max-width:350px;
    }


    .newsletter-form .btn {
        width:100%;
        max-width:350px;
    }



    /* ================= FOOTER ================= */

    .footer {
        padding:40px 0 20px;
    }


    .footer-top {
        flex-direction:column;
        gap:30px;
        text-align:center;
    }


    .footer-links-grid {
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }


    .footer-bottom {
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

}



/* ==============================
   SMALL PHONE
   ============================== */

@media (max-width: 480px) {


    .hero {
        height:400px;
    }


    .hero h1 {
        font-size:26px;
    }


    .section-header h2 {
        font-size:24px;
    }


    .footer-links-grid {
        grid-template-columns:1fr;
    }


    .btn {
        padding:10px 18px;
    }

}