@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --primary: #0e1b36;
  /* Deep Dark Blue */
  --secondary: #0f75bd;
  /* Main Brand Blue */
  --secondary-hover: #0a568c;
  /* Darker blue for hover states */
  --bg-color: #f7f9fc;
  /* Very light cool blue-white */
  --text-dark: #162032;
  /* Deep blue-tinted text */
  --text-light: #5b6982;
  --white: #FFFFFF;
  --border-color: #d1d8e6;
  --danger: #e74c3c;
  --success: #2ecc71;
  --transition: all 0.3s ease;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Layout Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-light {
  background-color: var(--white);
}

.section-dark {
  background-color: var(--primary);
  color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  transition: var(--transition);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
}

header.scrolled {
  padding: 15px 0;
}

header .nav-link {
  color: var(--primary);
}

header .logo-text {
  color: var(--primary);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: block;
}

.logo-link img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;

  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

.hamburger i {
  font-size: 1.5rem;
}

/* Page Banner (For inner pages) */
.page-banner {
  height: 40vh;
  min-height: 400px;
  background-color: var(--primary);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 27, 54, 0.8);
}

.page-banner-content {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 10px;
}

.page-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

/* Common Components */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 50px auto;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 15px;
}

.footer-logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.footer-col p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: var(--secondary);
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    color: var(--primary);
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links .nav-link {
    color: var(--primary) !important;
    font-size: 1.2rem;
  }

  .nav-links .btn {
    margin-top: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* --- NEW SECTIONS --- */

/* Top Bar */
.top-bar {
  background-color: var(--primary);
  color: var(--bg-color);
  font-size: 0.85rem;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: var(--bg-color);
  margin-right: 15px;
}

.top-bar a:hover {
  color: var(--secondary);
}


/* Why Choose Us Checkbox List */
.why-us-list {
  margin-top: 30px;
}

.why-us-list li {
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.why-us-list li i {
  color: var(--success);
  margin-right: 12px;
  font-size: 1.2rem;
}

/* Property Setup Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(14, 27, 54, 0.9));
  color: var(--white);
  padding: 20px 15px 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.testimonial-image {
  height: 200px;
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  padding: 30px;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 5rem;
  color: rgba(15, 117, 189, 0.1);
  font-family: serif;
}

.testimonial-stars {
  color: var(--secondary);
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}

/* Blogs */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.blog-title a:hover {
  color: var(--secondary);
}

.blog-desc {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.read-more {
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.product-card-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.product-card-text {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
  flex-grow: 1;
}

.product-card-link {
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
}

.product-card-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.product-card-link:hover i {
  transform: translateX(5px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info-card {
  background: var(--primary);
  color: var(--white);
  padding: 50px 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.contact-info-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--white);
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.contact-method i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--secondary);
  margin-right: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-method:hover i {
  background: var(--secondary);
  color: var(--white);
}

.method-details h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--white);
}

.method-details p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

/* Form Styles */
.contact-form-wrapper {
  background: var(--white);
  padding: 50px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.contact-form-wrapper h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--primary);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-color);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(15, 117, 189, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 30px;
  }

  .contact-info-card {
    padding: 40px 30px;
  }
}

/* Elegant Brand Carousel */
.logo-carousel {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.logo-track {
  display: flex;
  gap: 80px;
  animation: marquee 60s linear infinite;
  align-items: center;
  width: max-content;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-item {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: max-content;
}

.logo-item .brand-name {
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.logo-item .location {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #b59461;
  /* Muted Gold */
  letter-spacing: 4px;
  font-weight: 500;
  opacity: 0.9;
}

.logo-sep {
  color: var(--secondary);
  opacity: 0.3;
  font-size: 1.2rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50%));
  }
}

.logo-carousel::before,
.logo-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  width: 15vw;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}