/*
Theme Name: Shubhaarambh Events
Theme URI: https://shubhaarambh-events.com/
Author: Shubhaarambh Event and Catering Pvt. Ltd.
Author URI: https://shubhaarambh-events.com/
Description: A premium WordPress theme for Shubhaarambh Event and Catering Private Limited — Creating Memorable Experiences Through Excellence in Event Management & Catering
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shubhaarambh
Tags: events, catering, wedding, corporate, responsive, elementor
*/

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #D4761A;
  --primary-dark: #B5601A;
  --primary-light: #F5A54A;
  --secondary: #2C1810;
  --accent: #F5C842;
  --dark: #1A1A1A;
  --dark-2: #333333;
  --gray: #666666;
  --gray-light: #999999;
  --border: #E8E0D8;
  --bg-light: #FFF8F0;
  --bg-cream: #FDF5E6;
  --white: #FFFFFF;
  --black: #000000;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark-2);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--secondary);
  line-height: 1.3;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }
p { margin-bottom: 1rem; color: var(--gray); }
p:last-child { margin-bottom: 0; }

/* ===== CONTAINERS ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 120px 0; }
.section-bg { background: var(--bg-light); }
.section-cream { background: var(--bg-cream); }
.section-dark { background: var(--secondary); color: var(--white); }
.section-primary { background: var(--primary); color: var(--white); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-dark .section-header h2,
.section-dark .section-header h3 { color: var(--white); }
.section-dark .section-header p { color: rgba(255,255,255,0.8); }

/* ===== DECORATIVE DIVIDER ===== */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}
.divider::before, .divider::after {
  content: '';
  width: 60px;
  height: 2px;
  background: var(--primary);
}
.divider span { color: var(--primary); font-size: 1.2rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,118,26,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-dark {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-dark:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-sm { padding: 5px 15px; font-size: 0.85rem; }

/* ===== GRID SYSTEM ===== */
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 30px; }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: 15px; }
.gap-md { gap: 30px; }
.gap-lg { gap: 50px; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.card-body { padding: 30px; }
.card-img { aspect-ratio: 16/9; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.05); }

/* ===== HEADER & NAVIGATION ===== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.site-logo img { height: 60px; width: auto; }
.site-logo .text-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.2;
}
.site-logo .text-logo span { color: var(--primary); display: block; font-size: 0.75rem; font-weight: 400; font-family: var(--font-body); letter-spacing: 1px; }

/* Main Navigation */
#main-navigation ul { display: flex; align-items: center; gap: 5px; }
#main-navigation ul li { position: relative; }
#main-navigation ul li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-2);
  border-radius: var(--radius);
  transition: var(--transition);
}
#main-navigation ul li a:hover,
#main-navigation ul li.current-menu-item a {
  color: var(--primary);
  background: var(--bg-light);
}

/* Dropdown */
#main-navigation ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border-top: 3px solid var(--primary);
  flex-direction: column;
  gap: 0;
}
#main-navigation ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#main-navigation ul li ul li a {
  padding: 10px 20px;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
#main-navigation ul li ul li:last-child a { border-bottom: none; }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 15px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
}
.header-phone .icon { color: var(--primary); font-size: 1rem; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--secondary);
  padding: 8px 0;
  font-size: 0.8rem;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar a, .top-bar span { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--primary-light); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }

/* ===== SERVICES SECTION ===== */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border-bottom: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--primary);
}
.service-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  transition: var(--transition);
  border: 2px solid var(--border);
}
.service-card:hover .service-icon {
  background: var(--primary);
  border-color: var(--primary);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; margin-bottom: 20px; }
.service-link {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== WHY CHOOSE US ===== */
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-us-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.why-us-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.why-us-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.why-us-badge .num { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; display: block; }
.why-us-badge small { font-size: 0.75rem; opacity: 0.9; }
.feature-item { display: flex; gap: 20px; margin-bottom: 30px; }
.feature-icon {
  width: 54px;
  height: 54px;
  background: var(--bg-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.feature-content h4 { margin-bottom: 6px; }
.feature-content p { font-size: 0.9rem; margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 15px;
  left: 25px;
  line-height: 1;
}
.testimonial-text { font-style: italic; margin-bottom: 25px; font-size: 0.95rem; color: var(--dark-2); }
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}
.testimonial-name { font-weight: 700; color: var(--secondary); display: block; }
.testimonial-role { font-size: 0.8rem; color: var(--gray); }
.stars { color: #FFB900; font-size: 0.9rem; margin-bottom: 4px; }

/* ===== TEAM CARDS ===== */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-img { aspect-ratio: 1/1; overflow: hidden; position: relative; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,24,16,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 25px;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-social { display: flex; gap: 10px; }
.team-social a {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.team-info { padding: 25px; }
.team-info h4 { margin-bottom: 4px; }
.team-role { color: var(--primary); font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.team-info p { font-size: 0.85rem; margin: 0; }

/* ===== STATS SECTION ===== */
.stats-section { background: var(--primary); padding: 60px 0; }
.stat-box { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}
.stat-label { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-top: 8px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #4A2820 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/pattern.png');
  opacity: 0.05;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 15px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child { grid-row: 1 / 3; grid-column: 1 / 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212,118,26,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-size: 2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== BLOG CARDS ===== */
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 25px; }
.blog-meta { display: flex; align-items: center; gap: 15px; font-size: 0.8rem; color: var(--gray); margin-bottom: 12px; }
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-cat { background: var(--bg-light); color: var(--primary); padding: 3px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.blog-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-body h3 a { color: var(--secondary); }
.blog-body h3 a:hover { color: var(--primary); }
.blog-body p { font-size: 0.88rem; }
.read-more { color: var(--primary); font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; margin-top: 15px; }

/* ===== PAGE HERO (INNER PAGES) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #4A2820 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 20px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.breadcrumb a { color: var(--primary-light); }
.breadcrumb .sep { color: rgba(255,255,255,0.4); }

/* ===== CONTACT SECTION ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info-item { display: flex; gap: 20px; margin-bottom: 30px; }
.contact-icon {
  width: 54px;
  height: 54px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-item h4 { margin-bottom: 5px; }
.contact-info-item p { font-size: 0.9rem; margin: 0; }

/* Contact Form */
.contact-form { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; color: var(--dark-2); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark-2);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===== MAP SECTION ===== */
.map-section { height: 400px; position: relative; }
.map-section iframe { width: 100%; height: 100%; border: none; }

/* ===== ACCORDION / FAQ ===== */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--secondary);
  background: var(--white);
  transition: var(--transition);
}
.faq-question:hover { background: var(--bg-light); color: var(--primary); }
.faq-question.active { background: var(--primary); color: var(--white); }
.faq-icon { font-size: 1.2rem; transition: var(--transition); }
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer.active { max-height: 300px; padding: 20px 25px; }
.faq-answer p { font-size: 0.92rem; color: var(--gray); margin: 0; }

/* ===== PRICING SECTION ===== */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
}
.pricing-card.popular { border-color: var(--primary); transform: scale(1.03); }
.pricing-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 45px;
  transform: rotate(45deg);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.pricing-card.popular:hover { transform: scale(1.03) translateY(-5px); }
.pricing-plan { font-size: 0.85rem; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.pricing-price { font-family: var(--font-heading); font-size: 2.8rem; color: var(--secondary); font-weight: 700; line-height: 1; margin-bottom: 5px; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--gray); }
.pricing-desc { font-size: 0.88rem; margin-bottom: 25px; }
.pricing-features { list-style: none; margin-bottom: 30px; }
.pricing-features li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li .check { color: var(--primary); font-weight: 700; }
.pricing-features li .cross { color: #ccc; }

/* ===== FOOTER ===== */
#site-footer { background: var(--secondary); color: var(--white); }
.footer-top { padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 10px; }
.footer-about .site-logo { margin-bottom: 20px; }
.footer-about p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.8; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-widget h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.88rem; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--primary-light); padding-left: 5px; }
.footer-links a::before { content: '›'; color: var(--primary); font-size: 1.2rem; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 15px; color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.footer-contact-item .icon { color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: var(--primary-light); }

/* ===== SIDEBAR ===== */
.sidebar-widget { background: var(--white); padding: 30px; border-radius: var(--radius-lg); margin-bottom: 30px; box-shadow: var(--shadow); }
.sidebar-widget h4 { margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--primary); font-size: 1rem; }
.content-area { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }

/* ===== PORTFOLIO ===== */
.portfolio-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center; }
.filter-btn { padding: 8px 22px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; border: 2px solid var(--border); color: var(--gray); transition: var(--transition); cursor: pointer; }
.filter-btn:hover, .filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portfolio-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,24,16,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { color: var(--white); margin-bottom: 4px; }
.portfolio-overlay span { color: var(--primary-light); font-size: 0.8rem; }

/* ===== MISC UTILITIES ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }
.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.mt-auto { margin-top: auto; }
.highlight-text { color: var(--primary); font-style: italic; }
.badge { display: inline-block; padding: 4px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.badge-primary { background: var(--bg-light); color: var(--primary); }
.badge-dark { background: var(--secondary); color: var(--white); }
.icon-list { list-style: none; }
.icon-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.92rem; }
.icon-list li::before { content: '✦'; color: var(--primary); flex-shrink: 0; }
.wp-block-image img { border-radius: var(--radius); }

/* ===== SCROLL TO TOP ===== */
#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}
#scroll-top.visible { opacity: 1; visibility: visible; }
#scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ===== LOADER ===== */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-ring {
  width: 60px;
  height: 60px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 15px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-us-grid { gap: 40px; }
  .contact-grid { gap: 40px; }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; grid-column: auto; }
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-badge { right: 20px; }
  .content-area { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .menu-toggle { display: flex; }
  #main-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    display: none;
    padding: 20px;
  }
  #main-navigation.open { display: block; }
  #main-navigation ul { flex-direction: column; gap: 0; }
  #main-navigation ul li ul { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; display: none; border-top: none; padding-left: 15px; }
  #main-navigation ul li ul.show { display: flex; }
  .hero-section { min-height: 70vh; }
  .hero-stats { flex-wrap: wrap; gap: 25px; }
  .hero-float-card { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .top-bar-right { display: none; }
  .header-phone { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-section .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.popular { transform: none; }
}
@media (max-width: 480px) {
  .section { padding: 50px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .btn { padding: 12px 24px; font-size: 0.85rem; }
  .btn-lg { padding: 14px 28px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
