/*
Theme Name: Hunger Flame
Theme URI: https://hungerflame.aromanish.com
Author: Aromanish
Author URI: https://aromanish.com
Description: Hunger Flame – Satisfying your hunger flame. A premium hospitality theme for restaurants, eateries, bakeries, fast food, Pakistani & international cuisine, hotels, food centers, sweets, nimcos, snacks, and cultural food experiences.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hungerflame
Tags: food, restaurant, hospitality, bakery, hotel, responsive, custom-colors, custom-menu, featured-images, full-width-template, threaded-comments, blog
*/

/* ===== CSS VARIABLES ===== */
:root {
  --hf-primary: #D4292A;
  --hf-secondary: #FF6B35;
  --hf-gold: #F5A623;
  --hf-dark: #1A0A00;
  --hf-dark2: #2D1500;
  --hf-text: #333333;
  --hf-light: #FFF8F3;
  --hf-white: #FFFFFF;
  --hf-border: #e8d5c4;
  --hf-font-heading: 'Playfair Display', Georgia, serif;
  --hf-font-body: 'Poppins', sans-serif;
  --hf-font-accent: 'Dancing Script', cursive;
  --hf-shadow: 0 4px 24px rgba(212,41,42,0.12);
  --hf-radius: 12px;
  --hf-transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--hf-font-body);
  color: var(--hf-text);
  background: var(--hf-white);
  line-height: 1.7;
  font-size: 16px;
}
a { color: var(--hf-primary); text-decoration: none; transition: var(--hf-transition); }
a:hover { color: var(--hf-secondary); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5,h6 { font-family: var(--hf-font-heading); color: var(--hf-dark); line-height: 1.3; }
ul { list-style: none; }
button, input, textarea, select { font-family: var(--hf-font-body); }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-white { color: var(--hf-white); }
.bg-dark { background: var(--hf-dark); }
.bg-light { background: var(--hf-light); }
.bg-primary { background: var(--hf-primary); }

.section-label {
  font-family: var(--hf-font-accent);
  color: var(--hf-gold);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  position: relative;
}
.section-title.light { color: var(--hf-white); }
.section-subtitle { color: #666; font-size: 1.05rem; max-width: 600px; margin: 0 auto 40px; }
.underline-flame::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--hf-primary), var(--hf-gold));
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--hf-transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--hf-primary), var(--hf-secondary));
  color: var(--hf-white);
  box-shadow: 0 6px 20px rgba(212,41,42,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(212,41,42,0.45); color: var(--hf-white); }
.btn-outline {
  border-color: var(--hf-white);
  color: var(--hf-white);
  background: transparent;
}
.btn-outline:hover { background: var(--hf-white); color: var(--hf-primary); }
.btn-gold {
  background: linear-gradient(135deg, var(--hf-gold), #e8941f);
  color: var(--hf-dark);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.4); color: var(--hf-dark); }

/* ===== TOP BAR ===== */
.hf-topbar {
  background: var(--hf-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  padding: 8px 0;
}
.hf-topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.hf-topbar a { color: rgba(255,255,255,0.75); }
.hf-topbar a:hover { color: var(--hf-gold); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }

/* ===== HEADER ===== */
#hf-header {
  background: var(--hf-white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.hf-logo { display: flex; align-items: center; gap: 12px; }
.hf-logo img { height: 55px; width: auto; }
.logo-text .site-name {
  font-family: var(--hf-font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--hf-dark);
  line-height: 1;
}
.logo-text .site-tagline {
  font-family: var(--hf-font-accent);
  color: var(--hf-primary);
  font-size: 0.85rem;
}

/* NAV */
.hf-nav { display: flex; align-items: center; gap: 4px; }
.hf-nav > li { position: relative; }
.hf-nav > li > a {
  display: block;
  padding: 8px 14px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--hf-dark);
  border-radius: 6px;
  transition: var(--hf-transition);
}
.hf-nav > li > a:hover,
.hf-nav > li.current-menu-item > a { color: var(--hf-primary); background: rgba(212,41,42,0.06); }
.hf-nav .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--hf-white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-radius: var(--hf-radius);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--hf-transition);
  z-index: 100;
  border-top: 3px solid var(--hf-primary);
}
.hf-nav > li:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.hf-nav .sub-menu li a {
  display: block;
  padding: 9px 20px;
  font-size: 0.88rem;
  color: var(--hf-text);
  transition: var(--hf-transition);
}
.hf-nav .sub-menu li a:hover { color: var(--hf-primary); background: var(--hf-light); padding-left: 26px; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--hf-dark); margin: 5px 0; border-radius: 2px;
  transition: var(--hf-transition);
}

/* ===== HERO ===== */
.hf-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--hf-dark) 0%, var(--hf-dark2) 50%, #3D1800 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,10,0,0.85), rgba(212,41,42,0.2)); }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  border: 1px solid var(--hf-gold);
  color: var(--hf-gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--hf-white);
  margin-bottom: 8px;
  line-height: 1.1;
}
.hero-title span { color: var(--hf-gold); }
.hero-subtitle {
  font-family: var(--hf-font-accent);
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--hf-secondary);
  margin-bottom: 20px;
}
.hero-desc { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 36px; max-width: 550px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--hf-gold), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ===== FEATURE STRIP ===== */
.hf-features {
  background: var(--hf-primary);
  padding: 22px 0;
}
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; }
.feature-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 24px;
  color: var(--hf-white);
  border-right: 1px solid rgba(255,255,255,0.2);
}
.feature-item:last-child { border-right: none; }
.feature-icon { font-size: 1.8rem; flex-shrink: 0; }
.feature-text strong { display: block; font-size: 0.95rem; font-weight: 600; }
.feature-text span { font-size: 0.78rem; opacity: 0.8; }

/* ===== ABOUT SECTION ===== */
.hf-about { padding: 90px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img-main { border-radius: 20px; overflow: hidden; box-shadow: var(--hf-shadow); }
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: 16px;
  overflow: hidden;
  border: 6px solid var(--hf-white);
  box-shadow: var(--hf-shadow);
}
.about-img-float img { width: 100%; height: 150px; object-fit: cover; }
.about-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--hf-primary);
  color: var(--hf-white);
  padding: 16px 20px;
  border-radius: var(--hf-radius);
  text-align: center;
  box-shadow: var(--hf-shadow);
}
.about-badge strong { display: block; font-size: 2rem; line-height: 1; }
.about-badge span { font-size: 0.75rem; opacity: 0.9; }
.about-content .section-label { margin-bottom: 6px; }
.about-content p { color: #555; margin-bottom: 16px; line-height: 1.8; }
.about-list { margin: 24px 0; }
.about-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  color: var(--hf-text);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--hf-border);
}
.about-list li::before { content: '🔥'; font-size: 0.9rem; }

/* ===== CATEGORIES / WHAT WE OFFER ===== */
.hf-categories { background: var(--hf-light); padding: 80px 0; }
.cats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.cat-card {
  background: var(--hf-white);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: var(--hf-transition);
  cursor: pointer;
  border-bottom: 3px solid transparent;
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(212,41,42,0.15);
  border-bottom-color: var(--hf-primary);
}
.cat-icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.cat-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.cat-card p { font-size: 0.83rem; color: #777; line-height: 1.6; }
.cat-card .cat-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--hf-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== SERVICES ===== */
.hf-services { padding: 80px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.service-card {
  background: var(--hf-white);
  border: 1px solid var(--hf-border);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--hf-transition);
}
.service-card:hover { box-shadow: 0 12px 40px rgba(212,41,42,0.12); transform: translateY(-4px); }
.service-img { height: 200px; overflow: hidden; }
.service-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-body { padding: 24px; }
.service-icon { font-size: 2rem; margin-bottom: 12px; display:block; }
.service-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-body p { color: #666; font-size: 0.9rem; line-height: 1.7; }
.service-tags { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag {
  background: var(--hf-light);
  color: var(--hf-primary);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* ===== MENU / SPECIALS ===== */
.hf-menu-section { background: var(--hf-dark); padding: 80px 0; }
.menu-tabs { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.menu-tab {
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: var(--hf-transition);
  font-size: 0.9rem;
  font-weight: 500;
}
.menu-tab.active, .menu-tab:hover {
  background: var(--hf-primary);
  color: var(--hf-white);
  border-color: var(--hf-primary);
}
.menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.menu-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--hf-radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: var(--hf-transition);
}
.menu-item:hover { background: rgba(212,41,42,0.15); border-color: var(--hf-primary); }
.menu-item-img { width: 80px; height: 80px; border-radius: 12px; overflow:hidden; flex-shrink:0; }
.menu-item-img img { width:100%; height:100%; object-fit:cover; }
.menu-item-info h4 { color: var(--hf-white); font-size: 1rem; margin-bottom: 4px; }
.menu-item-info p { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.5; }
.menu-item-price { color: var(--hf-gold); font-weight: 700; font-size: 1.1rem; margin-top: 8px; }

/* ===== PRICING ===== */
.hf-pricing { padding: 80px 0; background: var(--hf-light); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.pricing-card {
  background: var(--hf-white);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  border: 2px solid var(--hf-border);
  transition: var(--hf-transition);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:4px;
  background: linear-gradient(90deg, var(--hf-primary), var(--hf-gold));
  transform: scaleX(0);
  transition: var(--hf-transition);
}
.pricing-card:hover::before, .pricing-card.featured::before { transform: scaleX(1); }
.pricing-card.featured {
  border-color: var(--hf-primary);
  box-shadow: 0 20px 60px rgba(212,41,42,0.2);
  transform: scale(1.04);
}
.pricing-badge {
  position: absolute;
  top: 20px; right: -28px;
  background: var(--hf-primary);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 36px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-icon { font-size: 2.5rem; margin-bottom: 16px; }
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.pricing-desc { color: #777; font-size: 0.85rem; margin-bottom: 24px; }
.pricing-price { margin: 24px 0; }
.pricing-price .currency { font-size: 1.2rem; vertical-align: top; color: var(--hf-primary); font-weight: 700; }
.pricing-price .amount { font-size: 3.2rem; font-family: var(--hf-font-heading); color: var(--hf-dark); line-height: 1; }
.pricing-price .period { font-size: 0.85rem; color: #888; }
.pricing-features { margin: 24px 0; text-align: left; }
.pricing-features li {
  padding: 9px 0;
  border-bottom: 1px solid var(--hf-border);
  font-size: 0.88rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li::before { content: '✓'; color: var(--hf-primary); font-weight: 700; }
.pricing-features li.no::before { content: '✗'; color: #ccc; }
.pricing-features li.no { color: #bbb; }

/* ===== TESTIMONIALS ===== */
.hf-testimonials { padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testimonial-card {
  background: var(--hf-light);
  border-radius: 18px;
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 5rem;
  color: var(--hf-primary);
  opacity: 0.15;
  font-family: Georgia;
  line-height: 1;
}
.stars { color: var(--hf-gold); font-size: 1rem; margin-bottom: 12px; }
.testimonial-text { color: #555; font-style: italic; line-height: 1.8; margin-bottom: 20px; font-size: 0.92rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; border: 2px solid var(--hf-primary); }
.author-avatar img { width:100%; height:100%; object-fit: cover; }
.author-name { font-weight: 600; font-size: 0.95rem; color: var(--hf-dark); }
.author-role { font-size: 0.78rem; color: #888; }

/* ===== CTA BANNER ===== */
.hf-cta {
  background: linear-gradient(135deg, var(--hf-primary), var(--hf-dark2));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hf-cta::before {
  content: '🔥';
  position: absolute;
  font-size: 20rem;
  opacity: 0.04;
  top: -50px; right: -50px;
}
.hf-cta h2 { color: var(--hf-white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.hf-cta p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== BLOG ===== */
.hf-blog { padding: 80px 0; background: var(--hf-light); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.blog-card {
  background: var(--hf-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: var(--hf-transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.blog-img { height: 210px; overflow: hidden; position: relative; }
.blog-img img { width:100%; height:100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--hf-primary);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}
.blog-body { padding: 22px; }
.blog-meta { display: flex; gap: 14px; font-size: 0.78rem; color: #888; margin-bottom: 10px; }
.blog-body h3 { font-size: 1.08rem; margin-bottom: 10px; line-height: 1.4; }
.blog-body h3 a { color: var(--hf-dark); }
.blog-body h3 a:hover { color: var(--hf-primary); }
.blog-body p { color: #666; font-size: 0.87rem; line-height: 1.7; margin-bottom: 16px; }
.read-more {
  color: var(--hf-primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.read-more:hover { gap: 8px; }

/* ===== CONTACT ===== */
.hf-contact { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 2rem; margin-bottom: 16px; }
.contact-info p { color: #666; margin-bottom: 30px; line-height: 1.8; }
.contact-items { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 48px; height: 48px;
  background: var(--hf-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid var(--hf-border);
}
.ci-text strong { display: block; font-size: 0.85rem; color: #888; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.ci-text span { color: var(--hf-dark); font-weight: 500; }
.hf-form { background: var(--hf-light); padding: 40px; border-radius: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--hf-dark); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--hf-border);
  border-radius: 10px;
  font-size: 0.9rem;
  background: var(--hf-white);
  transition: var(--hf-transition);
  color: var(--hf-text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--hf-primary);
  box-shadow: 0 0 0 3px rgba(212,41,42,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
.hf-footer {
  background: var(--hf-dark);
  color: rgba(255,255,255,0.75);
}
.footer-main { padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand p { margin: 16px 0 24px; font-size: 0.88rem; line-height: 1.8; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.footer-logo .site-name { font-family: var(--hf-font-heading); color: var(--hf-white); font-size: 1.4rem; }
.footer-logo .site-tagline { font-family: var(--hf-font-accent); color: var(--hf-gold); font-size: 0.82rem; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  transition: var(--hf-transition);
  color: rgba(255,255,255,0.7);
}
.social-link:hover { background: var(--hf-primary); color: white; transform: translateY(-2px); }
.footer-col h4 {
  color: var(--hf-white);
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: var(--hf-transition);
}
.footer-links a:hover { color: var(--hf-gold); padding-left: 4px; }
.footer-newsletter p { font-size: 0.85rem; margin-bottom: 14px; line-height: 1.7; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  flex: 1;
  padding: 11px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px 0 0 10px;
  color: white;
  font-size: 0.85rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--hf-primary); }
.newsletter-form button {
  padding: 11px 18px;
  background: var(--hf-primary);
  color: white;
  border: none;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  transition: var(--hf-transition);
}
.newsletter-form button:hover { background: var(--hf-secondary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: var(--hf-gold); }

/* ===== INTERIOR PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--hf-dark), var(--hf-dark2));
  padding: 70px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hf-primary), var(--hf-gold), var(--hf-primary));
}
.page-hero h1 { color: var(--hf-white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.breadcrumb a { color: var(--hf-gold); }
.breadcrumb span::before { content: '›'; margin-right: 8px; }

/* ===== SINGLE PAGE CONTENT ===== */
.page-content { padding: 70px 0; }
.page-inner { max-width: 900px; margin: 0 auto; }
.page-inner h2 { font-size: 1.7rem; margin: 36px 0 14px; color: var(--hf-dark); }
.page-inner h3 { font-size: 1.3rem; margin: 28px 0 12px; color: var(--hf-primary); }
.page-inner p { color: #555; line-height: 1.9; margin-bottom: 16px; }
.page-inner ul { margin: 16px 0 16px 24px; list-style: disc; }
.page-inner ul li { color: #555; line-height: 1.8; margin-bottom: 6px; }
.page-inner .content-box {
  background: var(--hf-light);
  border-left: 4px solid var(--hf-primary);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
}
.page-inner .content-box p { margin: 0; }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.team-card { text-align: center; }
.team-photo { width: 120px; height: 120px; border-radius: 50%; overflow: hidden; margin: 0 auto 14px; border: 3px solid var(--hf-primary); }
.team-photo img { width:100%; height:100%; object-fit: cover; }
.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card span { color: var(--hf-primary); font-size: 0.82rem; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.gallery-item { border-radius: 10px; overflow: hidden; }
.gallery-item img { width:100%; height: 200px; object-fit:cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }

/* ===== STATS ===== */
.hf-stats { background: var(--hf-primary); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-item { color: var(--hf-white); }
.stat-number { font-family: var(--hf-font-heading); font-size: 3rem; line-height: 1; display: block; }
.stat-label { font-size: 0.85rem; opacity: 0.85; margin-top: 6px; display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cats-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { gap: 40px; }
}
@media (max-width: 768px) {
  .hf-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--hf-white); box-shadow: 0 8px 32px rgba(0,0,0,0.12); padding: 16px 0; }
  .hf-nav.open { display: flex; }
  .hf-nav > li > a { padding: 12px 24px; }
  .nav-toggle { display: block; }
  #hf-header { position: relative; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .about-img-float { display: none; }
  .about-badge { display: none; }
  .menu-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .services-grid, .blog-grid, .cats-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-btns, .cta-btns { flex-direction: column; }
  .footer-bottom { text-align: center; }
  .hf-topbar .topbar-right { display: none; }
}

/* ===== CUSTOMIZER OVERRIDE SUPPORT ===== */
body.hf-custom-bg { background-color: var(--hf-custom-bg, #fff); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.fade-in { animation: fadeInUp 0.6s ease forwards; }
.fade-in-delay-1 { animation-delay: 0.15s; }
.fade-in-delay-2 { animation-delay: 0.3s; }
.fade-in-delay-3 { animation-delay: 0.45s; }

/* ===== BACK TO TOP ===== */
#back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--hf-primary);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(212,41,42,0.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--hf-transition);
  z-index: 999;
  border: none;
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { transform: translateY(-3px); background: var(--hf-secondary); }
