/* styles.css */
:root {
  --rose-gold: #b76e79;
  --rose-gold-light: #f8e1e7;
  --rose-gold-dark: #8c4a5b;
  --background: #fffafa;
  --text: #2a2a2a;
  --white: #ffffff;
  --divider: #e7d0d5;
  --shadow: 0 4px 15px rgba(0,0,0,0.07);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

/* --- Header & Navigation --- */
header {
  background: var(--white);
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--divider);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header h1 {
  color: var(--rose-gold-dark);
  font-size: 1.8rem;
  font-weight: 800;
}

nav {
  display: flex;
  gap: 2.5rem;
}

nav a {
  color: var(--rose-gold-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--rose-gold);
  transition: width 0.3s ease;
}

nav a:hover::after, nav a.active::after {
  width: 100%;
}

#ist-time {
  font-weight: 600;
  color: var(--rose-gold-dark);
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--rose-gold-light), var(--white));
  padding: 6rem 5% 5rem;
  text-align: center;
}

.hero h2 {
  font-size: 3.2rem;
  color: var(--rose-gold-dark);
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  color: #555;
}

.btn-primary {
  background: var(--rose-gold);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--rose-gold-dark);
  transform: translateY(-3px);
}

/* --- General Section Styling --- */
section {
  padding: 5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--rose-gold-dark);
  text-align: center;
  position: relative;
}

h3::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: var(--rose-gold);
  margin: 0.75rem auto 0;
}

/* --- Services, Process, Tech Grids --- */
.services-grid, .process-grid, .tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service, .step {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--rose-gold);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service:hover, .step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service h4, .step h4 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: var(--rose-gold-dark);
}

.step {
  text-align: center;
  border-left: none;
  border-top: 5px solid var(--rose-gold);
}

.tech-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.tech {
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 6px;
  box-shadow: var(--shadow);
  font-weight: 600;
  text-align: center;
  color: var(--rose-gold-dark);
  transition: transform 0.3s;
}

.tech:hover {
  transform: scale(1.05);
}

/* --- CTA & Footer --- */
.cta {
  background-color: var(--rose-gold-light);
  text-align: center;
  border-radius: 10px;
}

.divider {
  border: none;
  height: 1px;
  background: var(--divider);
  margin: 2rem auto;
  max-width: 1200px;
}

footer {
  background: var(--rose-gold-dark);
  color: var(--rose-gold-light);
  text-align: center;
  padding: 3rem 5%;
  margin-top: 4rem;
}

/* --- About Page Specifics --- */
.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 1rem;
  }
  nav {
    gap: 1.5rem;
  }
  .hero h2 {
    font-size: 2.2rem;
  }
  h3 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
  .hero h2 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
/* --- Contact Page Styles --- */
.contact-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.contact-form h4, .contact-details h4 {
  font-size: 1.8rem;
  color: var(--rose-gold-dark);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #555;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--divider);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 3px var(--rose-gold-light);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-details ul {
  list-style: none;
  padding: 0;
}

.contact-details li {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.contact-details li svg {
  width: 24px;
  height: 24px;
  margin-right: 1rem;
  color: var(--rose-gold);
}

.map-container {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

/* --- Adjustments for Contact Page Responsiveness --- */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}
/* --- V2 Contact Page Redesign --- */
body.contact-page {
  background-color: var(--background);
  background-image:
    radial-gradient(var(--divider) 1px, transparent 1px),
    radial-gradient(var(--divider) 1px, var(--background) 1px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}

.contact-main-wrapper {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 2rem 5%;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}

.contact-form-wrapper h3, .contact-info-wrapper h3 {
  font-size: 2.2rem;
  text-align: left;
  margin-bottom: 2rem;
  color: var(--rose-gold-dark);
}

.contact-form-wrapper h3::after, .contact-info-wrapper h3::after {
  display: none; /* Hide the default h3 underline */
}

.contact-form-wrapper p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Re-styling the form for the new design */
.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group textarea {
  background-color: var(--background);
  border: 1px solid var(--divider);
}

.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group textarea:focus {
  background-color: var(--white);
}

.contact-info-wrapper {
  background: linear-gradient(135deg, var(--rose-gold-dark), var(--rose-gold));
  color: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
}

.contact-info-wrapper h3 {
  color: var(--white);
}

.contact-info-wrapper ul {
  list-style: none;
  padding: 0;
}

.contact-info-wrapper li {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  color: var(--rose-gold-light);
}

.contact-info-wrapper li strong {
  display: block;
  color: var(--white);
  font-weight: 600;
}

.contact-info-wrapper li svg {
  width: 28px;
  height: 28px;
  margin-right: 1.5rem;
  flex-shrink: 0;
  color: var(--rose-gold-light);
}

/* Responsive adjustments for the new contact page */
@media (max-width: 992px) {
  .contact-main-wrapper {
    grid-template-columns: 1fr;
  }
}