/* Modern Interior Design Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  /* Color variables */
  --background: #f8f7f5; /* Warm off-white */
  --foreground: #2a2623; /* Dark charcoal */
  --primary: #0085b2; /* Modern teal/blue */
  --primary-foreground: #faf9f8;
  --secondary: #e8d5dd; /* Soft pink/beige */
  --secondary-foreground: #2a2623;
  --muted: #f1eeea; /* Light warm gray */
  --muted-foreground: #736b65;
  --accent: #e07a5f; /* Warm terracotta */
  --accent-foreground: #faf9f8;
  --border: #e8e3dd;
  --radius: 0.75rem;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: var(--border);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 6.0rem;
  height: 3.0rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.logo-img img {
     width: 258%;
    height: 359%;
    object-fit: cover;
}

.logo-text h1 {
  font-size: 1.25rem;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.logo-text p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.contact-info {
  display: none;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(0, 133, 178, 0.1);
  border-radius: 9999px;
  border: 1px solid var(--border);
  font-weight: 500;
  color: var(--foreground);
  transition: all 0.3s ease;
}

.contact-info a:hover {
  background-color: rgba(0, 133, 178, 0.2);
}

.contact-info i {
  color: var(--primary);
  animation: pulse 2s infinite;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?q=80&w=1400&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-size: cover;
  background-position: center;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 133, 178, 0.2) 0%, rgba(224, 122, 95, 0.3) 100%);
  backdrop-filter: blur(5px);
}

.hero .container {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.hero h1 span {
  display: block;
  background: linear-gradient(to right, var(--primary), var(--accent), var(--primary));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradient-pulse 4s ease infinite;
  background-size: 200% auto;
}

.hero .tagline {
  font-size: 1.25rem;
 /* color: rgba(42, 38, 35, 0.8); */
  color: rgb(255 254 253);
  margin-bottom: 1.5rem;
}

.hero .description {
  font-size: 1rem;
  color: #080808; /*var(--muted-foreground); */
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  padding: 0 1rem;
}

.btn-primary, .btn-secondary {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(to right, var(--primary), var(--accent));
  color: white;
  box-shadow: var(--shadow);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid rgba(0, 133, 178, 0.3);
  color: var(--foreground);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background-color: rgba(0, 133, 178, 0.05);
  transform: translateY(-2px);
}

/* Services Section */
.services {
  padding: 4rem 0;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

.services h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.divider {
  width: 4rem;
  height: 0.25rem;
  background: linear-gradient(to right, var(--primary), var(--accent));
  margin: 0 auto 1.5rem;
  border-radius: 9999px;
}

.section-description {
  text-align: center;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 0 1rem;
}

.service-card {
  background-color: white;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 133, 178, 0.1) 0%, rgba(224, 122, 95, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: all 0.5s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(12deg);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary);
}

.service-card p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  transition: color 0.3s ease;
  margin-bottom: 1rem;
}

.service-card:hover p {
  color: rgba(42, 38, 35, 0.8);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  transition: width 0.5s ease;
}

.service-card:hover::after {
  width: 100%;
}

/* Instagram Gallery */
.instagram-gallery {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #f1f1f1 100%);
}

.instagram-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.instagram-header i {
  font-size: 2rem;
  color: #e1306c;
  animation: pulse 2s infinite;
}

.instagram-header h2 {
  font-size: 2rem;
  color: #333;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 2px solid #e1306c;
  color: #e1306c;
  border-radius: 9999px;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.instagram-link:hover {
  background-color: #fdf2f5;
  transform: scale(1.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.gallery-item {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #e0e0e0 0%, #cccccc 100%);
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease;
  box-shadow: var(--shadow);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to right, #e1306c, #833ab4, #405de6);
  color: white;
  border-radius: 9999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 133, 178, 0.1) 0%, rgba(224, 122, 95, 0.2) 100%);
  animation: pulse 6s infinite alternate;
}

.contact .container {
  position: relative;
  z-index: 10;
}

.contact h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto 2rem;
}

.contact-card {
  background-color: white;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 133, 178, 0.1) 0%, rgba(224, 122, 95, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(to bottom right, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.contact-card:hover h3 {
  color: var(--primary);
}

.contact-card a {
  color: var(--primary);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-card:hover a {
  transform: scale(1.05);
}

.contact-card address {
  font-style: normal;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.contact-card:hover address {
  color: rgba(42, 38, 35, 0.8);
}

/* Footer */
.footer {
  background: linear-gradient(to right, rgba(42, 38, 35, 0.9), rgba(42, 38, 35, 0.95), rgba(42, 38, 35, 0.9));
  color: white;
  padding: 3rem 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-img {
  width: 2rem;
  height: 2rem;
}

.footer-logo .logo-img img {
  filter: brightness(0) invert(1);
}

.footer-logo span {
  font-size: 1.25rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.footer-tagline {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--accent);
  transform: scale(1.2);
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: linear-gradient(135deg, rgba(253, 245, 240, 0.9) 0%, rgba(248, 247, 245, 0.9) 100%);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  width: 100%;
  max-width: 28rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(232, 211, 221, 0.5);
  animation: modal-fade-in 0.3s ease;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: #8c4a3c;
}

.modal-header i {
  font-size: 1.25rem;
}

.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #8c4a3c;
}

.form-group label i {
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(232, 211, 221, 0.8);
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.2);
}

.form-buttons {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
}

.btn-cancel, .btn-submit {
  flex: 1;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-cancel {
  background-color: transparent;
  border: 1px solid rgba(224, 122, 95, 0.3);
  color: #8c4a3c;
}

.btn-cancel:hover {
  background-color: rgba(253, 245, 240, 0.5);
  border-color: var(--accent);
}

.btn-submit {
  background: linear-gradient(to right, var(--accent), #d1664f);
  color: white;
  border: none;
  box-shadow: var(--shadow);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Animations */
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}

@keyframes gradient-pulse {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes modal-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (min-width: 640px) {
  .logo-text h1 {
    font-size: 1.5rem;
  }
  
  .contact-info {
    display: flex;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero .tagline {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: row;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 6rem 0;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
  
  .services h2, .contact h2 {
    font-size: 2.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero h1 {
    font-size: 5rem;
  }
  
  .hero .description {
    font-size: 1.125rem;
  }
}