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

:root {
  /* Richer White/Light Theme */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc; /* Even softer slate gray */
  --bg-tertiary: #e2e8f0;
  --bg-dark: #0f172a; /* Sleek Slate 900 */
  
  /* Brand Colors */
  --primary-color: #0f172a; /* Deep Slate Navy */
  --accent-color: #eab308; /* Premium Yellow/Gold */
  --accent-hover: #ca8a04;
  
  /* Text Colors */
  --text-dark: #212529;
  --text-muted: #5a6a77;
  --text-light: #ffffff;
  
  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Roboto', sans-serif;
  
  /* Premium Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(10, 37, 64, 0.05), 0 2px 4px -1px rgba(10, 37, 64, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(10, 37, 64, 0.08), 0 4px 6px -2px rgba(10, 37, 64, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(10, 37, 64, 0.1), 0 10px 10px -5px rgba(10, 37, 64, 0.04);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}

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

img, video {
  max-width: 100%;
  display: block;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background-color: var(--accent-color);
  color: var(--text-light) !important;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--accent-color);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  background-color: var(--accent-hover);
  color: var(--text-light) !important;
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-primary:hover {
  background-color: #051626; /* Darker tint for hover */
  color: var(--text-light) !important;
  border-color: #051626;
}

/* --- Top Bar --- */
.top-bar {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 12px 0;
  font-size: 0.95rem;
  border-bottom: 3px solid var(--accent-color);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-contact {
  display: flex;
  gap: 25px;
}

.top-bar-contact a {
  color: var(--text-light);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/* --- Header / Navbar --- */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo img {
  height: 65px;
  transition: var(--transition);
}

.logo:hover img {
  transform: scale(1.05);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1.1rem;
  padding: 5px 0;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  transition: var(--transition);
  border-radius: 2px;
}

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

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

/* --- Page Header (for inner pages) --- */
.page-header {
  background-color: var(--bg-dark);
  padding: 80px 0;
  text-align: center;
  color: var(--text-light);
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--accent-color);
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

.breadcrumb {
  color: var(--text-muted);
  font-size: 1rem;
}

.breadcrumb a {
  color: var(--accent-color);
}

/* --- Hero Section (Index) --- */
.hero {
  position: relative;
  background-color: var(--bg-dark);
  padding: 120px 0;
  overflow: hidden;
  color: var(--text-light);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3; 
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 25px;
  color: var(--text-light);
  line-height: 1.1;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 40px;
}

/* --- Content Sections --- */
.section {
  padding: 100px 0;
}

.section-bg {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--bg-tertiary);
  border-bottom: 1px solid var(--bg-tertiary);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 5px;
  background-color: var(--accent-color);
  margin: 20px auto 0;
  border-radius: 3px;
}

.section-title p {
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.service-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-img::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(10,37,64,0.1));
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.08);
}

.service-content {
  padding: 35px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-content p {
  color: var(--text-muted);
  margin-bottom: 25px;
  font-size: 1.05rem;
  flex-grow: 1;
}

.service-link {
  font-weight: 700;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-link:hover {
  gap: 10px;
  color: var(--primary-color);
}

/* --- Image Features (Why Us) --- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-content h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.feature-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin-top: 30px;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 500;
}

.feature-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--accent-color);
  color: var(--text-light);
  border-radius: 50%;
  margin-right: 15px;
  font-size: 0.9rem;
}

.feature-img {
  position: relative;
}

.feature-img img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.feature-img::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 4px solid var(--accent-color);
  border-radius: 12px;
  z-index: -1;
}

/* --- Contact Section New Styles --- */
.contact-boxes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.contact-box-link {
  display: block;
  color: var(--text-dark);
}

.contact-box-link:hover {
  color: var(--text-dark);
}

.contact-box {
  background-color: var(--bg-primary);
  border: 1px solid var(--bg-tertiary);
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-box-link:hover .contact-box {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.contact-icon {
  width: 65px;
  height: 65px;
  background-color: var(--bg-secondary);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.contact-box-link:hover .contact-icon {
  background-color: var(--accent-color);
  color: var(--text-light);
}

.contact-box h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.contact-box p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0;
}

/* --- Form Improvements --- */
.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--bg-secondary);
  padding: 50px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-family: var(--font-body);
  transition: var(--transition);
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.2);
}

.submit-box {
  background-color: var(--bg-primary);
  border: 2px dashed var(--accent-color);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  margin-top: 10px;
}

.submit-box p {
  color: var(--text-muted);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.submit-box .btn {
  width: 100%;
  max-width: 300px;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe57;
  color: #FFF;
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
}

/* --- Footer --- */
footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 80px 0 30px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--accent-color);
}

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

.footer-about img {
  height: 60px;
  margin-bottom: 25px;
  border-radius: 4px;
  background-color: transparent;
}

.footer-about p {
  color: #cbd5e1;
  font-size: 1.05rem;
}

.footer-title {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #cbd5e1;
  transition: var(--transition);
  font-size: 1.05rem;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 8px;
}

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

/* Header CTA Button */
.nav-cta-btn {
  background-color: var(--accent-color);
  color: var(--text-light) !important;
  padding: 8px 20px !important;
  border-radius: 6px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: inline-block;
  border: 2px solid var(--accent-color);
}

.nav-cta-btn::after {
  display: none !important; /* hide the underline effect */
}

.nav-cta-btn:hover {
  background-color: transparent;
  color: var(--accent-color) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .hero h1 { font-size: 3rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .contact-boxes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar-contact { flex-direction: column; gap: 5px; text-align: center; width: 100%; }
  .top-bar .container { flex-direction: column; }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-container {
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 15px 0;
  }
  
  .nav-container .logo {
    margin-right: auto;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: 0 15px 15px -5px rgba(10,37,64,0.1);
    padding: 20px;
    z-index: 999;
    border-top: 1px solid var(--bg-tertiary);
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  nav a {
    display: block;
    padding: 10px 0;
  }

  .nav-cta-btn {
    width: 100%;
    max-width: 250px;
    margin: 10px auto 0;
  }

  .hero h1 { font-size: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
