/* Arshad Tiles & Sanitary - Main Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&family=Roboto+Slab:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* CSS Variables */
:root {
  --primary: #2c3e50;
  --primary-light: #34495e;
  --accent: #f1c40f;
  --accent-dark: #f39c12;
  --background: #ecf0f1;
  --white: #ffffff;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 20px 50px rgba(0, 0, 0, 0.15);
  --radius: 8px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--background);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 15px 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 10px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Roboto Slab', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.navbar.scrolled .logo-title {
  color: var(--primary);
}

.logo-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.navbar.scrolled .logo-subtitle {
  color: var(--text-light);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
  position: relative;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

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

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

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 500;
  font-size: 0.9rem;
}

.navbar.scrolled .phone-link {
  color: var(--primary);
}

.phone-link svg {
  width: 18px;
  height: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(241, 196, 15, 0.4);
}

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

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

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

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

.btn-large {
  padding: 15px 35px;
  font-size: 1rem;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.navbar.scrolled .mobile-menu-btn svg {
  color: var(--primary);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(44, 62, 80, 0.8) 50%, rgba(44, 62, 80, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 40px 0;
}

.badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.hero-title {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-title span {
  color: var(--accent);
}

.hero-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-family: 'Roboto Slab', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-top: 8px;
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(44, 62, 80, 0.1);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-text {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* About Section */
.about-section {
  background: var(--white);
}

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

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-large);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--accent);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(241, 196, 15, 0.4);
}

.experience-number {
  font-family: 'Roboto Slab', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.experience-text {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 5px;
}

.about-content h2 {
  font-size: 2.3rem;
  color: var(--primary);
  margin-bottom: 25px;
}

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

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--background);
  border-radius: 15px;
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(241, 196, 15, 0.1);
  transform: translateY(-5px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(241, 196, 15, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-dark);
}

.feature-content h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* Products Section */
.products-section {
  background: var(--background);
}

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

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

.product-image {
  height: 320px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 62, 80, 0.95) 0%, rgba(44, 62, 80, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
}

.product-count {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  width: fit-content;
}

.product-title {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}

.product-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* Gallery Section */
.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 15px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-row: span 2;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 62, 80, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(44, 62, 80, 0.7);
}

.gallery-overlay svg {
  width: 40px;
  height: 40px;
  color: var(--white);
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay svg {
  opacity: 1;
  transform: scale(1);
}

.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  margin-top: 10px;
  opacity: 0;
  transition: var(--transition);
  transition-delay: 0.1s;
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.lightbox-close svg {
  width: 35px;
  height: 35px;
}

/* Testimonials */
.testimonials-section {
  background: var(--background);
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 50px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.testimonial-avatar {
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar span {
  font-family: 'Roboto Slab', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-text {
  flex: 1;
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.stars svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  fill: var(--accent);
}

.testimonial-quote {
  font-size: 1.15rem;
  color: var(--primary);
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.testimonial-author p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(44, 62, 80, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--accent);
  width: 35px;
  border-radius: 10px;
}

/* Contact Section */
.contact-section {
  background: var(--primary);
}

.contact-section .section-title {
  color: var(--white);
}

.contact-section .section-text {
  color: rgba(255, 255, 255, 0.8);
}

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

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

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

.contact-icon {
  width: 55px;
  height: 55px;
  background: rgba(241, 196, 15, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.contact-details h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-details p,
.contact-details a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--accent);
}

.contact-map {
  margin-top: 30px;
  border-radius: 15px;
  overflow: hidden;
  height: 250px;
}

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

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-large);
}

.contact-form-wrapper h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(241, 196, 15, 0.2);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.btn-full {
  width: 100%;
}

/* Footer */
.footer {
  background: var(--primary-light);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin: 20px 0;
  line-height: 1.8;
  font-size: 0.95rem;
}

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

.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent);
}

.social-links a svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.footer-column h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-links a svg {
  width: 16px;
  height: 16px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
}

/* Page Header */
.page-header {
  padding: 150px 0 80px;
  background: var(--primary);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 15px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

/* Detailed About Page */
.about-story {
  background: var(--white);
}

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

.story-content h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 25px;
}

.story-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.9;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.value-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--background);
  border-radius: 20px;
  transition: var(--transition);
}

.value-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-large);
  transform: translateY(-10px);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: rgba(241, 196, 15, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.value-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent-dark);
}

.value-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 15px;
}

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

/* Timeline */
.timeline {
  background: var(--background);
  padding: 100px 0;
}

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

.timeline-header h2 {
  font-size: 2.3rem;
  color: var(--primary);
}

.timeline-items {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-items::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--accent);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  position: relative;
  margin-bottom: 50px;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50%;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--accent);
}

.timeline-content {
  background: var(--white);
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  max-width: 350px;
}

.timeline-year {
  font-family: 'Roboto Slab', serif;
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-content h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

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

/* Products Page */
.products-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 25px;
  border-radius: 50px;
  border: 2px solid transparent;
  background: var(--background);
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 5px 20px rgba(241, 196, 15, 0.3);
}

.filter-btn svg {
  width: 18px;
  height: 18px;
}

.products-detailed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product-detailed-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid #eee;
}

.product-detailed-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-large);
}

.product-detailed-image {
  height: 220px;
  overflow: hidden;
  cursor: pointer;
}

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

.product-detailed-card:hover .product-detailed-image img {
  transform: scale(1.1);
}

.product-detailed-info {
  padding: 20px;
}

.product-brand {
  display: inline-block;
  background: rgba(44, 62, 80, 0.1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-detailed-info h4 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-family: 'Roboto Slab', serif;
  font-size: 1.2rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.product-category-tag {
  color: var(--text-light);
  font-size: 0.8rem;
  text-transform: capitalize;
}

/* Product Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  overflow: hidden;
  transform: scale(0.9);
  transition: var(--transition);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-header {
  padding: 25px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  color: var(--primary);
  font-size: 1.4rem;
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.modal-close svg {
  width: 24px;
  height: 24px;
  color: var(--text-light);
}

.modal-body {
  padding: 25px;
}

.modal-body img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.modal-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-price {
  font-family: 'Roboto Slab', serif;
  font-size: 1.8rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.modal-brand {
  background: rgba(44, 62, 80, 0.1);
  color: var(--primary);
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Gallery Page */
.gallery-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-category-btn {
  padding: 10px 25px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-category-btn:hover,
.gallery-category-btn.active {
  background: var(--primary);
  color: var(--white);
}

.gallery-masonry {
  column-count: 4;
  column-gap: 15px;
}

.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

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

.gallery-masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 62, 80, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-masonry-item:hover .gallery-masonry-overlay {
  background: rgba(44, 62, 80, 0.6);
}

.gallery-masonry-overlay svg {
  width: 40px;
  height: 40px;
  color: var(--white);
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition);
}

.gallery-masonry-item:hover .gallery-masonry-overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* Contact Page */
.contact-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 150px 0 100px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.contact-info-card {
  background: var(--white);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow-large);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-10px);
}

.contact-info-icon {
  width: 70px;
  height: 70px;
  background: rgba(241, 196, 15, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-info-icon svg {
  width: 30px;
  height: 30px;
  color: var(--accent-dark);
}

.contact-info-card h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

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

.contact-info-card a {
  color: var(--accent-dark);
  font-weight: 600;
  transition: var(--transition);
}

.contact-info-card a:hover {
  color: var(--primary);
}

.contact-section-full {
  background: var(--background);
  padding: 100px 0;
}

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

.contact-form-large {
  background: var(--white);
  border-radius: 20px;
  padding: 50px;
  box-shadow: var(--shadow);
}

.contact-form-large h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-form-large > p {
  color: var(--text-light);
  margin-bottom: 35px;
}

/* Responsive */
@media (max-width: 1200px) {
  .products-grid,
  .products-detailed-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-masonry {
    column-count: 3;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-grid,
  .story-grid,
  .contact-grid,
  .contact-full-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
  }
  
  .experience-badge {
    right: 20px;
    bottom: -20px;
    padding: 20px;
  }
  
  .experience-number {
    font-size: 2.5rem;
  }
  
  .products-grid,
  .products-detailed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-masonry {
    column-count: 2;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline-items::before {
    left: 20px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(even) {
    padding-left: 60px;
    padding-right: 0;
    justify-content: flex-start;
  }
  
  .timeline-dot {
    left: 20px;
    transform: translateX(-50%);
  }
  
  .testimonial-content {
    flex-direction: column;
    text-align: center;
  }
  
  .page-header h1,
  .contact-hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .products-grid,
  .products-detailed-grid,
  .features-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-masonry {
    column-count: 1;
  }
  
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-row: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .contact-form-wrapper,
  .contact-form-large {
    padding: 25px;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* Mobile Menu Panel */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  padding: 100px 30px 30px;
  transition: var(--transition);
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-close svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.mobile-nav-links {
  list-style: none;
}

.mobile-nav-links li {
  margin-bottom: 5px;
}

.mobile-nav-links a {
  display: block;
  padding: 15px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 10px;
  transition: var(--transition);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: var(--accent);
  color: var(--primary);
}

.mobile-menu-contact {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.mobile-menu-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
}

.mobile-menu-contact a svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.mobile-menu-cta {
  margin-top: 20px;
}

.mobile-menu-cta .btn {
  width: 100%;
}
