/* =============================================
   IREO Properties - Custom Styles
   ============================================= */

:root {
  --color-primary: #1e293b;
  --color-accent: #3b82f6;
  --color-success: #22c55e;
  --color-whatsapp: #25D366;
  --color-muted: #64748b;
  --color-border: #e2e8f0;
  --color-light: #f8fafc;
  --shadow-card: 0 0 0 1px rgba(0,0,0,0.05), 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-card-hover: 0 0 0 1px rgba(0,0,0,0.05), 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

/* Base Styles */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--color-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--color-primary);
}

/* Section Padding */
.section-padding {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }
}

/* Header */
.header-main {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: 80px;
  z-index: 1030;
}

.header-main .navbar {
  height: 100%;
}

.letter-spacing-wide {
  letter-spacing: 0.1em;
}

p{
  font-size: 14px !important;
}
.head-btn{
  background-color: #000;
  color: #fff;
}
.head-btn:hover{
  background-color: var(--color-accent);
  color: #fff;
}
/* Accent Color Button */
.btn-accent {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.btn-accent:hover {
  background-color: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.text-accent {
  color: var(--color-accent) !important;
}

/* Hero Section */
.hero-section {
  height: 500px;
  position: relative;
}

@media (min-width: 768px) {
  .hero-section {
    height: 600px;
  }
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 41, 59, 0.8), rgba(30, 41, 59, 0.4), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-content h1{
  width: 70%;
}
.btn{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
.call-btn{
  background-color: #6b77877d;
  color: #fff;
  font-size: 16px;
}
.call-btn:hover{
  background-color: #6b77877d;
}
/* Project Cards */
.project-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0.75rem;
  overflow: hidden;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.project-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Project Detail Banner */
.project-banner {
  height: 400px;
  position: relative;
}

@media (min-width: 768px) {
  .project-banner {
    height: 500px;
  }
}

/* CTA Bar */
.cta-bar {
  background-color: var(--color-light);
  border-bottom: 1px solid var(--color-border);
}

/* Pricing Table */
.pricing-table {
  width: 100%;
}

.pricing-table thead {
    background-color: #ececec;
}
.pricing-table th {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--color-muted);
  padding: 0.75rem 1rem;
}

.pricing-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.875rem;
}

.pricing-table .price-col {
  color: var(--color-accent);
  font-weight: 500;
}

/* Highlights List */
.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.highlights-list .bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.375rem;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.page-content h2{
  font-size: 18px;
}
.gallery-item {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.gallery-item:hover {
  opacity: 0.9;
}

/* Accordion Styling */
.accordion-button {
  font-weight: 500;
  font-size: 0.875rem;
}

.accordion-button:not(.collapsed) {
  background-color: #fff;
  color: var(--color-primary);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--color-border);
}

/* Footer */
.footer-main {
  background-color: var(--color-primary);
  color: #fff;
}

.footer-logo {
  filter: brightness(0) invert(1);
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #fff;
}

/* Sticky Buttons */
.sticky-call,
.sticky-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sticky-call {
  left: 1rem;
  background-color: var(--color-accent);
}

.sticky-whatsapp {
  right: 1rem;
  background-color: var(--color-whatsapp);
}

.sticky-call:hover,
.sticky-whatsapp:hover {
  opacity: 0.9;
  transform: scale(1.05);
  color: #fff;
}

/* Success Icon */
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-success);
}

/* Form Controls */
.form-control {
  background-color: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  background-color: var(--color-light);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-control-lg {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

/* Modal */
.modal-content {
  border-radius: 0.75rem;
  border: none;
}

/* Lightbox */
.lightbox-image {
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
}

.lightbox-nav {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.lightbox-nav:hover {
  opacity: 1;
}

/* Dropdown Menu */
.dropdown-menu {
  border-radius: 0.75rem;
  padding: 0.5rem 0;
  min-width: 16rem;
}
.dropdown-item{
    font-size: 14px;
}
.dropdown-item:hover {
  background-color: var(--color-light);
}

/* Badges */
.badge.bg-success {
  background-color: transparent !important;
  color: var(--color-success) !important;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.625rem;
}
ul li svg {
  fill: #cac8c8;
  stroke: #cac8c8;
}
.short-img{
  max-width: 800px;
}
.accordion-body{
  font-size: 14px;
}
/* Utility Classes */
.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

/* Image Click Cursor */
.img-clickable {
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.img-clickable:hover {
  opacity: 0.9;
}

/* Page Content */
.page-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.page-content h1{
  font-size: 20px;
}
.page-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.page-content p {
  margin-bottom: 1rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.page-content ul {
  color: var(--color-muted);
  margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .display-4 {
    font-size: 1.75rem;
  }
  
  .display-6 {
    font-size: 1.5rem;
  }
  
  .hero-content {
    padding-bottom: 3rem !important;
  }
}


.projects-section {
  background: #f5f7fa;
}

.project-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  height: 220px;
  object-fit: cover;
}

/* Card Body */
.card-body-custom {
  padding: 20px;
}

/* Badge */
.badge-ready {
  background: #d1fae5;
  color: #059669;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 600;
}

/* Location */
.location {
  color: #6c757d;
  font-size: 14px;
}

/* List */
.project-card ul {
  padding-left: 0;
  list-style: none;
  font-size: 14px;
  color: #555;
}

.project-card ul li {
  margin-bottom: 5px;
}

/* Buttons */
.btn-call {
  background: #3b82f6;
  color: #fff;
  border: none;
    font-size: 14px;
}
.btn-call:hover {
  background: #3b82f6;
  color: #fff;
  border: none;
    font-size: 14px;
}
.btn-enquiry {
  background: #0f172a;
  color: #fff;
  border: none;
    font-size: 14px;
}
.btn-enquiry:hover{
  background: #0f172a;
  color: #fff;
  border: none;
  font-size: 14px;
}
/* Responsive */
@media (max-width: 768px) {
  .project-card img {
    height: 180px;
  }
}
@media (max-width: 500px) {
 .short-img{
  max-width: 100%;
}
}
.project-card ul li i {
  color: #cac8c8;
}

.location i {
  color: #6c757d;
}