@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --primary-purple: #6f2e8f;
  --lighter-purple: #8d4a9f;
  --black: #000000;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --gold: #d4af37;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

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

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

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

.btn-primary:hover {
  background: var(--lighter-purple);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-purple);
  border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
  background: var(--lighter-purple);
  color: var(--white);
  border-color: var(--lighter-purple);
}

.btn-outline {
  background: transparent;
  color: var(--primary-purple);
  border: 1px solid var(--primary-purple);
  padding: 10px 24px;
  font-size: 14px;
}

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

.text-link {
  color: var(--primary-purple);
  position: relative;
}

.text-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
}

.text-link:hover::after {
  width: 100%;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 42px;
  margin-bottom: 16px;
  color: var(--black);
}

.section-subtitle {
  font-size: 18px;
  color: var(--primary-purple);
  margin-bottom: 40px;
  font-weight: 500;
}

.bg-light {
  background: var(--light-gray);
}

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

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 48px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  transition: var(--transition);
  position: relative;
}

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

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--primary-purple);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 40px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  cursor: pointer;
  color: var(--black);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-links a {
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  color: var(--black);
}

.mobile-cta {
  margin-top: 40px;
}

/* Hero Sections */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(111, 46, 143, 0.85), rgba(141, 74, 159, 0.75));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 56px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.hero-content .btn {
  margin: 0 8px;
}

/* Home Sections */

/* Intro Summary */
.intro-summary {
  background: var(--light-gray);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.intro-summary .section-title {
  margin-bottom: 24px;
}

.intro-summary p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  color: #444;
}

/* Core Services */
.core-services {
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-purple), var(--lighter-purple));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary-purple), var(--lighter-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--black);
}

.service-card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}

/* Philosophy Section */
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.philosophy-image {
  background-size: cover;
  background-position: center;
}

.philosophy-content {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.philosophy-content h2 {
  font-size: 38px;
  margin-bottom: 24px;
}

.philosophy-content p {
  font-size: 17px;
  color: #555;
  margin-bottom: 24px;
}

.philosophy-list {
  list-style: none;
}

.philosophy-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  color: #444;
}

.philosophy-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-purple);
  font-weight: bold;
}

/* Featured Cosmetic */
.featured-cosmetic {
  background: linear-gradient(135deg, var(--primary-purple), var(--lighter-purple));
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}

.featured-cosmetic h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.featured-cosmetic .section-subtitle {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 40px;
}

.before-after-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--black);
}

.before-after-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.before-after-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-image {
  clip-path: inset(0 50% 0 0);
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--white);
  cursor: ew-resize;
  transform: translateX(-50%);
}

.slider-handle::after {
  content: '⟷';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-purple);
  font-size: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Team Section */
.team-section {
  padding: 100px 0;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.team-member {
  text-align: center;
}

.team-member-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid transparent;
  transition: var(--transition);
}

.team-member:hover .team-member-image {
  border-color: var(--gold);
  transform: scale(1.05);
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h4 {
  font-size: 20px;
  color: var(--primary-purple);
  margin-bottom: 4px;
}

.team-member span {
  font-size: 14px;
  color: #777;
}

/* Testimonial */
.testimonial-spotlight {
  background: linear-gradient(135deg, #2d1a3d, var(--primary-purple));
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.testimonial-author {
  font-size: 18px;
  color: var(--gold);
}

/* Convenience Callout */
.convenience-callout {
  padding: 100px 0;
}

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

.convenience-info h2 {
  font-size: 38px;
  margin-bottom: 24px;
}

.convenience-info p {
  font-size: 17px;
  color: #555;
  margin-bottom: 24px;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.contact-details svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-purple);
}

.convenience-map {
  background: var(--light-gray);
  border-radius: 16px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
}

/* Final CTA */
.final-cta {
  background: var(--primary-purple);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.final-cta h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-about p {
  color: #aaa;
  font-size: 15px;
  margin-top: 16px;
  line-height: 1.7;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

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

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

.footer-links a {
  color: #aaa;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 8px;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid #444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary-purple);
  border-color: var(--primary-purple);
}

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 24px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

/* Services Page */
.services-hero {
  background-image: url('../../images/generated-image-4.png');
}

.services-grid-large {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card-large {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.service-card-large:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.service-card-large img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-content {
  padding: 32px;
}

.service-card-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.service-card-content p {
  color: #666;
  margin-bottom: 20px;
}

/* General Services */
.general-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.general-services-image {
  background-image: url('../../images/generated-image-2.png');
  background-size: cover;
  background-position: center;
  height: 450px;
  border-radius: 16px;
}

.general-services-list {
  list-style: none;
}

.general-services-list li {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.general-services-list li:last-child {
  border-bottom: none;
}

.service-icon-small {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--primary-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
}

/* Technology Section */
.tech-section {
  padding: 100px 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.tech-item {
  text-align: center;
}

.tech-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 24px;
}

.tech-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.tech-item p {
  color: #666;
  font-size: 15px;
}

/* About Page */
.about-hero {
  background-image: url('../../images/generated-image-1.png');
}

.about-story {
  padding: 100px 0;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-content h2 {
  font-size: 42px;
  margin-bottom: 32px;
}

.story-content p {
  font-size: 17px;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.8;
}

/* Values Section */
.values-section {
  background: var(--light-gray);
  padding: 100px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.value-item {
  background: var(--white);
  padding: 40px 24px;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-8px);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-purple), var(--lighter-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.value-item h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.value-item p {
  font-size: 14px;
  color: #666;
}

/* Community Section */
.community-section {
  padding: 100px 0;
}

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

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: var(--transition);
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Gallery Page */
.gallery-hero {
  background-image: url('../../images/generated-image-3.png');
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 48px 0;
}

.filter-btn {
  padding: 10px 24px;
  border: 1px solid var(--primary-purple);
  background: transparent;
  color: var(--primary-purple);
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Lato', sans-serif;
  font-size: 14px;
}

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

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

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

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(111, 46, 143, 0.9), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

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

.gallery-item-overlay span {
  color: var(--white);
  font-weight: 500;
}

/* Your Visit Page */
.your-visit-hero {
  background-image: url('../../images/generated-image-5.png');
}

/* Timeline */
.timeline-section {
  padding: 100px 0;
}

.timeline {
  max-width: 700px;
  margin: 48px auto 0;
}

.timeline-step {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}

.timeline-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: var(--primary-purple);
  opacity: 0.3;
}

.step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--primary-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
}

.step-content h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step-content p {
  color: #666;
}

/* Forms Section */
.forms-section {
  background: var(--light-gray);
  padding: 100px 0;
}

.forms-list {
  max-width: 600px;
  margin: 40px auto 0;
}

.form-item {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.form-item:hover {
  transform: translateX(8px);
}

.form-item-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-item svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-purple);
}

.download-btn {
  color: var(--primary-purple);
  font-weight: 500;
}

/* FAQ Accordion */
.faq-section {
  padding: 100px 0;
}

.faq-container {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
}

.faq-question svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-purple);
  transition: var(--transition);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 24px;
  color: #666;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* Contact Page */
.contact-hero {
  background-image: url('../../images/generated-image-6.png');
}

.contact-section {
  padding: 100px 0;
}

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

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--black);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-purple);
}

.contact-info h2 {
  font-size: 38px;
  margin-bottom: 32px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.info-item svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-purple);
  margin-top: 4px;
}

.info-item h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.info-item p {
  color: #666;
}

/* Emergency Section */
.emergency-section {
  background: #2d1a3d;
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.emergency-section h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.emergency-phone {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin: 16px 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 1023px) {
  .header-inner {
    padding: 0 24px;
  }
  
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 42px;
  }
  
  .services-grid,
  .team-grid,
  .values-grid,
  .gallery-items {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .philosophy,
  .general-services,
  .contact-grid,
  .convenience-grid {
    grid-template-columns: 1fr;
  }
  
  .philosophy-image {
    height: 350px;
  }
  
  .philosophy-content {
    padding: 48px;
  }
  
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .header-inner {
    height: 68px;
  }
  
  .logo img {
    height: 50px;
  }
  
  .hero {
    padding-top: 68px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 17px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .services-grid,
  .team-grid,
  .values-grid,
  .gallery-items,
  .tech-grid,
  .services-grid-large {
    grid-template-columns: 1fr;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .testimonial-quote {
    font-size: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    font-size: 13px;
  }
  
  .mobile-menu {
    padding: 60px 24px;
  }
  
  .mobile-nav-links a {
    font-size: 24px;
  }
  
  .filter-buttons {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}
