/* AR Interior Décor Catalog - Main CSS */
:root {
  /* Primary Pastel Color Palette */
  --primary-sage: #a8c09a;
  --primary-blush: #f4d1c5;
  --primary-lavender: #c8a8e9;
  --primary-cream: #f9f5f1;
  --primary-dusty: #d4b5a0;
  
  /* Light/Dark Variations */
  --sage-light: #c5d4bb;
  --sage-dark: #7a9b6d;
  --blush-light: #f8e4dc;
  --blush-dark: #e6b5a1;
  --lavender-light: #dcc5f0;
  --lavender-dark: #a67ec7;
  --cream-light: #fdfbf8;
  --cream-dark: #f0e8e0;
  --dusty-light: #e2c8b5;
  --dusty-dark: #c19f84;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 0.95rem;
  --font-size-small: 0.85rem;
  --font-size-h1: 2rem;
  --font-size-h2: 1.6rem;
  --font-size-h3: 1.3rem;
  --font-size-brand: 1.4rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --element-margin: 1.5rem;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #333;
  background-color: var(--primary-cream);
  overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: var(--element-margin);
  color: var(--sage-dark);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }

p {
  margin-bottom: 1rem;
  color: #555;
  font-size: var(--font-size-base);
}

.text-muted {
  color: #666 !important;
}

/* Header Styles */
#header {
  background: linear-gradient(135deg, #2c3e50, #1a365d);
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 1000;
}

#header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.navbar {
  padding: 1rem 0;
  background: linear-gradient(135deg, #2c3e50, #1a365d) !important;
}

.navbar-brand {
  font-size: var(--font-size-brand);
  font-weight: 700;
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

.navbar-nav .nav-link:hover {
  color: #4fc3f7 !important;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream), var(--cream-light));
  position: relative;
  display: flex;
  align-items: center;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-lavender);
  top: 10%;
  right: 15%;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-blush);
  bottom: 20%;
  left: 10%;
}

.hero-content {
  position: relative;
  z-index: 1;
    padding-top: 250px;
}

/* Section Spacing */
section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-sage);
  font-size: var(--font-size-small);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* About Section */
#about {
  background-color: var(--sage-light);
  background-image: 
    radial-gradient(circle at 20% 80%, var(--primary-blush) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, var(--primary-lavender) 0%, transparent 50%);
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
}

/* Services Section */
#services {
  background-color: var(--primary-cream);
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: none;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-image {
  height: 200px;
  background: var(--primary-blush);
  position: relative;
  overflow: hidden;
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  color: var(--primary-sage);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1rem;
}

/* Features Section */
#features {
  background: linear-gradient(135deg, var(--primary-lavender), var(--lavender-light));
}

/* Price Plan Section */
#priceplan {
  background-color: var(--primary-cream);
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: none;
  height: 100%;
  position: relative;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.price-card.featured {
  border: 3px solid var(--primary-sage);
  transform: scale(1.05);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-sage);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
#team {
  background: linear-gradient(135deg, var(--primary-dusty), var(--dusty-light));
}

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: none;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.team-photo {
  width: 100%;
  height: 250px;
  background: var(--primary-blush);
  position: relative;
}

.team-info {
  padding: 1.5rem;
}

.team-role {
  color: var(--primary-sage);
  font-size: var(--font-size-small);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Reviews Section */
#reviews {
  background-color: var(--sage-light);
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border: none;
  height: 100%;
  position: relative;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #555;
}

.review-author {
  font-weight: 600;
  color: var(--sage-dark);
}

.review-stars {
  color: #ffc107;
  margin-bottom: 1rem;
}

/* Case Study Section */
#casestudy {
  background-color: var(--primary-cream);
}

.case-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: none;
  height: 100%;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.case-image {
  height: 200px;
  background: var(--primary-lavender);
}

.case-content {
  padding: 2rem;
}

/* Process Section */
#process {
  background: linear-gradient(135deg, var(--primary-blush), var(--blush-light));
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-sage);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

/* FAQ Section */
#faq {
  background-color: var(--primary-cream);
}

.faq-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  border: none;
}

.faq-question {
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #555;
  margin: 0;
}

/* Gallery Section */
#gallery {
  background-color: var(--sage-light);
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
  height: 250px;
  background: var(--primary-dusty);
}

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

/* Contact Section */
#contacts {
  background: linear-gradient(135deg, var(--primary-sage), var(--sage-dark));
  color: white;
}

#contacts h2,
#contacts h3 {
  color: white;
}

.contact-form {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 2px solid #dee2e6;
}

.contact-form h3 {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.form-control {
  border-radius: 10px;
  border: 2px solid #ced4da;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
  background-color: #ffffff;
  color: #212529;
  font-weight: 500;
}

.form-control:focus {
  border-color: #2c3e50;
  box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
  background-color: #ffffff;
}

.form-check-label {
  color: #2c3e50;
  font-weight: 500;
}

.form-check-input {
  border-color: #495057;
}

.form-check-input:checked {
  background-color: #2c3e50;
  border-color: #2c3e50;
}

::placeholder {
  color: #6c757d;
  opacity: 0.7;
}

.btn-primary {
  background: #2c3e50;
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #ffffff;
}

.btn-primary:hover {
  background: #1a365d;
  transform: translateY(-2px);
  color: #ffffff;
}

.contact-info {
  color: #ffffff;
  background: rgba(44, 62, 80, 0.85);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.contact-info h4 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 0.75rem;
}

.contact-info p {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Blog Section */
#blog {
  background-color: var(--primary-cream);
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: none;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.blog-image {
  height: 200px;
  background: var(--primary-lavender);
}

.blog-content {
  padding: 2rem;
}

.blog-link {
  color: var(--primary-sage);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--sage-dark);
}

/* Footer */
#footer {
  background-color: var(--sage-dark);
  color: var(--cream-light);
  padding: 3rem 0 1rem;
}

#footer h5 {
  color: white;
  margin-bottom: 1.5rem;
}

#footer a {
  color: var(--cream-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: var(--primary-blush);
}

#footer .list-unstyled li {
  margin-bottom: 0.5rem;
}

.footer-divider {
  border-top: 1px solid var(--primary-sage);
  margin: 2rem 0 1rem;
}

#site-copyright {
  color: var(--cream-light);
  font-size: var(--font-size-small);
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Utility Classes */
.text-sage { color: var(--primary-sage) !important; }
.text-blush { color: var(--primary-blush) !important; }
.text-lavender { color: var(--primary-lavender) !important; }
.text-dusty { color: var(--primary-dusty) !important; }

.bg-sage { background-color: var(--primary-sage) !important; }
.bg-blush { background-color: var(--primary-blush) !important; }
.bg-lavender { background-color: var(--primary-lavender) !important; }
.bg-dusty { background-color: var(--primary-dusty) !important; }

.rounded-custom {
  border-radius: 20px !important;
}

.shadow-custom {
  box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
