/* Custom Fonts */
@font-face {
    font-family: 'Neiko';
    src: url('../fonts/behance-67aa30710eea1.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Ensures text remains visible during font load */
}

/* Ethnocentric Font */
@font-face {
    font-family: 'Ethnocentric';
    src: url('../fonts/Ethnocentric Book.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Portfolio Filters */
.portfolio .container {
    padding-top: 20px;
}

.filters {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-button {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid #1D1F1E;
    background: #FFFFFF;
    color: #1D1F1E;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.filter-button:hover {
    background: #1D1F1E;
    color: #FFFFFF;
}

.filter-button.active {
    background: #A79C2F;
    color: #FFFFFF;
    border-color: #A79C2F;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    background: #f7f7f7;
    cursor: pointer;
    position: relative;
}

.portfolio-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.portfolio-item:hover::after {
    opacity: 1;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
}

.portfolio-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.portfolio-item.hidden {
    display: none;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #A79C2F;
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
    font-size: 18px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

/* Package Selection */
.package-selection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.package-select-card {
    background: #FFFFFF;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.package-select-card:hover {
    border-color: #A79C2F;
    box-shadow: 0 4px 20px rgba(167, 156, 47, 0.1);
}

.package-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.package-header h3 {
    font-size: 22px;
    font-weight: 400;
    font-family: 'Ethnocentric', 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    color: #1D1F1E;
}

.package-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.package-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.package-option:hover {
    background: #f5f5f5;
    border-color: #A79C2F;
}

.package-option input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #A79C2F;
}

.package-option-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.package-option-content strong {
    color: #1D1F1E;
    font-size: 15px;
    font-weight: 600;
}

.package-option-content small {
    color: #666;
    font-size: 13px;
}

.package-option input[type="checkbox"]:checked + .package-option-content strong {
    color: #A79C2F;
}

.package-price {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #A79C2F;
    font-weight: 700;
    font-size: 16px;
    margin-top: 8px;
}

.save-badge {
    background: #4CAF50;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-with-options {
    flex-direction: column;
    align-items: stretch;
}

.package-website-select {
    width: 100%;
    padding: 10px 12px;
    margin-top: 10px;
    border: 2px solid #A79C2F;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    background: white;
    color: #1D1F1E;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-website-select:hover {
    border-color: #8f8628;
    background: #fafafa;
}

.package-website-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(167, 156, 47, 0.2);
}

.package-savings-note {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #4CAF50;
    font-weight: 600;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .package-selection-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Custom Notification Popup */
.notification-popup {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.notification-popup.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    text-align: center;
}

.notification-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.notification-body h3 {
    font-family: 'Ethnocentric', 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    font-size: 20px;
    color: #1D1F1E;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notification-body p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.notification-btn {
    font-family: 'Ethnocentric', 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    background: #A79C2F;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.notification-btn:hover {
    background: #8f8628;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(167, 156, 47, 0.3);
}

.notification-btn:active {
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Quote Request Modal */
.quote-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    overflow-y: auto;
}

.quote-modal-content {
    background-color: #FFFFFF;
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-modal-content h3 {
    font-family: 'Ethnocentric', 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    font-size: 24px;
    color: #1D1F1E;
    margin-bottom: 10px;
    font-weight: 400;
}

.modal-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.6;
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #666;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #1D1F1E;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #A79C2F;
    box-shadow: 0 0 0 3px rgba(167, 156, 47, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 10px;
}

.btn-cancel,
.btn-submit {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel {
    background: #f5f5f5;
    color: #666;
}

.btn-cancel:hover {
    background: #e0e0e0;
    color: #333;
}

.btn-submit {
    background: #A79C2F;
    color: #FFFFFF;
    flex: 1;
}

.btn-submit:hover {
    background: #8f8628;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(167, 156, 47, 0.3);
}

/* Enhanced Calculator Styles */
.calculator-section {
    margin-bottom: 30px;
    padding: 25px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
}

.calculator-section-title {
    font-family: 'Ethnocentric', 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1D1F1E;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #A79C2F;
}

.quote-field-enhanced {
    margin-bottom: 20px;
}

.quote-field-enhanced:last-child {
    margin-bottom: 0;
}

.quote-field-enhanced label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.calculator-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calculator-select:hover {
    border-color: #A79C2F;
}

.calculator-select:focus {
    outline: none;
    border-color: #A79C2F;
    box-shadow: 0 0 0 3px rgba(167, 156, 47, 0.1);
}

.field-description {
    margin-top: 8px;
    font-size: 13px;
    color: #666;
    font-style: italic;
    min-height: 20px;
}

.quote-field-checkbox {
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    border-color: #A79C2F;
    background: #fafafa;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #A79C2F;
}

.checkbox-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.checkbox-content strong {
    color: #1D1F1E;
    font-size: 15px;
}

.checkbox-content small {
    color: #666;
    font-size: 13px;
}

.price-tag {
    color: #A79C2F;
    font-weight: 600;
    font-size: 14px;
    margin-top: 4px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: #A79C2F;
    color: white;
    font-size: 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
}

.qty-btn:hover {
    background: #8f8628;
    transform: scale(1.05);
}

.qty-btn:active {
    transform: scale(0.95);
}

.quantity-control input[type="number"] {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #1D1F1E;
    background: transparent;
}

.unit-price {
    color: #666;
    font-size: 14px;
    margin-left: auto;
}

.calculator-options {
    margin: 25px 0;
    padding: 15px;
    background: #f0f8ff;
    border-radius: 8px;
    border: 1px solid #d0e7ff;
}

.option-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #333;
    font-size: 14px;
}

.option-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #A79C2F;
}

.discount-badge {
    background: #4CAF50;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 8px;
}

/* Quotation Button */
#sendQuoteBtn {
    font-family: 'Ethnocentric', 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1rem !important;
    padding: 15px 35px !important;
    background: #A79C2F;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#sendQuoteBtn:hover {
    background: #8c8329;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Neiko', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    color: #1D1F1E;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    height: 45px;
    width: auto;
    cursor: pointer;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #1D1F1E;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #A79C2F;
}

.cta-button {
    background: #FFFFFF;
    color: #1D1F1E;
    border: 1px solid #1D1F1E;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #1D1F1E;
    color: #FFFFFF;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1D1F1E;
    transition: all 0.3s ease;
    border-radius: 2px;
}


.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('../assets/HeroSectionBackground.png') center/cover no-repeat;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 72px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1D1F1E;
    font-family: 'Ethnocentric', 'Arial Black', 'Arial Bold', Gadget, sans-serif;
}

/* Highlight Word Animation */
.highlight-word {
    display: inline-block;
    animation: accentPulse 4s ease-in-out infinite;
}

.hero-title .highlight-word:nth-child(2) {
    animation-delay: 2s;
}

@keyframes accentPulse {
    0%, 100% {
        color: inherit;
    }
    50% {
        color: #A79C2F;
    }
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: #1D1F1E;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-button {
    background: #A79C2F;
    color: #FFFFFF;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(167, 156, 47, 0.3);
    font-family: 'Ethnocentric', 'Arial Black', 'Arial Bold', Gadget, sans-serif;
}

.hero-button:hover {
    background: #8f8628;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167, 156, 47, 0.4);
}

/* Carousel Section */
.carousel-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.carousel-title {
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.4;
    color: #1D1F1E;
    font-family: 'Neiko', sans-serif;
}

.carousel {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: calc(25% - 15px);
    flex-shrink: 0;
}
.carousel-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    max-width: 100%;
    min-height: 300px;
    background: #f5f5f5;
    opacity: 1;
    visibility: visible;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #1D1F1E;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #1D1F1E;
    color: #FFFFFF;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #FFFFFF;
    color: #FFFFFF;
}

.services .container {
    background: #1D1F1E;
    padding: 60px 80px;
    border-radius: 30px;
}

.section-title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 60px;
    color: #FFFFFF;
    font-family: 'Ethnocentric', 'Arial Black', 'Arial Bold', Gadget, sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
}

.service-card {
    position: relative;
}

.service-card .service-number {
    font-size: 72px;
    font-weight: 700;
    color: rgba(167, 156, 47, 0.15);
    line-height: 1;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-family: 'Ethnocentric', 'Arial Black', 'Arial Bold', Gadget, sans-serif;
}

.service-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-card ul li {
    padding-left: 20px;
    margin-bottom: 8px;
    position: relative;
    font-size: 15px;
    color: #FFFFFF;
}

.service-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #A79C2F;
}

.read-more {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    display: inline-block;
    transition: color 0.3s ease;
    cursor: pointer;
}

.read-more:hover {
    color: #A79C2F;
}

/* Packages Section */
.packages-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.packages-title {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #FFFFFF;
    font-family: 'Ethnocentric', 'Arial Black', 'Arial Bold', Gadget, sans-serif;
}

.packages-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.package-card {
    position: relative;
}

.package-number {
    font-size: 72px;
    font-weight: 700;
    color: rgba(167, 156, 47, 0.2);
    line-height: 1;
    margin-bottom: 20px;
}

.package-card h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #FFFFFF;
    font-family: 'Ethnocentric', 'Arial Black', 'Arial Bold', Gadget, sans-serif;
}

.package-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.package-card ul li {
    padding-left: 20px;
    margin-bottom: 12px;
    position: relative;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 1.6;
}

.package-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #A79C2F;
}

.package-card ul li strong {
    color: #A79C2F;
}

.package-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-top: 20px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #FFFFFF;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 50px 40px 40px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    color: #1D1F1E;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #A79C2F;
}

.modal-body h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #1D1F1E;
    font-family: 'Ethnocentric', 'Arial Black', 'Arial Bold', Gadget, sans-serif;
}

.modal-body .service-number {
    font-size: 56px;
    color: rgba(167, 156, 47, 0.3);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.modal-body ul {
    list-style: none;
    margin-bottom: 20px;
}

.modal-body ul li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #1D1F1E;
    line-height: 1.6;
}

.modal-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #A79C2F;
    font-weight: 600;
}

.modal-body .service-location {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #FFFFFF;
}

.faq-title {
    font-size: 48px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 15px;
    color: #1D1F1E;
    font-family: 'Ethnocentric', 'Arial Black', 'Arial Bold', Gadget, sans-serif;
}

.faq-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    font-size: 16px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.faq-question:hover {
    color: #A79C2F;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
    pointer-events: none; /* Let the click go through to the button */
    margin-left: 15px; /* Add some spacing between text and icon */
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-bottom: 25px;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.faq-contact {
    max-width: 800px;
    margin: 0 auto;
    background: #1D1F1E;
    color: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
}

.faq-contact h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    font-family: 'Ethnocentric', 'Arial Black', 'Arial Bold', Gadget, sans-serif;
}

.faq-contact p {
    font-size: 15px;
    line-height: 1.8;
}

.faq-contact a {
    color: #FFFFFF;
    text-decoration: underline;
}

.faq-contact strong {
    color: #FFFFFF;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: #FFFFFF;
}

.reviews-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.review-track {
    position: relative;
}

.review-slide {
    display: none;
}

.review-slide.active {
    display: block;
}

.review-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.review-image {
    flex-shrink: 0;
}

.review-image img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
}

.review-text blockquote {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #1D1F1E;
    font-weight: 400;
}

.review-author {
    font-size: 16px;
    font-weight: 600;
    color: #1D1F1E;
    margin-bottom: 5px;
}

.review-role {
    font-size: 14px;
    color: #666;
}

.review-controls {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.review-btn {
    background: #FFFFFF;
    border: 1px solid #1D1F1E;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-btn:hover {
    background: #1D1F1E;
    color: #FFFFFF;
}

/* Banner Section */
.banner {
    padding: 100px 0;
    background: #FFFFFF;
}

.banner .container {
    background: #1D1F1E;
    padding: 60px 80px;
    border-radius: 30px;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-text h2 {
    font-size: 42px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 10px;
    font-family: 'Ethnocentric', 'Arial Black', 'Arial Bold', Gadget, sans-serif;
}

.banner-text p {
    font-size: 16px;
    color: #FFFFFF;
}

.banner-button {
    background: #FFFFFF;
    color: #1D1F1E;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Ethnocentric', 'Arial Black', 'Arial Bold', Gadget, sans-serif;
}

.banner-button:hover {
    background: #A79C2F;
    color: #FFFFFF;
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    position: relative;
    background-image: url('../assets/HeroSectionBackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #1D1F1E;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1D1F1E;
    font-family: 'Ethnocentric', 'Arial Black', 'Arial Bold', Gadget, sans-serif;
}

.footer-column a {
    display: block;
    color: #666;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #A79C2F;
}

.footer-newsletter {
    background: #1D1F1E;
    padding: 30px;
    border-radius: 15px;
    color: #FFFFFF;
}

.footer-newsletter h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
    font-family: 'Ethnocentric', 'Arial Black', 'Arial Bold', Gadget, sans-serif;
}

.footer-newsletter p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    padding: 14px 18px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    background: #FFFFFF;
    color: #1D1F1E;
}

.newsletter-form button {
    padding: 14px 18px;
    background: #A79C2F;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Ethnocentric', 'Arial Black', 'Arial Bold', Gadget, sans-serif;
}

.newsletter-form button:hover {
    background: #8f8628;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #1D1F1E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1D1F1E;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #1D1F1E;
    color: #FFFFFF;
}

.copyright {
    font-size: 13px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .carousel-slide {
        min-width: calc(33.333% - 14px);
    }
    
    .services-grid {
        gap: 40px;
    }
    
    .review-content {
        gap: 40px;
    }
    
    .review-image img {
        width: 280px;
        height: 280px;
    }
    
    .review-text blockquote {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 70px;
    }
    
    /* Mobile Menu Container */
    .nav-wrapper {
        position: relative;
    }
    
    /* Mobile Menu Styles */
    .nav {
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 0;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        pointer-events: none;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        max-height: 500px; /* Adjust based on your content */
        padding: 20px 0;
        pointer-events: auto;
    }
    
    .nav a {
        display: block;
        padding: 12px 20px;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: #1D1F1E;
        text-decoration: none;
        transition: background-color 0.2s ease;
    }
    
    .nav a:hover {
        background-color: rgba(167, 156, 47, 0.1);
    }
    
    /* Hamburger Button */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: relative;
    }
    
    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #1D1F1E;
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Active state is now defined above */
    
    .nav a {
        font-size: 18px;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .cta-button {
        display: none;
    }
    
    .nav::after {
        content: '';
        display: block;
        margin-top: 20px;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .carousel-slide {
        min-width: calc(50% - 10px);
    }
    
    .carousel-slide img {
        height: 250px;
        min-height: 250px;
        object-fit: contain;
        background: #f5f5f5;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Hide carousel on tablet devices */
    .carousel {
        display: none;
    }
    
    /* Keep the carousel title visible */
    .carousel-title {
        display: block !important;
    }
    
    .services .container {
        padding: 40px 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .review-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .review-image img {
        width: 100%;
        max-width: 350px;
    }
    
    .banner .container {
        padding: 40px 30px;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .modal-content {
        padding: 40px 25px 30px;
    }
    
    .modal-body h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .carousel-title {
        font-size: 28px;
    }
    
    .carousel-slide {
        min-width: 100%;
    }
    
    .carousel-slide img {
        height: 200px;
        min-height: 200px;
        object-fit: contain;
        background: #f5f5f5;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .carousel-track {
        gap: 15px;
    }
    
    /* Hide carousel on mobile devices */
    .carousel {
        display: none;
    }
    
    /* Keep the carousel title visible */
    .carousel-title {
        display: block !important;
    }
    
    .services .container {
        padding: 30px 20px;
    }
    
    .section-title,
    .faq-title {
        font-size: 32px;
    }
    
    .packages-title {
        font-size: 32px;
    }
    
    .package-number {
        font-size: 56px;
    }
    
    .banner .container {
        padding: 30px 20px;
    }
    
    .banner-text h2 {
        font-size: 28px;
    }
}

/* Quotation Calculator */
.quote-card {
    background: #1D1F1E;
    color: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #2a2d2b;
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
}

.quote-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.quote-field input[type="number"],
.quote-field select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #3a3d3b;
    background: #0f100f;
    color: #FFFFFF;
}

.quote-inline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quote-inline span {
    opacity: 0.85;
}

.quote-options {
    margin-top: 16px;
}

.quote-result {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px dashed #3a3d3b;
}

.quote-line {
    margin: 4px 0;
}

.quote-line.package {
    color: #A79C2F;
}

.quote-total span {
    display: block;
    font-size: 13px;
    opacity: 0.85;
}

.quote-total h3 {
    font-size: 28px;
    font-weight: 800;
}

@media (max-width: 768px) {
    .quote-grid {
        grid-template-columns: 1fr;
    }
    .quote-result {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Chatbot Styles */
.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #A79C2F;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(167, 156, 47, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #FFFFFF;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(167, 156, 47, 0.5);
}

.chatbot-toggle.active {
    background: #1D1F1E;
}

.chatbot-notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 400px;
    height: 600px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s ease;
}

.chatbot-container.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.chatbot-header {
    background: linear-gradient(135deg, #A79C2F 0%, #8f8628 100%);
    color: #FFFFFF;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFFFFF;
    padding: 5px;
}

.chatbot-header-text h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    font-family: 'Ethnocentric', 'Arial Black', 'Arial Bold', Gadget, sans-serif;
}

.chatbot-status {
    font-size: 12px;
    margin: 0;
    opacity: 0.9;
}

.chatbot-close {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-close:hover {
    transform: rotate(90deg);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #f9f9f9;
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #A79C2F;
    border-radius: 3px;
}

.chatbot-message {
    display: flex;
    gap: 10px;
    animation: messageSlideIn 0.3s ease;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #A79C2F;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.user-message .message-avatar {
    background: #1D1F1E;
}

.message-content {
    background: #FFFFFF;
    padding: 12px 16px;
    border-radius: 15px;
    max-width: 75%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-content {
    background: #A79C2F;
    color: #FFFFFF;
}

.message-content p {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.5;
}

.message-content p:last-of-type {
    margin-bottom: 0;
}

.message-time {
    font-size: 11px;
    opacity: 0.6;
    display: block;
    margin-top: 5px;
}

.chatbot-quick-questions {
    padding: 15px 20px;
    background: #FFFFFF;
    border-top: 1px solid #e0e0e0;
    max-height: 200px;
    overflow-y: auto;
}

.chatbot-quick-questions::-webkit-scrollbar {
    width: 6px;
}

.chatbot-quick-questions::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.chatbot-quick-questions::-webkit-scrollbar-thumb {
    background: #A79C2F;
    border-radius: 3px;
}

.chatbot-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-btn {
    padding: 8px 14px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #333;
}

.category-btn:hover {
    background: #A79C2F;
    color: #FFFFFF;
    border-color: #A79C2F;
}

.chatbot-questions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.questions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.questions-header h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #1D1F1E;
}

.back-btn {
    background: none;
    border: none;
    color: #A79C2F;
    font-size: 12px;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s ease;
}

.back-btn:hover {
    color: #8f8628;
}

.questions-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.question-btn {
    padding: 10px 12px;
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    font-size: 13px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #333;
}

.question-btn:hover {
    background: #A79C2F;
    color: #FFFFFF;
    border-color: #A79C2F;
    transform: translateX(5px);
}

.related-questions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.related-title {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin: 0 0 5px 0;
}

.related-question-btn {
    padding: 8px 12px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    font-size: 12px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #856404;
}

.related-question-btn:hover {
    background: #ffc107;
    color: #FFFFFF;
    transform: translateX(5px);
}

.chatbot-input-area {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    background: #FFFFFF;
    border-top: 1px solid #e0e0e0;
    border-radius: 0 0 20px 20px;
}

.chatbot-input-area input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.chatbot-input-area input:focus {
    border-color: #A79C2F;
}

.chatbot-input-area button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #A79C2F;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.chatbot-input-area button:hover {
    background: #8f8628;
    transform: scale(1.05);
}

/* Responsive Chatbot */
@media (max-width: 768px) {
    .chatbot-container {
        width: calc(100% - 20px);
        right: 10px;
        left: 10px;
        bottom: 90px;
        height: 500px;
    }
    
    .chatbot-toggle {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .chatbot-container {
        height: calc(100vh - 120px);
        max-height: 600px;
    }
}

/* ============================================
   CAREERS PAGE STYLES
   ============================================ */

.careers-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #1D1F1E 0%, #2a2d2b 100%);
    text-align: center;
    color: #FFFFFF;
}

.careers-hero h1 {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: 'Ethnocentric', 'Arial Black', sans-serif;
}

.careers-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.careers-content {
    padding: 80px 0;
    background: #FFFFFF;
}

.careers-status {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 50px 40px;
    background: #f9f9f9;
    border-radius: 20px;
    border: 2px solid #A79C2F;
}

.careers-status h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1D1F1E;
    font-family: 'Ethnocentric', 'Arial Black', sans-serif;
}

.careers-status p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.careers-values {
    margin-bottom: 80px;
}

.careers-values h2 {
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    color: #1D1F1E;
    font-family: 'Ethnocentric', 'Arial Black', sans-serif;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: #f9f9f9;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1D1F1E;
    font-family: 'Ethnocentric', 'Arial Black', sans-serif;
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.cv-submission {
    background: #1D1F1E;
    padding: 80px 0;
    color: #FFFFFF;
}

.cv-submission h2 {
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Ethnocentric', 'Arial Black', sans-serif;
}

.cv-submission > p {
    text-align: center;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.cv-form {
    max-width: 600px;
    margin: 0 auto;
    background: #2a2d2b;
    padding: 50px;
    border-radius: 20px;
}

.cv-form .form-group {
    margin-bottom: 25px;
}

.cv-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #FFFFFF;
}

.cv-form .form-group input,
.cv-form .form-group select,
.cv-form .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #3a3d3b;
    border-radius: 10px;
    font-size: 15px;
    background: #1D1F1E;
    color: #FFFFFF;
    transition: border-color 0.3s ease;
}

.cv-form .form-group input:focus,
.cv-form .form-group select:focus,
.cv-form .form-group textarea:focus {
    outline: none;
    border-color: #A79C2F;
}

.cv-form .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.file-upload {
    position: relative;
    overflow: hidden;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label {
    display: block;
    padding: 14px 18px;
    background: #1D1F1E;
    border: 2px dashed #A79C2F;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    background: #2a2d2b;
    border-color: #8f8628;
}

.file-upload-label span {
    color: #A79C2F;
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #A79C2F;
    color: #FFFFFF;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Ethnocentric', 'Arial Black', sans-serif;
}

.submit-btn:hover {
    background: #8f8628;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167, 156, 47, 0.4);
}

.form-note {
    margin-top: 20px;
    font-size: 13px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.form-note a {
    color: #A79C2F;
    text-decoration: underline;
}

/* Careers Page Responsive */
@media (max-width: 768px) {
    .careers-hero h1 {
        font-size: 36px;
    }
    
    .careers-hero p {
        font-size: 16px;
    }
    
    .careers-status {
        padding: 30px 20px;
    }
    
    .careers-status h2 {
        font-size: 24px;
    }
    
    .careers-values h2,
    .cv-submission h2 {
        font-size: 32px;
    }
    
    .cv-form {
        padding: 30px 20px;
    }
}
