/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}

/* NAVBAR */
/* Navbar full box */
  .navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    z-index: 1000;

    background: #fff;
    border: 2px solid #b87939;
    padding: 15px 20px;
    border-radius: 0 0 25px 25px;
    overflow: hidden;   /* 🔥 IMPORTANT */

    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
body {
    padding-top: 100px;  /* space for fixed navbar */
}

/* Logo left */
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 50px;   /* desktop size */
    width: auto;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    font-size: 26px;
    cursor: pointer;
    color: #8b5e34;
    margin-left: auto;
    line-height: 1;
    padding: 8px;
}

.nav-right {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 25px;
}

/* Menu links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-links li a {
    text-decoration: none;
    color: #5c4631;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #b87939;
}
.nav-links a.active {
    color: #b87939;
    font-weight: 700;
}

/* Post Design Button */
.post-btn {
    background-color: #b87939;
    padding: 10px 22px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.post-btn:hover {
    background-color: #8a5b2b;
}
.btn i {
    margin-right: 8px;
}
nav ul li a:hover {
    color: #b87939;
    transition: 0.3s;
}
/* SLIDER */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    flex-wrap: wrap; /* 🔥 important */
}

/* LEFT SIDE */
.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #a45a23;
}

.hero-content p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.primary {
  background: #a45a23;
  color: white;
}

.secondary {
  border: 2px solid #a45a23;
  color: #a45a23;
}

/* RIGHT SIDE IMAGE (STRICT CONTROL) */
.hero-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 350px;
    overflow: hidden;
    border-radius: 20px;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;

    opacity: 0; /* 👈 better than display */
    transition: opacity 0.5s ease;
}

.hero-slide.active {
    opacity: 1;
}
.problem-section {
    text-align: center;
    padding: 60px 40px;
}

.problem-section .subtitle {
    color: #050000;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 400;
}

.problem-section h2 {
    font-size: 32px;
    color: #8b5e34;
    margin-top: 20px;
    margin-bottom: 40px;
}

/* Cards container */
.problem-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Each card */
.problem-card {
    width: 350px;
    padding: 30px 20px;
    background: #f9f9f9;
    border-radius: 15px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

/* Hover effect */
.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Icon style */
.icon {
    width: 60px;
    height: 60px;
    background: #e74c3c;
    color: white;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}
.solution-section .subtitle {
    color: #050000;
    font-size: 14px;
    margin-bottom: 0px;
    font-weight: 400;
}
.solution-section {
    text-align: center;
    padding: 70px 20px;
    background: #f8f8f8;
}

.solution-section h2 {
    font-size: 32px;
    color: #8b5e34;
    margin-top: 20px;   /* 👈 THIS will now work */
    margin-bottom: 50px;
}

/* Cards */
.solution-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* 3 equal columns */
    gap: 40px;

    max-width: 900px;
    margin: 0 auto;   /* 🔥 center entire section */
}

.solution-card {
    text-align: center;
}
/* Icon circle */
.solution-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;

    display: grid;              /* 🔥 USE GRID INSTEAD */
    place-items: center;        /* 🔥 PERFECT CENTER */

    margin: 0 auto 20px;
}

.solution-icon i {
    font-size: 30px;
    color: #8b5e34;
    margin-right: 0 !important;
    line-height: 1;             /* 🔥 IMPORTANT */
}

/* Text */
.solution-card h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.solution-card p {
    font-size: 15px;
    color: #666;
}

/* Quote box */
.solution-quote {
    margin-top: 50px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    max-width: 700px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.solution-quote p {
    font-style: italic;
    font-size: 30px;
    font-weight: bold;
    color: #555;
}
/* Text */
.problem-card p {
    font-size: 20px;
    color: #333;
    line-height: 1.5;
    font-weight: bold;
}
/* ABOUT */
.about {
    padding: 40px;
    text-align: center;
}

.about h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.about p {
    color: #555;
    font-size: 18px;
}

/* CARDS */
.cards-section .subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
    text-align: center;
}
.cards-section h2 {
    font-size: 32px;
    color: #8b5e34;
    margin-bottom: 40px;
    text-align: center;
}
.cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}            /* 👈 ADD THIS */
.cards-section {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;   /* 👈 better than just 'auto' */
}

.card {
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding-bottom: 20px;
}

.card img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.card h3 {
    margin: 15px 0 5px;
}

.card p {
    color: #777;
}
.showcase-section {
    text-align: center;
    padding: 70px 40px;
}

/* Subtitle */

/* Heading */
.showcase-section h2 {
    font-size: 32px;
    color: #8b5e34;
    margin-bottom: 40px;
}

/* Grid */
.showcase-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Cards */
.showcase-card {
    width: 300px;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
}

/* Images */
.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.3s;
}

/* Hover effect */
.showcase-card img:hover {
    transform: scale(1.05);
}
.how-steps {
    text-align: center;
    padding: 80px 40px;
    background: #f8f8f8;
}

.how-steps .subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.how-steps h2 {
    font-size: 32px;
    color: #8b5e34;
    margin-bottom: 60px;
}

/* Steps container */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1100px;
    margin: auto;
}

/* Line */
.steps-container::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #b6b4b4;
    z-index: 0;
}

/* Each step */
.step {
    width: 150px;
    position: relative;
    z-index: 1;
}

/* Circle */
.circle {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #8b5e34;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Text */
.step h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: #666;
}
.enquire-btn {
    position: fixed;
    left: 20px;
    top: 35%;
    transform: none;

    background: #fff;
    color: #8b5e34;
    border: 2px solid #8b5e34;
    padding: 10px 18px;
    border-radius: 10px;

    font-weight: 600;
    text-decoration: none;

    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Hover effect */
.enquire-btn:hover {
    background: #8b5e34;
    color: #fff;
}
/* SECTION */
.why-section {
    text-align: center;
    padding: 80px 40px;
    background: #f8f8f8;
}

/* TOP TITLE */
.main-title {
    font-size: 30px;
    margin-bottom: 80px;
}

/* SUBTITLE */
.subtitle {
    font-size: 14px;
    color: #363636;
    margin-bottom: 24px;
}

/* HEADING */
.section-title {
    font-size: 30px;
    color: #8b5e34;
    margin-bottom: 50px;
}

/* CARDS CONTAINER */
.why-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* CARD */
.why-card {
    width: 260px;
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* ICON CIRCLE */
.icon-circle {
    width: 60px;
    height: 60px;
    background: #8b5e34;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* ICON */
.icon-circle i {
    color: white;
    font-size: 22px;
}

/* TEXT */
.why-card h3 {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
}
/* SECTION */
.target-section {
    padding: 80px 40px;
    background: #f8f8f8;
}

/* CONTAINER */
.target-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT TEXT */
.target-text {
    max-width: 500px;
}

.target-text .subtitle {
    font-size: 16px;
    color: #252525;
    margin-bottom: 10px;
    font-weight: lighter;
}

.target-text h2 {
    font-size: 32px;
    color: #8b5e34;
    margin-bottom: 15px;
}

.target-text .desc {
    font-size: 20px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    
}

/* LIST */
.target-list {
    list-style: none;
    padding: 0;
}

.target-list li {
    font-size: 19px;
    margin-bottom: 12px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
}

.target-list i {
    color: #8b5e34;
}

/* RIGHT CARD */
.target-card {
    width: 500px;
    height: 320px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ICON */
.target-icon {
    font-size: 100px;
    color: #ccc;
    margin-bottom: 15px;
}

/* TEXT */
.target-card p {
    font-size: 18px;
    color: #555;
    text-align: center;
}
/* CONTACT SECTION */
.contact-section {
    padding: 80px 40px;
    text-align: center;
}

.contact-section h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.contact-section .subtitle {
    color: #666;
    margin-bottom: 40px;
}

/* CONTAINER */
.contact-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* LEFT INFO */
.contact-info {
    flex: 1;
    text-align: left;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.contact-info i {
    color: #8b5e34;
    margin-right: 10px;
}

/* SOCIALS */
.socials a {
    text-decoration: none;   /* 🔥 removes underline/dash */
    display: inline-block;
    margin-right: 12px;
    font-size: 20px;
    color: #8b5e34;
}

/* FORM */
.contact-form {
    flex: 1;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
}

/* BUTTON */
.contact-form button {
    background: #8b5e34;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.contact-form button:hover {
    background: #6f4726;
}
.whatsapp-btn {
    display: inline-block;
    margin-top: 15px;
    background: #25D366;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-decoration: none;
}
/* FOOTER */
.footer {
    background: #1f252b;
    color: #ccc;
    padding: 60px 40px 20px;
}

/* CONTAINER */
#footer .footer-container {
    display: flex;
    justify-content: flex-start;   /* 🔥 LEFT */
    gap: 60px;

    max-width: 1100px;
    margin: 0 auto;

    text-align: left;
    align-items: flex-start;
}

/* LEFT */
.footer-about {
    max-width: 280px;
}

.footer-about h2 {
    color: #c47a2c;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
}

/* SOCIALS */
.footer-socials {
    margin-top: 20px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;
    border: 1px solid #555;
    border-radius: 50%;
    margin-right: 10px;

    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: #c47a2c;
    border-color: #c47a2c;
}

/* LINKS */
.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-links a {
    text-decoration: none;
    color: #aaa;
    margin-bottom: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #c47a2c;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #777;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        font-size: 26px;
        cursor: pointer;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 94%;
        justify-content: space-between;
        overflow: visible;
    }

    body.menu-open .navbar {
        border-bottom-color: transparent;
        border-radius: 0;
    }

   .nav-right {
    position: absolute;   /* 🔥 CHANGE */
    top: calc(100% - 2px);
    left: -2px;
    width: calc(100% + 4px);

    display: flex;
    flex-direction: column;
    align-items: center;

    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px);

    background: #fff;
    padding: 0;
    border: 0 solid #b87939;
    border-radius: 0 0 25px 25px;
    transition: max-height 0.55s ease, padding 0.55s ease, transform 0.55s ease;
}

    .nav-right.active {
        max-height: 320px;
        padding: 20px 0;
        border-width: 0 2px 2px;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links {
        width: 100%;
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .nav-links li {
         width: 100%;
        }
        .nav-links li a {
    display: block;
    width: 100%;
}

    .post-btn {
        margin-top: 10px;
    }
    .logo img {
        height: 45px;
    }

    /* Hero */
    .hero {
        flex-direction: column-reverse;
        padding: 20px;
        text-align: center;
    }

    .hero-container {
        width: 100%;
        height: 250px;
        margin-bottom: 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    /* Cards */
    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }

    /* Problem & Solution */
    .problem-cards,
    .solution-cards {
    grid-template-columns: 1fr;  /* stack in mobile */
}

    /* Showcase */
    .showcase-grid {
        flex-direction: column;
        align-items: center;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .steps-container::before {
        display: none; /* remove horizontal line */
    }

    .step {
        width: 100%;
        text-align: center;
    }

    .circle {
        margin: 0 auto 15px;
    }
    .enquire-btn {
        top: 25%;   /* 🔥 mobile la mattum mela varum */
    }
      body.menu-open {
        padding-top: 250px;  /* 🔥 adjust based on menu height */
    }
}
/* BLOG HERO */
.blog-hero {
    text-align: center;
    padding: 100px 20px 70px;
}

.blog-subtitle {
    color: #8b5e34;
    font-size: 15px;
    margin-bottom: 15px;
}

.blog-hero h1 {
    font-size: 52px;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-desc {
    max-width: 700px;
    margin: auto;
    color: #666;
    font-size: 18px;
}

/* FEATURED BLOG */
.featured-blog {
    max-width: 1150px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 40px 20px 80px;
    flex-wrap: wrap;
}

.featured-image {
    flex: 1;
}

.featured-image img {
    width: 100%;
    border-radius: 25px;
    height: 450px;
    object-fit: cover;
}

.featured-content {
    flex: 1;
}

.tag {
    background: #f3e5d7;
    color: #8b5e34;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
}

.featured-content h2 {
    font-size: 42px;
    margin: 25px 0 20px;
    color: #222;
}

.featured-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.read-btn {
    background: #8b5e34;
    color: white;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 10px;
    display: inline-block;
}

/* BLOG GRID */
.blog-section {
    padding: 70px 20px;
    background: #f8f8f8;
}

.blog-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #8b5e34;
}

.blog-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-content span {
    color: #8b5e34;
    font-size: 14px;
}

.blog-card-content h3 {
    margin: 15px 0;
    font-size: 24px;
    color: #222;
}

.blog-card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-content a {
    color: #8b5e34;
    text-decoration: none;
    font-weight: bold;
}

/* NEWSLETTER */
.newsletter {
    text-align: center;
    padding: 90px 20px;
}

.newsletter h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.newsletter p {
    color: #666;
    margin-bottom: 35px;
}

.newsletter-box {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter-box input {
    width: 350px;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.newsletter-box button {
    padding: 16px 28px;
    border: none;
    background: #8b5e34;
    color: white;
    border-radius: 10px;
    cursor: pointer;
}

/* MOBILE */
@media(max-width:768px){

.blog-hero h1 {
    font-size: 36px;
}

.featured-content h2 {
    font-size: 32px;
}

.blog-grid {
    grid-template-columns: 1fr;
}

.newsletter h2 {
    font-size: 30px;
}

.newsletter-box input {
    width: 100%;
}
}
/* HELP HERO */
.help-hero {
    text-align: center;
    padding: 100px 20px 70px;
}

.help-subtitle {
    color: #8b5e34;
    margin-bottom: 15px;
    font-size: 15px;
}

.help-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #222;
}

.help-hero p {
    color: #666;
    margin-bottom: 35px;
    font-size: 18px;
}

/* SEARCH */
.help-search {
    max-width: 650px;
    margin: auto;
    display: flex;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.help-search input {
    flex: 1;
    padding: 18px;
    border: none;
    outline: none;
    font-size: 15px;
}

.help-search button {
    width: 70px;
    border: none;
    background: #8b5e34;
    color: white;
    cursor: pointer;
}

/* CATEGORIES */
.help-categories {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px 80px;

    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.help-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    transition: 0.3s;
}

.help-card:hover {
    transform: translateY(-8px);
}

.help-icon {
    width: 75px;
    height: 75px;
    background: #f3e5d7;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto auto 20px;
}

.help-icon i {
    font-size: 28px;
    color: #8b5e34;
}

.help-card h3 {
    margin-bottom: 15px;
    color: #222;
}

.help-card p {
    color: #666;
    line-height: 1.6;
}

/* FAQ */
.faq-section {
    background: #f8f8f8;
    padding: 90px 20px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 40px;
    color: #8b5e34;
}

.faq-container {
    max-width: 850px;
    margin: auto;
}

.faq-item {
    background: white;
    border-radius: 14px;
    margin-bottom: 18px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 22px;
    border: none;
    background: white;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

.faq-answer p {
    padding: 0 22px 22px;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* SUPPORT BOX */
.support-box {
    text-align: center;
    padding: 90px 20px;
}

.support-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.support-box p {
    color: #666;
    margin-bottom: 30px;
}

.support-btn {
    background: #8b5e34;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 12px;
    display: inline-block;
}

/* MOBILE */
@media(max-width:768px){

.help-hero h1 {
    font-size: 36px;
}

.help-categories {
    grid-template-columns: 1fr;
}

.faq-section h2 {
    font-size: 30px;
}

.support-box h2 {
    font-size: 30px;
}

}
/* HERO */
.trust-hero {
    text-align: center;
    padding: 110px 20px 80px;
}

.trust-subtitle {
    color: #8b5e34;
    margin-bottom: 15px;
    font-size: 15px;
}

.trust-hero h1 {
    font-size: 54px;
    max-width: 900px;
    margin: auto;
    line-height: 1.2;
    margin-bottom: 25px;
}

.trust-hero p {
    max-width: 700px;
    margin: auto;
    color: #666;
    font-size: 18px;
    line-height: 1.7;
}

/* TRUST SECTION */
.trust-section {
    padding: 20px 20px 90px;
}

.trust-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.trust-card {
    background: white;
    padding: 35px 25px;
    border-radius: 22px;

    text-align: center;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    transition: 0.3s;
}

.trust-card:hover {
    transform: translateY(-8px);
}

.trust-icon {
    width: 80px;
    height: 80px;

    background: #f3e5d7;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto auto 20px;
}

.trust-icon i {
    font-size: 30px;
    color: #8b5e34;
}

.trust-card h3 {
    margin-bottom: 15px;
    color: #222;
}

.trust-card p {
    color: #666;
    line-height: 1.7;
}

/* PROTECT SECTION */
.protect-section {
    background: #f8f8f8;
    padding: 100px 20px;
}

.protect-container {
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.protect-left {
    flex: 1;
}

.small-title {
    color: #8b5e34;
    margin-bottom: 15px;
}

.protect-left h2 {
    font-size: 45px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.protect-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.protect-list {
    list-style: none;
    padding: 0;
}

.protect-list li {
    margin-bottom: 18px;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.protect-list i {
    color: #8b5e34;
}

/* RIGHT BOX */
.protect-right {
    flex: 1;
}

.protect-box {
    background: white;
    padding: 60px 40px;
    border-radius: 30px;

    text-align: center;

    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.protect-box i {
    font-size: 90px;
    color: #8b5e34;
    margin-bottom: 25px;
}

.protect-box h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

.protect-box p {
    color: #666;
    line-height: 1.7;
}

/* REPORT */
.report-section {
    padding: 100px 20px;
    text-align: center;
}

.report-box {
    max-width: 900px;
    margin: auto;

    background: #8b5e34;
    color: white;

    padding: 80px 30px;
    border-radius: 30px;
}

.report-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.report-box p {
    line-height: 1.8;
    margin-bottom: 35px;
}

.report-btn {
    background: white;
    color: #8b5e34;

    text-decoration: none;

    padding: 16px 32px;
    border-radius: 12px;

    font-weight: bold;

    display: inline-block;
}
/* MOBILE TOPBAR */

.mobile-topbar{

  display:none;

  background:#1f252b;
  color:white;

  padding:18px 20px;

  justify-content:space-between;
  align-items:center;
}

.mobile-logo{

  font-size:24px;
  font-weight:bold;

  color:#c47a2c;
}

.mobile-topbar .menu-toggle{

  font-size:24px;
  cursor:pointer;
}
/* MOBILE */
@media(max-width:768px){

.trust-hero h1 {
    font-size: 38px;
}

.trust-grid {
    grid-template-columns: 1fr;
}

.protect-left h2 {
    font-size: 34px;
}

.protect-box h3 {
    font-size: 28px;
}

.report-box h2 {
    font-size: 30px;
}

}
/* HERO */
.faq-hero {
    text-align: center;
    padding: 110px 20px 80px;
}

.faq-subtitle {
    color: #8b5e34;
    margin-bottom: 15px;
    font-size: 15px;
}

.faq-hero h1 {
    font-size: 55px;
    margin-bottom: 25px;
    color: #222;
}

.faq-hero p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 18px;
}

/* FAQ SECTION */
.faq-main {
    padding: 20px 20px 100px;
}

.faq-wrapper {
    max-width: 900px;
    margin: auto;
}

/* FAQ BOX */
.faq-box {
    background: white;
    border-radius: 18px;
    margin-bottom: 20px;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* QUESTION */
.faq-btn {
    width: 100%;
    border: none;
    background: white;

    padding: 24px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;

    font-size: 17px;
    font-weight: 600;

    text-align: left;
}

.faq-btn i {
    color: #8b5e34;
}

/* ANSWER */
.faq-content {
    max-height: 0;
    overflow: hidden;

    transition: 0.4s ease;
}

.faq-content p {
    padding: 0 24px 24px;
    color: #666;
    line-height: 1.8;
}

/* ACTIVE */
.faq-box.active .faq-content {
    max-height: 220px;
}

/* SUPPORT */
.faq-support {
    background: #f8f8f8;
    text-align: center;

    padding: 100px 20px;
}

.faq-support h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.faq-support p {
    color: #666;
    margin-bottom: 35px;
}

.faq-contact-btn {
    background: #8b5e34;
    color: white;

    text-decoration: none;

    padding: 16px 34px;
    border-radius: 12px;

    display: inline-block;
    font-weight: bold;
}

/* MOBILE */
@media(max-width:768px){

.faq-hero h1 {
    font-size: 38px;
}

.faq-support h2 {
    font-size: 30px;
}

.faq-btn {
    font-size: 15px;
}

}
/* HERO */
.legal-hero {
    text-align: center;
    padding: 110px 20px 80px;
}

.legal-subtitle {
    color: #8b5e34;
    margin-bottom: 15px;
    font-size: 15px;
}

.legal-hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
    color: #222;
}

.legal-hero p {
    max-width: 700px;
    margin: auto;

    color: #666;
    line-height: 1.8;
    font-size: 18px;
}

/* SECTION */
.legal-section {
    padding: 20px 20px 100px;
}

/* CONTAINER */
.legal-container {
    max-width: 1000px;
    margin: auto;
}

/* BOX */
.legal-box {
    background: white;

    padding: 35px;
    margin-bottom: 25px;

    border-radius: 20px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* TITLE */
.legal-box h2 {
    color: #8b5e34;
    margin-bottom: 15px;
    font-size: 28px;
}

/* TEXT */
.legal-box p {
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

/* CONTACT SECTION */
.legal-contact {
    padding: 100px 20px;
}

.legal-contact-box {
    max-width: 900px;
    margin: auto;

    background: #8b5e34;
    color: white;

    text-align: center;

    padding: 80px 30px;
    border-radius: 30px;
}

.legal-contact-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.legal-contact-box p {
    line-height: 1.8;
    margin-bottom: 35px;
}

/* BUTTON */
.legal-btn {
    background: white;
    color: #8b5e34;

    text-decoration: none;

    padding: 16px 34px;
    border-radius: 12px;

    display: inline-block;

    font-weight: bold;
}

/* MOBILE */
@media(max-width:768px){

.legal-hero h1 {
    font-size: 40px;
}

.legal-box {
    padding: 25px;
}

.legal-box h2 {
    font-size: 22px;
}

.legal-contact-box h2 {
    font-size: 30px;
}

}
/* HERO */
.privacy-hero {
    text-align: center;
    padding: 110px 20px 80px;
}

.privacy-subtitle {
    color: #8b5e34;
    margin-bottom: 15px;
    font-size: 15px;
}

.privacy-hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
    color: #222;
}

.privacy-hero p {
    max-width: 720px;
    margin: auto;

    color: #666;
    line-height: 1.8;
    font-size: 18px;
}

/* MAIN */
.privacy-main {
    padding: 20px 20px 100px;
}

/* CONTAINER */
.privacy-container {
    max-width: 1000px;
    margin: auto;
}

/* BOX */
.privacy-box {
    background: white;

    padding: 35px;
    margin-bottom: 25px;

    border-radius: 20px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* TITLE */
.privacy-box h2 {
    color: #8b5e34;
    margin-bottom: 15px;
    font-size: 28px;
}

/* TEXT */
.privacy-box p {
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

/* CONTACT */
.privacy-contact {
    padding: 100px 20px;
}

.privacy-contact-box {
    max-width: 900px;
    margin: auto;

    background: #8b5e34;
    color: white;

    text-align: center;

    padding: 80px 30px;
    border-radius: 30px;
}

.privacy-contact-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.privacy-contact-box p {
    line-height: 1.8;
    margin-bottom: 35px;
}

/* BUTTON */
.privacy-btn {
    background: white;
    color: #8b5e34;

    text-decoration: none;

    padding: 16px 34px;
    border-radius: 12px;

    display: inline-block;

    font-weight: bold;
}

/* MOBILE */
@media(max-width:768px){

.privacy-hero h1 {
    font-size: 40px;
}

.privacy-box {
    padding: 25px;
}

.privacy-box h2 {
    font-size: 22px;
}

.privacy-contact-box h2 {
    font-size: 30px;
}

}
/* HERO */
.cookie-hero {
    text-align: center;
    padding: 110px 20px 80px;
}

.cookie-subtitle {
    color: #8b5e34;
    margin-bottom: 15px;
    font-size: 15px;
}

.cookie-hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
    color: #222;
}

.cookie-hero p {
    max-width: 720px;
    margin: auto;

    color: #666;
    line-height: 1.8;
    font-size: 18px;
}

/* MAIN */
.cookie-main {
    padding: 20px 20px 100px;
}

/* CONTAINER */
.cookie-container {
    max-width: 1000px;
    margin: auto;
}

/* BOX */
.cookie-box {
    background: white;

    padding: 35px;
    margin-bottom: 25px;

    border-radius: 20px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* TITLE */
.cookie-box h2 {
    color: #8b5e34;
    margin-bottom: 15px;
    font-size: 28px;
}

/* TEXT */
.cookie-box p {
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

/* CONTACT */
.cookie-contact {
    padding: 100px 20px;
}

.cookie-contact-box {
    max-width: 900px;
    margin: auto;

    background: #8b5e34;
    color: white;

    text-align: center;

    padding: 80px 30px;
    border-radius: 30px;
}

.cookie-contact-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cookie-contact-box p {
    line-height: 1.8;
    margin-bottom: 35px;
}

/* BUTTON */
.cookie-btn {
    background: white;
    color: #8b5e34;

    text-decoration: none;

    padding: 16px 34px;
    border-radius: 12px;

    display: inline-block;

    font-weight: bold;
}

/* MOBILE */
@media(max-width:768px){

.cookie-hero h1 {
    font-size: 40px;
}

.cookie-box {
    padding: 25px;
}

.cookie-box h2 {
    font-size: 22px;
}

.cookie-contact-box h2 {
    font-size: 30px;
}

}
/* COOKIE BANNER */
.cookie-banner {

    position: fixed;

    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);

    width: 92%;
    max-width: 1100px;

    background: white;

    border-radius: 24px;

    padding: 24px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

    box-shadow: 0 10px 35px rgba(0,0,0,0.15);

    z-index: 9999;
}

/* TEXT */
.cookie-text h3 {
    color: #8b5e34;
    margin-bottom: 8px;
    font-size: 24px;
}

.cookie-text p {
    color: #666;
    line-height: 1.7;
}

/* BUTTON AREA */
.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* BUTTON */
.cookie-btn {

    border: none;
    cursor: pointer;

    padding: 12px 22px;

    border-radius: 12px;

    font-weight: bold;

    transition: 0.3s;
}

/* ACCEPT */
.accept-btn {
    background: #8b5e34;
    color: white;
}

/* REJECT */
.reject-btn {
    background: #f3f3f3;
    color: #333;
}

/* MANAGE */
.manage-btn {
    background: transparent;
    border: 2px solid #8b5e34;
    color: #8b5e34;
}

/* HOVER */
.accept-btn:hover {
    background: #6f4726;
}

.reject-btn:hover {
    background: #e5e5e5;
}

.manage-btn:hover {
    background: #8b5e34;
    color: white;
}

/* MOBILE */
@media(max-width:768px){

.cookie-banner {

    flex-direction: column;
    align-items: flex-start;

    bottom: 10px;

    width: 95%;

    padding: 20px;
}

.cookie-actions {
    width: 100%;
}

.cookie-btn {
    flex: 1;
}

.cookie-text h3 {
    font-size: 20px;
}

}

@media(max-width:768px){

    .mobile-topbar{
        display:flex;
    }

    .sidebar{
        display:block;
        position:fixed;
        left:-260px;
        top:0;
        transition:0.3s;
        z-index:1000;
    }

    .sidebar.active{
        left:0;
    }

    .main{
        margin-left:0;
        padding:20px;
    }

    .hero-banner h2{
        font-size:28px;
    }

    .topbar{
        flex-direction:column;
        align-items:flex-start;
    }
}
.search-box{

  background:white;

  padding:14px 18px;

  border-radius:14px;

  display:flex;
  align-items:center;

  gap:12px;

  box-shadow:
  0 4px 15px rgba(0,0,0,0.06);

  width:320px;
}

.search-box i{

  color:#8b5e34;
}

.search-box input{

  border:none;
  outline:none;

  width:100%;

  font-size:14px;

  background:transparent;
}
/* FILTER */

.luxury-filter{

  background:white;

  border-radius:18px;

  padding:0 18px;

  display:flex;
  align-items:center;

  gap:12px;
}

.luxury-filter i{
  color:#8b5e34;
}

.luxury-filter select{

  border:none;
  outline:none;

  height:58px;

  background:transparent;

  font-size:15px;

  cursor:pointer;
}

/* MOBILE */

@media(max-width:700px){

  .search-wrapper{

    padding:25px 20px;
  }

  .search-left h3{
    font-size:25px;
  }

  .luxury-search{
    min-width:100%;
  }

  .search-right{
    width:100%;
  }

  .luxury-filter{
    width:100%;
  }

  .luxury-filter select{
    width:100%;
  }
}
.welcome h2{
  font-size:36px;
  color:#222;
  margin-bottom:10px;
  line-height:1.3;
}
.profile-popup{

  display:none;

  position:fixed;
  left:0;
  right:0;
  bottom:24px;

  justify-content:center;
  align-items:flex-end;
  padding:0 18px;

  z-index:9999;
  pointer-events:none;
}

.popup-card{

  width:90%;
  max-width:420px;

  background:white;

  padding:30px;

  border-radius:20px;
  box-shadow:0 20px 45px rgba(0,0,0,0.22);

  text-align:center;
  pointer-events:auto;
}

.popup-card h2{
  margin-bottom:15px;
}

.popup-card p{
  color:#666;
  margin-bottom:20px;
}

.popup-buttons{

  display:flex;
  gap:10px;
}

.popup-buttons button{

  flex:1;

  border:none;

  padding:12px;

  border-radius:10px;

  cursor:pointer;
  font-weight:bold;
  font-size:14px;
}

.popup-buttons button:first-child{
  background:#8b5e34;
  color:white;
}

.popup-buttons button:last-child{
  background:#ececec;
  color:#222;
}
