/* ==========================================================================
   GLOBAL VARIABLES & RESET
   ========================================================================== */
:root {
    --brand-gold: #6D5F32;
    --accent-gold: #d4c491;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* ==========================================================================
   GLOBAL VARIABLES (NAVBAR ONLY)
   ========================================================================== */
:root {
    --brand-gold: #6D5F32;
}

/* ==========================================================================
   NAV-PILL (UNIFIED - SAME ON CALCULATOR & CONTACT PAGES)
   ========================================================================== */
.nav-pill {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #ffffff;
    padding: 8px 22px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: auto;
    max-width: 95%;
    z-index: 1030;
}

.nav-pill.scrolled {
    background: rgba(255, 255, 255, 0.75) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    top: 10px !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    border-radius: 8px;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Desktop Navigation */
.navbar-collapse {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
}

.navbar-nav {
    display: flex;
    gap: 4px;
    margin: 0;
    padding: 0;
    justify-content: center;
    list-style: none;
}

.nav-item {
    list-style: none;
}

.navbar-nav .nav-link {
    color: var(--brand-gold) !important;
    font-weight: 500;
    padding: 8px 12px !important;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* Hover Underline */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 60%;
}

.navbar-nav .nav-link:hover {
    color: #d4af37 !important;
}

/* Scrolled state for nav links */
.nav-pill.scrolled .navbar-nav .nav-link {
    color: var(--brand-gold) !important;
}

.nav-pill.scrolled .navbar-nav .nav-link::after {
    background-color: var(--brand-gold);
}

/* Search Container */
.src-container {
    display: flex;
    align-items: center;
    background-color: #f5f5f0;
    border-radius: 30px;
    padding: 6px 12px;
    gap: 5px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.src-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--brand-gold);
    font-size: 14px;
    transition: all 0.3s ease;
}

.src-btn:hover {
    color: #d4af37;
    transform: scale(1.1);
}

.src-container input {
    background: transparent;
    border: none;
    outline: none;
    width: 0;
    opacity: 0;
    padding: 0;
    transition: all 0.3s ease;
    font-size: 13px;
}

.src-container.active input {
    width: 150px;
    opacity: 1;
    padding: 4px 8px;
}

/* Scrolled search style */
.nav-pill.scrolled .src-container {
    background-color: transparent;
    border: 1px solid var(--brand-gold);
}

.nav-pill.scrolled .src-btn,
.nav-pill.scrolled .src-container input {
    color: var(--brand-gold);
}

.nav-pill.scrolled .src-container input::placeholder {
    color: var(--brand-gold);
    opacity: 0.7;
}

/* Mobile Menu */
.mobile-dropdown-container {
    position: relative;
    display: none;
    flex-shrink: 0;
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    gap: 8px;
    background: rgba(109, 95, 50, 0.1);
    border: none;
    border-radius: 40px;
    padding: 8px 16px;
    font-weight: 500;
    color: var(--brand-gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn i {
    font-size: 18px;
}

.mobile-menu-btn span {
    font-size: 14px;
}

.mobile-menu-btn:hover {
    background: rgba(109, 95, 50, 0.2);
    transform: translateY(-2px);
}

.nav-pill.scrolled .mobile-menu-btn {
    color: var(--brand-gold);
    background: transparent;
    border: 1px solid var(--brand-gold);
}

.mobile-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 12px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1050;
    overflow: hidden;
}

.mobile-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--brand-gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid rgba(178, 161, 108, 0.1);
    transition: all 0.3s ease;
}

.mobile-dropdown-item:last-child {
    border-bottom: none;
}

.mobile-dropdown-item:hover {
    background: rgba(178, 161, 108, 0.15);
    padding-left: 28px;
}

/* ==========================================================================
   NAVBAR RESPONSIVE (UNIFIED)
   ========================================================================== */
@media (min-width: 993px) {
    .mobile-dropdown-container {
        display: none !important;
    }
    .navbar-collapse {
        display: flex !important;
    }
}

@media (max-width: 992px) {
    .nav-pill {
        padding: 6px 16px;
        width: 95%;
    }
    
    .navbar-collapse {
        display: none !important;
    }
    
    .mobile-dropdown-container {
        display: block !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .src-container input {
        width: auto !important;
        opacity: 1 !important;
    }
}

@media (max-width: 768px) {
    .nav-pill {
        width: 95%;
        top: 10px;
    }
}

@media (max-width: 576px) {
    .nav-pill {
        padding: 5px 12px;
    }
    
    .navbar-brand img {
        width: 35px;
        height: 35px;
    }
    
    .mobile-menu-btn span {
        display: none;
    }
    
    .src-container {
        max-width: 110px;
    }
    
    .src-container input {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    .nav-pill {
        padding: 4px 10px;
        gap: 8px;
    }
    
    .src-container {
        max-width: 90px;
    }
    
    .mobile-menu-btn {
        padding: 5px 8px;
    }
}

/* ----------------------------------------------
   FAQ SECTION
---------------------------------------------- */
.faq-section {
    max-width: 1280px;
    margin: 100px auto 60px;
    padding: 0 32px;
}

.faq-container {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    align-items: stretch;
}

/* LEFT SIDE */
.faq-left {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8b7a44 0%, #6e5d36 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(139, 122, 68, 0.2);
    width: fit-content;
}

.faq-badge i {
    font-size: 14px;
}

.faq-left h2 {
    font-size: 48px;
    font-weight: 700;
    color: #5a4d2b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-description {
    color: #6b6456;
    line-height: 1.7;
    margin-bottom: 32px;
    font-size: 16px;
}

.faq-contact-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(149, 131, 71, 0.348);
    transition: transform 0.3s ease, box-shadow 0.3s;
    margin-top: auto;
}

.faq-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 40px -16px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b7a44 0%, #6e5d36 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.contact-icon i {
    font-size: 28px;
    color: white;
}

.faq-contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #5a4d2b;
    margin-bottom: 12px;
}

.faq-contact-card p {
    color: #6b6456;
    line-height: 1.6;
    margin-bottom: 24px;
}

.email-btn {
    background: #8b7a44;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.email-btn:hover {
    background: #6e5d36;
    transform: translateX(4px);
    gap: 16px;
}

/* RIGHT SIDE - CAROUSEL CONTAINER */
.faq-right {
    flex: 1;
    min-width: 380px;
    display: flex;
    align-items: stretch;
}

.image-carousel {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.2);
    width: 100%;
    border: 1px solid rgba(149, 131, 71, 0.348);
    background: #1a1a1a;
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex: 1;
    height: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 30px 24px 20px;
    pointer-events: none;
    z-index: 2;
    transition: background 0.3s ease;
}

.slide-overlay span {
    color: white;
    font-weight: 600;
    font-size: 18px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.3px;
}

/* DOTS NAVIGATION */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #8b7a44;
    width: 28px;
    border-radius: 10px;
}

.dot:hover {
    background: #8b7a44;
    transform: scale(1.2);
}

/* FAQ ACCORDION */
.faq-accordion {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(149, 131, 71, 0.348);
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(149, 131, 71, 0.5);
}

.faq-question {
    padding: 20px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: #2d2a24;
    transition: background 0.25s ease;
}

.faq-question:hover {
    background: #fefaf5;
}

.faq-question i {
    color: #8b7a44;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    color: #6b6456;
    line-height: 1.6;
    font-size: 14px;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.faq-item.active .faq-answer p {
    transform: translateY(0);
    opacity: 1;
}

/* ----------------------------------------------
   CONTACT SECTION
---------------------------------------------- */
.contact-section {
    max-width: 1280px;
    margin: 80px auto 100px;
    padding: 0 32px;
}

.contact-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-badge {
    display: inline-block;
    background: rgba(139, 122, 68, 0.12);
    color: #8b7a44;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 16px;
}

.contact-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #5a4d2b;
    margin-bottom: 16px;
}

.contact-header p {
    color: #6b6456;
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

.contact-wrapper {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

/* Contact Info Cards */
.contact-cards {
    flex: 1;
    min-width: 320px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.info-card {
    background: white;
    padding: 28px 24px;
    border-radius: 28px;
    transition: all 0.3s ease;
    border: 1px solid rgba(149, 131, 71, 0.348);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b7a44, #b8a45c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
    border-color: rgba(149, 131, 71, 0.6);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(139, 122, 68, 0.12);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.card-icon i {
    font-size: 28px;
    color: #8b7a44;
}

.info-card:hover .card-icon {
    background: linear-gradient(135deg, #8b7a44 0%, #6e5d36 100%);
}

.info-card:hover .card-icon i {
    color: white;
}

.info-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #5a4d2b;
    margin-bottom: 12px;
}

.info-card p {
    color: #6b6456;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.response-time {
    font-size: 12px;
    color: #8a8470;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 12px 0 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(149, 131, 71, 0.348);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.social-links span {
    font-size: 12px;
    color: #6b6456;
    word-break: break-all;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links i {
    color: #8b7a44;
    width: 16px;
}

.card-action {
    color: #8b7a44;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: all 0.2s;
}

.card-action:hover {
    gap: 12px;
    color: #5a4d2b;
}

/* ----------------------------------------------
   FOOTER
---------------------------------------------- */
.footer {
    text-align: center;
    background: #6D5F32;
    color: #ffffff;
    padding: 20px 0;
    font-weight: 500;
    margin-top: 50px;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #d4af37;
}

/* ----------------------------------------------
   TOAST STYLES
---------------------------------------------- */
.toast-popup {
    position: fixed;
    top: 90px;
    right: 30px;
    z-index: 10000;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-left: 6px solid #6e5d36;
    display: flex;
    align-items: center;
    min-width: 350px;
    transform: translateX(calc(100% + 40px));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
}

.toast-popup.active {
    transform: translateX(0%);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.check-icon {
    font-size: 24px;
    color: #6e5d36;
}

.message {
    display: flex;
    flex-direction: column;
}

.text-1 {
    font-weight: 700;
    color: #333;
}

.text-2 {
    font-size: 14px;
    color: #666;
}

.toast-popup .close {
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
    color: #999;
}

/* ----------------------------------------------
   RESPONSIVE DESIGN
---------------------------------------------- */
@media (max-width: 1024px) {
    .faq-container {
        gap: 40px;
    }
    
    .faq-right {
        min-width: 320px;
    }
    
    .slide-overlay {
        padding: 25px 20px 15px;
    }
    
    .slide-overlay span {
        font-size: 16px;
    }
}
  


@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .faq-section {
        margin: 100px auto 60px;
        padding: 0 24px;
    }
    
    .contact-section {
        padding: 0 24px;
    }
    
    .faq-left h2,
    .contact-header h2 {
        font-size: 36px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .faq-right {
        min-width: 100%;
    }
    
    .image-carousel {
        min-height: 380px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 16px 20px;
    }
    
    .slide-overlay {
        padding: 20px 16px 12px;
    }
    
    .slide-overlay span {
        font-size: 15px;
    }
    
    .carousel-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .dot.active {
        width: 20px;
    }
}

@media (max-width: 576px) {    
    
    .faq-section {
        margin: 80px auto 60px;
    }
    
    .faq-left h2 {
        font-size: 28px;
    }
    
    .contact-form-card {
        padding: 28px;
    }
    
    .info-card {
        padding: 22px 20px;
    }
    
    .image-carousel {
        min-height: 320px;
    }
    
    .slide-overlay {
        padding: 16px 14px 10px;
    }
    
    .slide-overlay span {
        font-size: 14px;
    }
    
    .carousel-dots {
        gap: 8px;
    }
}

/* ----------------------------------------------
   ANIMATIONS
---------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item,
.info-card,
.contact-form-card,
.faq-contact-card {
    animation: fadeInUp 0.5s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.05s; }
.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.15s; }
.faq-item:nth-child(4) { animation-delay: 0.2s; }
.faq-item:nth-child(5) { animation-delay: 0.25s; }
.faq-item:nth-child(6) { animation-delay: 0.3s; }

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }

.social-links a {
    text-decoration: none;
    font-style: italic;
    color: #000000a8;
    font-size: 15px;
}

.social-links a:hover {
    color: #6D5F32;
}