/*
Theme Name: Shiv Handloom House
Theme URI: https://shivhandloomhouse.com
Author: Jainam Pathak
Author URI: https://shivhandloomhouse.com
Description: Custom WordPress theme for Shiv Handloom House - Premium Home Furnishings store in Maninagar, Ahmedabad.
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: shiv-handloom
Tags: one-column, custom-menu, featured-images, full-width-template
*/

/* ==========================================
   Shiv Handloom House - Global Styles
   ========================================== */

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1e3a78;
  --primary-dark: #152a58;
  --primary-light: #2e5cb8;
  --secondary: #1a1a2e;
  --accent: #cc2424;
  --text: #333333;
  --text-light: #666666;
  --text-white: #ffffff;
  --bg: #ffffff;
  --bg-light: #f8f6f0;
  --bg-cream: #faf8f2;
  --border: #e0d5c1;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-lg: rgba(0, 0, 0, 0.15);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ==========================================
   Header / Navigation
   ========================================== */
.shiv-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px var(--shadow);
  transition: var(--transition);
}

.shiv-header.scrolled {
  box-shadow: 0 4px 30px var(--shadow-lg);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 90px;
  width: auto;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 5px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary) !important;
  color: var(--text-white) !important;
  padding: 10px 25px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 58, 120, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px;
}

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

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

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

/* ==========================================
   Hero Section
   ========================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(26, 26, 46, 0.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
}

.hero-content .subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #93b5ff;
  margin-bottom: 15px;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 35px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 35px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(30, 58, 120, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}

.btn-outline:hover {
  background: var(--text-white);
  color: var(--secondary);
  transform: translateY(-3px);
}

/* Hero Slider Dots */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dots .dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* ==========================================
   Section Common Styles
   ========================================== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1rem;
}

.section-header .divider {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ==========================================
   About Section
   ========================================== */
.about {
  background: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 50px var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary);
  color: var(--text-white);
  padding: 15px 25px;
  border-radius: 10px;
  text-align: center;
}

.about-badge .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 25px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text);
}

.about-feature .check {
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ==========================================
   Products Section
   ========================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product-card {
  background: var(--bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-lg);
}

.product-icon {
  padding: 35px 20px 15px;
}

.product-icon svg {
  width: 60px;
  height: 60px;
  fill: var(--primary);
  margin: 0 auto;
}

.product-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--secondary);
  padding: 5px 15px;
}

.product-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 5px 20px 25px;
  line-height: 1.6;
}

/* ==========================================
   Gallery Section
   ========================================== */
.gallery {
  background: var(--bg-light);
}

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

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

/* ==========================================
   Why Choose Us Section
   ========================================== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 15px;
  background: var(--bg);
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}

.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-lg);
}

.why-card .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-item .icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 5px;
}

.contact-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-map {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* ==========================================
   Footer
   ========================================== */
.shiv-footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.8);
}

.footer-main {
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-about .footer-logo {
  height: 60px;
    width: auto;
    margin-bottom: 15px;
    background-color: white;
    border-radius: 3px;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.footer-contact-item .fc-icon {
  color: var(--primary-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 0.85rem;
}

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

.footer-bottom-links a {
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: var(--primary-light);
}

/* ==========================================
   Page Banner (for inner pages)
   ========================================== */
.page-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, #2d2d5e 100%) !important;
  padding: 140px 0 80px !important;
  text-align: center !important;
  margin-top: 80px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-height: 200px;
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem !important;
  color: #ffffff !important;
  margin-bottom: 10px;
  display: block !important;
  visibility: visible !important;
}

.page-banner .breadcrumb {
  display: flex !important;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.page-banner .breadcrumb a {
  color: var(--primary-light);
}

.page-banner .breadcrumb a:hover {
  text-decoration: underline;
}

/* ==========================================
   Legal Pages Content
   ========================================== */
.legal-content {
  padding: 80px 0 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: #ffffff !important;
}

.legal-content .container {
  max-width: 900px;
  display: block !important;
  visibility: visible !important;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--secondary);
  margin: 40px 0 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 25px;
  margin-bottom: 15px;
}

.legal-content ul li {
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.7;
  list-style: disc;
}

.legal-content .last-updated {
  background: var(--bg-cream);
  padding: 15px 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: var(--text-light);
  border-left: 4px solid var(--primary);
}

.legal-content strong {
  color: var(--text);
}

/* ==========================================
   WhatsApp Float Button
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 5px 35px rgba(37, 211, 102, 0.6); }
}

/* ==========================================
   Back to Top
   ========================================== */
.back-to-top {
  position: fixed;
  bottom: 110px;
  right: 33px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ==========================================
   Product Showcase Section
   ========================================== */
.showcase {
  background: var(--bg-light);
}

.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.showcase-tab {
  padding: 10px 28px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.showcase-tab.active,
.showcase-tab:hover {
  background: var(--primary);
  color: var(--text-white);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.showcase-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  cursor: pointer;
  aspect-ratio: 1/1;
  background: var(--bg);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-item:hover img {
  transform: scale(1.08);
}

.showcase-item .showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.75) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}

.showcase-item:hover .showcase-overlay {
  opacity: 1;
}

.showcase-overlay span {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.showcase-item[style*="display: none"] {
  display: none !important;
}

/* ==========================================
   Instagram QR Section (in Contact)
   ========================================== */
.instagram-card {
  background: var(--bg);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow);
  margin-top: 30px;
}

.instagram-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 5px;
}

.instagram-card p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.instagram-card .qr-image {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  margin: 0 auto 15px;
  object-fit: contain;
}

.instagram-card .insta-handle {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

/* Footer Instagram */
.footer-instagram {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.footer-instagram .qr-small {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  padding: 4px;
}

.footer-instagram .insta-text {
  font-size: 0.85rem;
}

.footer-instagram .insta-text a {
  color: red;
  font-weight: 500;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    padding: 100px 30px 30px;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px var(--shadow);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .nav-cta {
    text-align: center;
    margin-top: 15px;
  }

  .hero {
    min-height: 500px;
    height: 80vh;
  }

  .hero-content h2 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo img {
    height: 80px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .page-banner {
    padding: 120px 0 60px;
  }

  .page-banner h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.85rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .logo img {
    height:80px;
  }

  .nav-container {
    height: 65px;
  }

  .hero {
    margin-top: 65px;
  }

  .page-banner {
    margin-top: 65px;
    padding: 100px 0 50px;
  }
}
