/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Poppins', sans-serif; color: #1a1a2e; line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color .3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== COLORS ===== */
:root {
  --primary: #e6007e;
  --primary-dark: #c4006b;
  --secondary: #2c3743;
  --dark: #1a1a2e;
  --light: #f8f9fb;
  --gradient: linear-gradient(135deg, #e6007e, #ff3008);
  --shadow: 0 10px 40px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: .95rem;
  transition: all .3s ease; cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--gradient); color: #fff; border-color: transparent; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(230,0,126,.3); }
.btn-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-sm { padding: 8px 20px; font-size: .85rem; }
.btn-full { width: 100%; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 50px; }
.section-tag {
  display: inline-block; padding: 6px 18px; border-radius: 50px;
  background: rgba(230,0,126,.08); color: var(--primary); font-weight: 600;
  font-size: .85rem; margin-bottom: 12px;
}
.section-header h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.section-header p { color: #666; font-size: 1rem; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--secondary); color: #fff; padding: 8px 0; font-size: .85rem; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 20px; }
.top-bar-left a { display: flex; align-items: center; gap: 6px; color: #ccc; }
.top-bar-left a:hover { color: #fff; }
.top-bar-right { display: flex; gap: 12px; }
.top-bar-right a { color: #ccc; display: flex; }
.top-bar-right a:hover { color: var(--primary); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 1000; background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.06); padding: 12px 0; transition: all .3s;
}
.navbar.scrolled { padding: 8px 0; box-shadow: 0 4px 30px rgba(0,0,0,.1); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 800; }
.logo-city { color: var(--dark); }
.logo-scent { color: var(--primary); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 500; font-size: .95rem; position: relative; padding: 5px 0; }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--gradient); transition: width .3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
.menu-toggle span { display: block; width: 25px; height: 3px; background: var(--dark); margin: 5px 0; border-radius: 3px; transition: all .3s; }

/* ===== HERO ===== */
.hero { position: relative; padding: 80px 0; overflow: hidden; min-height: 85vh; display: flex; align-items: center; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(230,0,126,.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,48,8,.04) 0%, transparent 50%);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block; padding: 8px 20px; border-radius: 50px;
  background: rgba(230,0,126,.08); color: var(--primary); font-weight: 600;
  font-size: .85rem; margin-bottom: 20px;
}
.hero-text h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; color: var(--dark); }
.hero-text p { font-size: 1.1rem; color: #555; margin-bottom: 30px; max-width: 500px; }
.hero-buttons { display: flex; gap: 15px; margin-bottom: 40px; }
.hero-stats-mini { display: flex; gap: 30px; }
.hero-stats-mini div { text-align: center; }
.hero-stats-mini strong { display: block; font-size: 1.3rem; color: var(--dark); }
.hero-stats-mini span { font-size: .8rem; color: #888; }

.hero-img-wrapper { position: relative; }
.hero-img-wrapper > img {
  border-radius: 20px; width: 100%; height: 500px; object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.hero-float-card {
  position: absolute; background: #fff; padding: 14px 20px; border-radius: 16px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
  animation: float 3s ease-in-out infinite;
}
.card-1 { top: 30px; left: -30px; }
.card-2 { bottom: 40px; right: -20px; animation-delay: 1.5s; }
.float-icon { font-size: 2rem; }
.hero-float-card strong { font-size: .9rem; }
.hero-float-card small { color: #888; font-size: .75rem; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== BRANDS ===== */
.brands { padding: 60px 0; background: var(--light); overflow: hidden; }
.brands-track { overflow: hidden; margin-top: 20px; }
.brands-slide {
  display: flex; gap: 60px; animation: scroll 20s linear infinite;
  width: max-content;
}
.brand-item { flex-shrink: 0; display: flex; align-items: center; }
.brand-item img { height: 40px; opacity: .5; filter: grayscale(100%); transition: all .3s; }
.brand-item:hover img { opacity: 1; filter: grayscale(0); }

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== WHY US ===== */
.why-us { padding: 80px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.feature-card {
  text-align: center; padding: 35px 25px; border-radius: 20px;
  background: #fff; border: 1px solid #eee; transition: all .3s;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-icon {
  width: 80px; height: 80px; border-radius: 20px; display: flex;
  align-items: center; justify-content: center; margin: 0 auto 20px;
  background: rgba(230,0,126,.06);
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-card p { color: #666; font-size: .9rem; }

/* ===== STATS ===== */
.stats {
  padding: 60px 0;
  background: var(--gradient);
  color: #fff;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-number { font-size: 3rem; font-weight: 800; }
.stat-label { font-size: .95rem; opacity: .9; }

/* ===== PRODUCTS ===== */
.products { padding: 80px 0; background: var(--light); }
.product-filters { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 24px; border-radius: 50px; border: 2px solid #ddd; background: #fff;
  cursor: pointer; font-weight: 500; transition: all .3s; font-family: inherit; font-size: .9rem;
}
.filter-btn.active, .filter-btn:hover { border-color: var(--primary); background: var(--primary); color: #fff; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.product-card {
  background: #fff; border-radius: 20px; overflow: hidden; position: relative;
  transition: all .3s; border: 1px solid #eee;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-badge {
  position: absolute; top: 15px; left: 15px; padding: 5px 14px; border-radius: 50px;
  background: var(--gradient); color: #fff; font-size: .75rem; font-weight: 600; z-index: 2;
}
.product-badge.new { background: linear-gradient(135deg, #00c853, #00e676); }
.product-img { height: 220px; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-img img { transform: scale(1.08); }
.product-info { padding: 20px; }
.product-info h3 { font-size: 1.05rem; margin-bottom: 6px; }
.product-desc { color: #888; font-size: .82rem; margin-bottom: 15px; line-height: 1.5; }
.product-bottom { display: flex; justify-content: space-between; align-items: center; }
.product-price { font-size: 1.1rem; font-weight: 700; color: var(--primary); }

/* ===== ABOUT ===== */
.about { padding: 80px 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; }
.about-img-main img { border-radius: 20px; width: 100%; height: 450px; object-fit: cover; }
.about-img-small {
  position: absolute; bottom: -30px; right: -30px; width: 200px;
  border: 5px solid #fff; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-small img { width: 100%; height: 200px; object-fit: cover; }
.about-experience {
  position: absolute; top: -20px; right: 20px; background: var(--gradient); color: #fff;
  width: 110px; height: 110px; border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
}
.exp-number { font-size: 2rem; font-weight: 800; line-height: 1; }
.exp-text { font-size: .65rem; text-align: center; opacity: .9; }
.about-text .section-tag { margin-bottom: 12px; }
.about-text h2 { font-size: 2rem; font-weight: 700; margin-bottom: 20px; }
.about-text > p { color: #555; margin-bottom: 15px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 25px 0; }
.highlight { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: .95rem; }

/* ===== TEAM ===== */
.team { padding: 80px 0; background: var(--light); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.team-card {
  background: #fff; border-radius: 20px; overflow: hidden; text-align: center;
  padding-bottom: 25px; transition: all .3s; border: 1px solid #eee;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-img { position: relative; overflow: hidden; }
.team-img img { width: 100%; height: 280px; object-fit: cover; transition: transform .5s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-social {
  position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; transition: all .4s;
}
.team-card:hover .team-social { bottom: 15px; }
.team-social a {
  width: 36px; height: 36px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); box-shadow: 0 3px 10px rgba(0,0,0,.15); transition: all .3s;
}
.team-social a:hover { background: var(--primary); color: #fff; }
.team-card h3 { margin: 15px 0 4px; font-size: 1.1rem; }
.team-role { color: var(--primary); font-weight: 600; font-size: .85rem; margin-bottom: 8px; }
.team-bio { color: #666; font-size: .85rem; padding: 0 20px; }

/* ===== FAQ ===== */
.faq { padding: 80px 0; }
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item { border: 1px solid #eee; border-radius: 16px; margin-bottom: 12px; overflow: hidden; background: #fff; }
.faq-question {
  width: 100%; padding: 18px 24px; display: flex; justify-content: space-between;
  align-items: center; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--dark); text-align: left;
}
.faq-question svg { transition: transform .3s; flex-shrink: 0; color: var(--primary); }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer p { padding: 0 24px 18px; color: #666; font-size: .95rem; }

/* ===== CONTACT ===== */
.contact { padding: 80px 0; background: var(--light); }
.contact-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
.contact-form-wrapper .section-tag { margin-bottom: 10px; }
.contact-form-wrapper h2 { font-size: 2rem; margin-bottom: 10px; }
.contact-form-wrapper > p { color: #666; margin-bottom: 25px; }
.contact-form { display: flex; flex-direction: column; gap: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 18px; border: 1px solid #ddd; border-radius: 12px;
  font-family: inherit; font-size: .95rem; transition: border-color .3s; outline: none;
  background: #fff;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; }

.contact-info-card {
  background: var(--secondary); color: #fff; padding: 40px 30px; border-radius: 20px;
  position: relative; overflow: hidden;
}
.contact-info-card::before {
  content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px;
  background: rgba(230,0,126,.15); border-radius: 50%;
}
.contact-info-card::after {
  content: ''; position: absolute; bottom: -80px; left: -40px; width: 250px; height: 250px;
  background: rgba(255,48,8,.1); border-radius: 50%;
}
.contact-info-card > * { position: relative; z-index: 1; }
.contact-info-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.contact-info-card > p { opacity: .8; font-size: .9rem; margin-bottom: 30px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 15px; }
.contact-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail strong { display: block; font-size: .9rem; }
.contact-detail p { opacity: .8; font-size: .85rem; margin: 0; }
.contact-social { display: flex; gap: 12px; margin-top: 30px; }
.contact-social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.contact-social a:hover { background: var(--primary); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: #fff; padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { margin-bottom: 15px; display: inline-block; }
.footer-col p { opacity: .7; font-size: .9rem; }
.footer-col h4 { margin-bottom: 15px; font-size: 1rem; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { opacity: .7; font-size: .9rem; transition: all .3s; }
.footer-col ul a:hover { opacity: 1; color: var(--primary); padding-left: 5px; }
.footer-col ul li:not(:has(a)) { opacity: .7; font-size: .9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding: 20px 0;
}
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { opacity: .6; font-size: .85rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { opacity: .6; font-size: .85rem; }
.footer-bottom-links a:hover { opacity: 1; color: var(--primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner, .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-text h1 { font-size: 2.5rem; }
  .features-grid, .products-grid, .team-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar-left { display: none; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: #fff; flex-direction: column; padding: 80px 30px 30px;
    box-shadow: -10px 0 30px rgba(0,0,0,.1); transition: right .3s;
    z-index: 1001;
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 1.1rem; padding: 10px 0; }
  .hero { padding: 50px 0; min-height: auto; }
  .hero-text h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-stats-mini { justify-content: center; }
  .hero-image { order: -1; }
  .hero-float-card { display: none; }
  .about-img-small, .about-experience { display: none; }
  .features-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .section-header h2 { font-size: 1.7rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .stat-number { font-size: 2rem; }
}

@media (max-width: 480px) {
  .products-grid, .team-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}
