/* Sindhura Projects - Pure Static CSS */
:root {
  --primary: #fc6404;
  --primary-dark: #e55a00;
  --blue: #046bd2;
  --blue-dark: #045cb4;
  --text: #334155;
  --heading: #1e293b;
  --bg: #f9fafb;
  --white: #ffffff;
  --border: #e2e8f0;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

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

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 0.75em;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Top bar */
.top-bar {
  background: var(--primary);
  color: var(--white);
  font-size: 0.9rem;
  padding: 0.5rem 0;
}

.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: flex-end;
  align-items: center;
}

.top-bar a { color: var(--white); font-weight: 600; }

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.logo img { max-width: 120px; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.25rem;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  display: block;
  padding: 0.75rem 1rem;
  color: #000;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a:hover,
.main-nav a.active { color: var(--primary); }

.main-nav .has-sub { position: relative; }

.main-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--blue);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 50;
}

.main-nav .has-sub:hover .sub-menu,
.main-nav .has-sub.open .sub-menu { display: block; }

.main-nav .sub-menu a {
  text-transform: none;
  font-size: 0.9rem;
  padding: 0.65rem 1rem;
}

/* Hero slider */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: #111;
}

.hero-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.hero-slide {
  min-width: 100%;
  position: relative;
}

.hero-slide img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.hero-slide a { display: block; }

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 4px;
}

.hero-prev { left: 1rem; }
.hero-next { right: 1rem; }

.page-hero {
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Main content */
main { min-height: 50vh; }

.page-content {
  padding: 2.5rem 0 3rem;
}

.page-content .section {
  padding: 2rem 0;
}

.page-content .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}

.page-content .row.reverse { direction: rtl; }
.page-content .row.reverse > * { direction: ltr; }

.page-content ul {
  padding-left: 1.25rem;
  margin: 0 0 1em;
}

.page-content li { margin-bottom: 0.35em; }

.btn,
.page-content a.elementor-button,
.page-content .elementor-button {
  display: inline-block;
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
}

.btn:hover,
.page-content a.elementor-button:hover { background: var(--primary-dark); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}

/* Accordion */
.accordion details {
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 0.5rem;
  padding: 0.75rem 1rem;
}

.accordion summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--heading);
}

/* Contact form */
.contact-form,
.sindhura-contact-form .contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-field { padding: 0.5rem 0; }

.form-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 4px;
  font: inherit;
}

.form-field textarea { min-height: 120px; resize: vertical; }

.contact-form button[type="submit"],
.sindhura-contact-form button[type="submit"] {
  margin-top: 0.75rem;
  align-self: flex-start;
}

/* Footer */
.site-footer {
  background: linear-gradient(190deg, rgba(255,255,255,0.18) 40%, rgba(252,100,4,0.37) 100%);
  border-top: 2px solid var(--white);
  padding: 3rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-grid h4 {
  color: var(--heading);
  margin-bottom: 1rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--text); }
.footer-links a:hover { color: var(--primary); }

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 50%;
  font-size: 0.85rem;
}

.footer-bottom {
  text-align: center;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}

/* Scroll top */
#scroll-top {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.25rem;
  z-index: 99;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#scroll-top.visible { display: block; }

/* Feature / testimonial grids */
.features-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.features-grid > div,
.testimonials-grid blockquote {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem;
}

.testimonials-grid blockquote {
  margin: 0;
  font-style: italic;
}

.testimonials-grid blockquote p { margin: 0; }

@media (max-width: 921px) {
  .features-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* Responsive */
@media (max-width: 921px) {
  .nav-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
  }

  .main-nav.open { display: block; }

  .main-nav ul { flex-direction: column; align-items: stretch; }

  .main-nav .sub-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-content .row { grid-template-columns: 1fr; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
}

@media (max-width: 544px) {
  .footer-grid { grid-template-columns: 1fr; }
  .top-bar .container { justify-content: center; text-align: center; }
}
