/* Color Palette & Variables */
:root {
    --primary: #D97706;
    --secondary: #F4C27A;
    --accent: #8B5E3C;
    --bg-color: #FFF8F2;
    --text-color: #2E2E2E;
}

/* Reset & Basic Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

button, .custom-btn, .nav-links a {
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.text-center { text-align: center; }
.bg-white { background-color: #ffffff; }
.bg-light { background-color: var(--bg-color); }

/* Buttons */
.custom-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #b45b00 100%);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.custom-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(217, 119, 6, 0.3);
}

.custom-btn .arrow-icon {
    transition: transform 0.3s ease;
}

.custom-btn:hover .arrow-icon {
    transform: translateX(5px);
}

.outline-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.outline-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-sizing: border-box;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    padding: 3px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.navbar.scrolled .logo-text {
    color: var(--text-color);
}

.logo-text .highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--text-color);
}

.nav-links a:hover {
    color: var(--primary) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--text-color);
}

.mobile-drawer {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1001;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.mobile-drawer.active {
    display: flex;
}

.mobile-drawer a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('images/ht2.jpg') center/cover;
    display: flex;
    align-items: center;
    padding: 100px 40px 60px;
    color: #fff;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(244, 194, 122, 0.2);
    color: var(--secondary);
    border: 1px solid rgba(244, 194, 122, 0.4);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-text {
    color: var(--secondary);
}

.hero-text p {
    font-size: 15px;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.floating-img-card {
    width: 320px;
    height: 320px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    border: 4px solid rgba(244, 194, 122, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    animation: float 4s ease-in-out infinite;
}

.floating-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 14px;
}

.underline {
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }

/* Features */
.feature-card {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(244, 194, 122, 0.4);
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(139, 94, 60, 0.15);
}

.icon-box {
    width: 48px;
    height: 48px;
    background: rgba(217, 119, 6, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-card h3 { font-size: 18px; margin-bottom: 6px; }
.feature-card p { font-size: 13px; color: #666; line-height: 1.5; }

/* About */
.about-img-container {
    position: relative;
}

.about-img-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: #fff;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
}

.experience-badge .number { font-size: 28px; font-weight: 800; }
.experience-badge .label { font-size: 10px; text-transform: uppercase; }

.sub-heading { color: var(--primary); font-weight: 700; font-size: 14px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.about-content h2 { font-size: 32px; margin-bottom: 20px; }
.about-content p { color: #555; line-height: 1.7; margin-bottom: 30px; font-size: 14px; }

/* Products */
.product-card {
    background: var(--bg-color);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(244, 194, 122, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-img-wrapper {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1) rotate(2deg);
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .overlay { opacity: 1; }

.product-card h3 {
    padding: 15px;
    font-size: 16px;
}

/* Timeline */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.timeline-step {
    background: #fff;
    padding: 25px 15px;
    border-radius: 16px;
    border-top: 4px solid var(--primary);
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.step-num {
    width: 36px;
    height: 36px;
    background: rgba(217, 119, 6, 0.1);
    color: var(--primary);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.timeline-step h3 { font-size: 15px; margin-bottom: 6px; }
.timeline-step p { font-size: 12px; color: #777; }

/* Stats */
.stats-section {
    background: var(--accent);
    color: #fff;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 5px;
}

.stat-label { font-size: 14px; font-weight: 500; }

/* Export Tags */
.tags-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.country-tag {
    padding: 10px 24px;
    background: var(--bg-color);
    border: 1px solid var(--secondary);
    border-radius: 30px;
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
}

.country-tag.active {
    background: var(--primary);
    color: #fff;
}

.map-placeholder {
    background: var(--bg-color);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(244, 194, 122, 0.3);
}

.map-icon {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(244, 194, 122, 0.3);
}

.stars { color: var(--primary); margin-bottom: 15px; }
.review { font-style: italic; color: #555; font-size: 13px; line-height: 1.6; margin-bottom: 20px; }
.testimonial-card h4 { font-size: 14px; }
.testimonial-card span { font-size: 12px; color: #aaa; }

/* Contact */
.contact-info h2 { font-size: 32px; margin-bottom: 10px; }
.subtitle { color: #666; margin-bottom: 30px; font-size: 14px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }
.info-item { display: flex; align-items: center; gap: 15px; }
.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 1px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.info-item .label { font-size: 11px; color: #888; text-transform: uppercase; font-weight: 700; }
.info-item .val { font-weight: 700; font-size: 14px; }

.map-box { height: 200px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(244, 194, 122, 0.4); }

.contact-form-card {
    background: var(--bg-color);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(244, 194, 122, 0.4);
}

.contact-form-card h3 { margin-bottom: 25px; font-size: 22px; }

.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 13px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.2);
}

.submit-btn { width: 100%; justify-content: center; padding: 14px; }

/* Footer */
.footer { background: #2E2E2E; color: #fff; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-desc { color: #aaa; font-size: 13px; margin-top: 15px; line-height: 1.6; }
.footer h4 { color: var(--secondary); margin-bottom: 20px; font-size: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #aaa; text-decoration: none; font-size: 13px; transition: color 0.3s ease; }
.footer-links a:hover { color: #fff; }

.social-icons { display: flex; gap: 12px; }
.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #444;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-icons a:hover { background: var(--primary); }

.copyright { text-align: center; border-top: 1px solid #444; padding-top: 20px; font-size: 12px; color: #777; }

/* Responsive Media Queries */
@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: 1fr; }
    .timeline-grid { grid-template-columns: 1fr; }
    .hero-container, .grid-2 { grid-template-columns: 1fr; }
    .nav-links, .nav-btn-wrapper { display: none; }
    .mobile-menu-btn { display: block; }
}

@media (max-width: 600px) {
    .grid-4 { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero-text h1 { font-size: 32px; }
}

/*====================================
            FOOTER
====================================*/

.footer{

    background:#0F0F0F;
    border-top:2px solid #B78B47;
    padding:35px 0;

}

.footer-bottom{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;

}

.footer-copy{

    flex:1;

}

.footer-copy p{

    color:#F5F1E8;
    font-size:17px;
    line-height:1.8;

}

.footer-copy span{

    color:#B78B47;
    font-weight:600;

}

.footer-copy a{

    color:#B78B47;
    transition:.35s ease;

}

.footer-copy a:hover{

    color:#E6C88B;

}

.footer-right{

    display:flex;
    align-items:center;
    gap:30px;

}

.footer-right img{

    width:180px;
    transition:.4s;

}

.footer-right img:hover{

    transform:scale(1.05);

}

/*==========================
      SCROLL BUTTON
==========================*/

.scroll-top{

    width:65px;
    height:65px;
    border:2px solid #B78B47;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#B78B47;
    font-size:22px;
    transition:.4s;
    background:transparent;

}

.scroll-top:hover{

    background:#B78B47;
    color:#0F0F0F;
    transform:translateY(-6px);

}

/*==========================
      RESPONSIVE
==========================*/

@media(max-width:991px){

.footer-bottom{

    flex-direction:column;
    text-align:center;

}

.footer-right{

    justify-content:center;

}

.footer-right img{

    width:150px;

}

.scroll-top{

    width:55px;
    height:55px;
    font-size:18px;

}

.footer-copy p{

    font-size:15px;

}

}

@media(max-width:576px){

.footer{

    padding:25px 0;

}

.footer-copy p{

    font-size:14px;
    line-height:1.7;

}

.footer-right{

    flex-direction:column;
    gap:20px;

}

.footer-right img{

    width:130px;

}

}