/* Base Styles */
:root {
  /* LUXURY PALETTE: Elegant and High-End */
  --primary-color: #1c1c1c;    /* Almost Black - Very elegant */
  --secondary-color: #c5a059;  /* Muted Gold/Sand - Looks expensive */
  --accent-color: #d4af37;     /* Gold accent */
  
  --header-bg: #ffffff;
  --background-color: #fcfcfc; /* Very light grey, not harsh white */
  --card-bg: #ffffff;
  --border-color: #e5e5e5;
  
  --text-color: #333333;
  --text-light: #666666;
  
  --white: #ffffff;
  --black: #000000;
  --light-gray: #f5f5f5;
  
  --border-radius: 0px;        /* Square corners = More premium/architectural */
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft, expensive shadow */
  --transition: all 0.4s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
  padding-top: 100px; /* Matches header height */
}

/* Typography Upgrade */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-color);
  letter-spacing: -0.5px; /* Tighter spacing looks more modern */
}

p {
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 1.5rem;
  font-size: 1.05rem; /* Slightly larger for readability */
  color: #576574; /* Softer grey, looks more premium than black */
}

/* Make the section titles look authoritative */
.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  text-transform: uppercase; /* Capital letters look stronger */
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #c0392b;
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* ================== HEADER STYLES ================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
  height: 100px; /* Taller header */
}

body {
  padding-top: 100px; /* Match header height */
}

/* FIXED: Header Scroll Effect with Vertical Centering */
.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  height: 70px; /* Compact height */
  display: block; /* Critical for centering */
}

.header.scrolled .container {
  width: 100%;         /* Critical: Forces the bar to span the whole screen */
  max-width: 1400px;   /* Matches your main layout */
  margin: 0 auto;      /* Centers the container itself */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Start from left (Logo pushes menu right) */
  padding: 0 2rem;     /* Keep the spacing consistent */
}

/* Ensure the logo shrinks properly to fit the new height */
.header.scrolled .logo {
  height: 40px; /* Smaller logo when scrolling */
  width: auto;
  transition: height 0.3s ease;
}

/* Ensure the company name text size adjusts if needed */
.header.scrolled .company-name {
  font-size: 1.3rem; /* Slightly smaller text */
  transition: font-size 0.3s ease;
}

/* Also add this to smooth the shrinking animation */
.header .container {
  transition: all 0.3s ease;
}

.header.scrolled .logo {
  height: 50px; /* Logo shrinks smoothly too */
}

.header .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  /* Increased padding to 3rem (was 2rem) to pull it away from the edge */
  padding: 0 2rem; 
  position: relative;
}

/* Specific Fix for Header Button */
.header-actions .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;     /* Slightly smaller text */
  white-space: nowrap;   /* Prevents text from breaking */
  height: auto;
  min-width: 120px;      /* Consistent width */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FORCE LUXURY HOVER COLORS */
.header-actions .btn:hover {
  background-color: #c5a059 !important; /* Pure Black on hover */
  border-color: #c5a059 !important;
  color: #ffffff !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* Nice shadow lift */
}

/* Ensure the Language Switcher is also aligned nicely */
.language-switcher {
  margin-right: 0.5rem;   /* Space between languages and the button */
}

/* Adjust the header actions container */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;           /* Consistent gap between items */
  margin-left: auto;   /* Keep it on the right side */
}

/* Logo + Company Name */
.logo-container {
  display: flex !important;
  align-items: center !important; /* Perfect vertical centering */
  gap: 1rem;
  width: auto;
  margin-right: auto; /* THIS IS THE KEY: It pushes everything else to the right */
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px; /* Space between image and text */
}

.logo {
  display: inline-block !important;
  height: 100px;
  width: auto;
  vertical-align: middle;
}

.logo:hover {
  transform: none;
}

.company-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; /* Bold looks professional */
  font-size: 1.5rem; /* Slightly smaller is more elegant */
  color: var(--primary-color);
  white-space: nowrap;
  margin: 0;
  line-height: 1; /* Fixes vertical alignment issues */
  letter-spacing: -0.5px;
}
/* Navigation */
.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.main-nav {
  margin-right: 1rem; /* Space between the Links and the "Get a Quote" button */
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
  font-size: 1.1rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--secondary-color);
}

/* Language Switcher */
.header-actions {
  display: flex;
  align-items: center;
  gap:0.5rem;
  margin-left: 0;
}

.language-switcher {
  display: flex;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  overflow: hidden;
  height: fit-content;
}

.lang-btn {
  padding: 0.5rem 1.2rem;
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

.lang-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.lang-btn:not(.active):hover {
  background-color: rgba(44, 62, 80, 0.1);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  left: 0;
  transition: var(--transition);
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.menu-toggle.active .hamburger {
  background-color: transparent;
}

.menu-toggle.active .hamburger::before {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .hamburger::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  background-color: var(--white);
  transform: translateY(-150%);
  transition: transform 0.3s ease;
  z-index: 999;
  padding: 2rem;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-nav-list li {
  margin-bottom: 1.5rem;
}

.mobile-nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  display: block;
  padding: 0.5rem 0;
  color: var(--primary-color);
}

.mobile-nav-link.active {
  color: var(--secondary-color);
}

.mobile-language-switcher {
  display: flex;
  margin-top: 2rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.mobile-lang-btn {
  flex: 1;
  padding: 0.75rem;
  text-align: center;
  font-weight: 600;
}

.mobile-lang-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
}

/* ================== HERO SECTION (LUXURY STYLE) ================== */
.hero {
  position: relative;
  height: 100vh; /* Full screen height */
  min-height: 600px;
  background: url('../images/hero-bg.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center; /* Vertically center the box */
  margin-top: 0;
}

/* FIXED: Lighter Overlay so the image looks natural */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Very subtle tint just to reduce glare, but keeps image bright */
  background: rgba(0, 0, 0, 0.07);
}

/* The Dark Glass Box */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  background: rgba(18, 18, 18, 0.65); /* Deep Charcoal (Luxury) */
  backdrop-filter: blur(10px);        /* Blurs the image behind text */
  padding: 3.5rem 3rem;
  border-left: 5px solid var(--secondary-color); /* The Gold Accent Line */
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Typography */
.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: #cccccc; /* Light grey text */
  font-weight: 400;
  max-width: 90%;
  line-height: 1.6;
}

/* Hero Buttons Layout */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap; /* Prevents breaking on small screens */
}

/* "Get a Quote" Button (Solid Gold) */
.hero-buttons .btn-primary {
  background-color: var(--secondary-color);
  color: #fff;
  border: 1px solid var(--secondary-color);
  padding: 1rem 2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-buttons .btn-primary:hover {
  background-color: #fff;
  color: var(--primary-color); /* Text turns dark */
  border-color: #fff;
}

/* "Our Services" Button (Transparent Outline) */
.hero-buttons .btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 1rem 2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-buttons .btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .hero-content {
    margin: 0 1.5rem; /* Margins on mobile */
    padding: 2rem;
  }
  .hero-title {
    font-size: 2.2rem; /* Smaller text on phone */
  }
}

/* Services Section */
.services-grid {
  display: grid;
  /* FIXED: Force exactly 5 columns side-by-side */
  grid-template-columns: repeat(5, 1fr); 
  /* Reduced gap slightly (from 2rem to 1rem) so they fit better on standard screens */
  gap: 1rem; 
}

/* Premium Service Cards */
.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem; /* More breathing room */
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy professional feel */
  border-bottom: 3px solid transparent; /* Hidden border by default */
  height: 100%; /* Ensures all cards are same height */
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid var(--secondary-color); /* The Brick Red line appears on hover */
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(44, 62, 80, 0.05); /* Very subtle grey bg */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--secondary-color);
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: rotateY(180deg); /* Cool 3D flip effect on hover */
  background-color: var(--secondary-color);
  color: var(--white);
}

.service-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-description {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ================== ABOUT SECTION (LUXURY) ================== */
.about-section {
  padding: 6rem 0;
  background-color: var(--light-gray);
  overflow: hidden; /* Prevents decorative elements from spilling out */
}

.about-content {
  display: flex;
  align-items: center;
  gap: 5rem; /* More space between text and image */
}

/* 1. The Text Side */
.about-text {
  flex: 1;
}

.about-text h2.section-title {
  text-align: left; /* Force left alignment */
  margin: 0 0 2rem 0;
  font-size: 2.5rem;
  color: var(--primary-color);
}

.about-text h2.section-title::after {
  margin: 1rem 0 0 0; /* Align underline to left */
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* 2. The Features (Checkmarks) */
.about-features {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr; /* Stack them for better readability */
  gap: 1rem;
}

.feature {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.feature i {
  color: var(--secondary-color); /* Gold Icon */
  margin-right: 1rem;
  font-size: 1.3rem;
  background: rgba(197, 160, 89, 0.1); /* Soft gold circle behind check */
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* Circle icon */
}

/* 3. The Image Side (The "Gold Frame" Effect) */
.about-image {
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 0;
  /* ADDED: Limit the width so it doesn't get too big */
  max-width: 350px; 
  /* ADDED: Center it horizontally if there is extra space */
  margin: 0 auto; 
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0px; /* Square corners */
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
  border: 5px solid var(--white);
}

/* The Gold Frame - Perfectly Centered Behind */
.about-image::before {
  content: '';
  position: absolute;
  /* Make the frame slightly larger than the image */
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  
  border: 3px solid var(--secondary-color); /* The Gold Frame */
  z-index: 1;
  opacity: 0.5;
  /* No transform/offset anymore - it stays perfectly in the middle */
}

/* Responsive Fix */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column-reverse; /* Put image on top on mobile */
    gap: 3rem;
  }
  
  .about-image::before {
    transform: translate(-10px, -10px);
  }
}

/* ================== PROJECTS SECTION (LUXURY) ================== */
.projects-section {
  padding: 6rem 0;
  background-color: var(--white); /* Crisp clean background */
}

/* Optional: Filter buttons if you have them */
.project-filters {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid #ddd;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* The Grid */
.projects-grid {
  display: grid;
  /* FIXED: Force 4 columns side-by-side */
  grid-template-columns: repeat(4, 1fr); 
  gap: 1rem; /* Tighter gap to make them fit */
}

@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* The Project Card */
.project-card {
  position: relative;
  overflow: hidden; /* Keeps the zoom inside the box */
  height: 300px;    /* Fixed height for uniformity */
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  cursor: pointer;
}

/* The Image */
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease; /* Smooth slow zoom */
}

/* Hover Effect: Image Zoom */
.project-card:hover img {
  transform: scale(1.1);
}

/* The Overlay (Hidden by default) */
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.85); /* Dark Luxury Overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0; /* Invisible start */
  transition: opacity 0.4s ease;
  text-align: center;
  padding: 2rem;
}

/* Hover Effect: Show Overlay */
.project-card:hover .project-overlay {
  opacity: 1;
}

/* Typography inside Overlay */
.project-title {
  color: var(--secondary-color); /* Gold Title */
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.project-category {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s; /* Slight delay */
}

/* Slide Up Animation for Text */
.project-card:hover .project-title,
.project-card:hover .project-category {
  transform: translateY(0);
}

/* ================== TESTIMONIALS (DARK LUXURY) ================== */
.testimonials-section {
  padding: 6rem 0;
  /* Dark background to contrast with the previous white section */
  background-color: #1a1a1a; 
  color: var(--white);
  text-align: center;
}

.testimonials-section .section-title {
  color: var(--white); /* Force title white */
}

/* The Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* The Review Card */
.testimonial-card {
  background-color: #222; /* Slightly lighter dark grey */
  padding: 3rem 2rem;
  border-top: 4px solid var(--secondary-color); /* Gold Accent Line */
  position: relative;
  transition: transform 2s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px); /* Gentle float effect */
  background-color: #2a2a2a;
}

/* The Quote Icon (Watermark effect) */
.quote-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  opacity: 0.2; /* Subtle background detail */
  margin-bottom: 1rem;
}

/* The Stars */
.stars {
  color: var(--secondary-color); /* Gold */
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* The Text */
.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ddd; /* Light grey text */
  font-style: italic;
  margin-bottom: 2rem;
}

/* The Client Name */
.client-info h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.client-location {
  color: var(--secondary-color);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================== CONTACT SECTION (LIGHT & CLEAN) ================== */
.contact-section {
  padding: 6rem 0;
  background-color: var(--white); /* Bright background */
  color: var(--text-color);
  position: relative;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

/* LEFT SIDE: Contact Info */
.contact-info h2.section-title {
  text-align: left; /* Align title to left */
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-info h2.section-title::after {
  margin: 1rem 0 0 0; /* Align underline to left */
}

.contact-subtitle {
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(197, 160, 89, 0.1); /* Soft Gold Circle */
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.info-content h4 {
  color: var(--primary-color); /* Dark Title */
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.info-content p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.info-content a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.info-content a:hover {
  color: var(--secondary-color);
}

/* RIGHT SIDE: The Form */
.contact-form-box {
  background-color: var(--white);
  padding: 3rem;
  border: 1px solid rgba(0,0,0,0.05); /* Subtle border */
  border-top: 4px solid var(--secondary-color); /* Gold Top Line */
  box-shadow: 0 20px 50px rgba(0,0,0,0.1); /* Soft shadow */
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Inputs */
.form-control {
  width: 100%;
  padding: 1rem;
  background-color: #f9f9f9; /* Very light grey input background */
  border: 1px solid #eee;
  color: #333;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-radius: 0; /* Sharp corners */
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  background-color: var(--white);
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Placeholder color */
::placeholder {
  color: #555;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr; /* Stack on mobile */
    gap: 3rem;
  }
}

/* ================== MAP SECTION ================== */
.map-section {
  width: 100%;
  height: 450px;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 4px solid var(--secondary-color); /* Gold line separating map and footer */
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.1); /* Slight filter for a premium look */
}

/* ================== LUXURY FOOTER ================== */
.footer {
  background-color: #1a1a1a; /* Pure Black */
  color: #888;
  padding: 5rem 0 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

/* Footer Columns */
.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: #888;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: #888; /* Matches the text above perfectly */
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.footer-logo {
  max-width: 280px;
  width: 100%;
  margin-bottom: 2rem;
  margin-left: -20px;
  /* Ensure your logo PNG has a transparent background! */
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--secondary-color); /* Turns Gold on hover */
  transform: translateX(5px); /* Slides slightly right */
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #111;
  color: var(--white);
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
}

/* Copyright Bar */
.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright-text {
  font-size: 0.85rem;
}

/* Back to Top Button */
.back-to-top {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-5px);
  background-color: var(--white);
  color: var(--secondary-color);
}

/* ================== RESPONSIVE STYLES (MOBILE OPTIMIZATION) ================== */

/* Tablet & Small Laptops (max-width: 1200px) */
@media (max-width: 1200px) {
  .services-grid {
    /* Switch to 2 or 3 columns instead of 5 */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  }
  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* Tablets & Large Phones (max-width: 992px) */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .about-content {
    flex-direction: column; /* Stack image and text */
  }
  
  .contact-container {
    grid-template-columns: 1fr; /* Stack form below info */
    gap: 3rem;
  }
  
  .contact-info {
    margin-bottom: 2rem;
  }
}

/* Mobile Phones (max-width: 768px) */
@media (max-width: 768px) {
  /* Header adjustments */
  .main-nav { display: none; }
  .header .container { padding: 0 1.5rem; }
  .menu-toggle { display: block; }
  .header-actions { display: none; }
  
  /* Hero Section adjustments */
  .hero-content {
    margin: 0 1rem;       /* Add margin so it doesn't touch edges */
    padding: 2rem 1.5rem; /* Smaller padding inside the box */
    max-width: 100%;
  }
  .hero-title {
    font-size: 2.2rem;    /* Readable size on mobile */
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 1rem;
  }
  .btn {
    width: 100%; /* Full width buttons on mobile */
  }

  /* Footer Adjustments */
  .footer-logo {
    margin-left: 0;  /* IMPORTANT: Reset negative margin so it's not cut off */
    max-width: 200px; /* Slightly smaller logo on phone */
  }
  
  /* Menu Items */
  .mobile-nav-link {
    font-size: 1.2rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .mobile-menu {
    padding-top: 2rem;
  }
}

/* Small Phones (max-width: 576px) */
@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem; /* Fit on small screens */
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section {
    padding: 4rem 0; /* Reduce vertical spacing */
  }
  
  /* Stack footer items nicely */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}