/* Template Name: Archi - Adapted for ArchivAult
   Custom Architecture Portfolio CSS */

:root {
  /* Color Scheme */
  --accent-color: #C5A992;
  --accent-light: #E2D4C9;
  --accent-dark: #A3866E;
  --dark-color: #0B0B0C;
  --grey-color: #F7F7F9;
  --body-text-color: #4A4A4F;
  --light-text-color: #afafaf;
  --dark-text-color: #0B0B0C;
  
  /* Fonts */
  --body-font: "Inter", sans-serif;
  --heading-font: "Outfit", sans-serif;
  
  /* Sizes */
  --header-height: 75px;
  --header-height-min: 75px;
  
  color-scheme: dark light;
}

@media screen and (max-width: 600px) {
  :root {
    --header-height: 70px;
    --header-height-min: 70px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.8;
  color: var(--body-text-color);
  background-color: #fff;
}

body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-text-color);
  letter-spacing: 0.05em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

h2.light, h3.light { color: #fff; }

a {
  color: var(--dark-text-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

figure {
  margin: 0;
}

/* Section Styles */
section {
  overflow: hidden;
}

.padding-xlarge {
  padding: 120px 0;
}

.padding-large {
  padding: 80px 0;
}

.padding-small {
  padding: 40px 0;
}

.bg-dark {
  background-color: var(--dark-color);
  color: #fff;
}

.bg-grey {
  background-color: var(--grey-color);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: capitalize;
}

.section-title.light {
  color: #fff;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 15px 35px;
  border: none;
  border-radius: 3px;
  font-family: var(--heading-font);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-accent {
  background-color: var(--accent-color);
  color: #fff;
}

.btn-accent:hover {
  background-color: #b39880;
  color: #fff;
}

.btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-outline-light:hover {
  background-color: #fff;
  color: var(--dark-color);
}

.btn-xlarge {
  padding: 20px 45px;
  font-size: 1rem;
}

.btn-rounded {
  border-radius: 50px;
}

.btn-full {
  width: 100%;
}

.btn-with-line {
  position: relative;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-with-line:hover {
  padding-bottom: 12px;
  border-bottom: 3px solid var(--accent-color);
}

/* Navigation Styles */
.navbar {
  padding: 24px 0 !important;
  background: rgba(11, 11, 12, 0.15) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-brand {
  font-family: var(--heading-font);
  font-size: 1.5rem !important;
  color: var(--accent-color) !important;
  font-weight: 700;
  display: inline-flex !important;
  align-items: center;
  flex: 0 0 auto;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.logo-text {
  font-family: var(--heading-font);
  font-size: 1.25rem !important;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-color) !important;
  position: relative;
  padding-bottom: 4px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-text .logo-light {
  font-weight: 600;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-text:hover {
  letter-spacing: 0.26em;
}

.logo-text:hover .logo-light {
  color: var(--accent-light);
}

.logo-text:hover::after {
  width: 60%;
  left: 20%;
}

.navbar-brand img,
.navbar-logo {
  display: block !important;
  height: 48px !important;
  max-height: 48px !important;
  width: auto !important;
  object-fit: contain !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@media screen and (max-width: 768px) {
  .navbar-brand img,
  .navbar-logo {
    height: 38px !important;
    max-height: 38px !important;
  }
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.05);
}

/* Navbar Camouflage Themes */
/* Dark Background (White Links, Inverted Logo) */
.navbar.navbar-dark-theme .navbar-nav .nav-link {
  color: #fff !important;
}
.navbar.navbar-dark-theme .navbar-nav .nav-link:hover,
.navbar.navbar-dark-theme .navbar-nav .nav-link.active {
  color: var(--accent-color) !important;
}
.navbar.navbar-dark-theme .navbar-logo {
  filter: none;
}
.navbar.navbar-dark-theme .navbar-toggler-icon {
  filter: none;
}
.navbar.navbar-dark-theme .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Light Background (Dark Links, Normal/Multiplied Logo) */
.navbar.navbar-light-theme .navbar-nav .nav-link {
  color: var(--dark-color) !important;
}
.navbar.navbar-light-theme .navbar-nav .nav-link:hover,
.navbar.navbar-light-theme .navbar-nav .nav-link.active {
  color: var(--accent-color) !important;
}
.navbar.navbar-light-theme .navbar-logo {
  filter: invert(1);
}
.navbar.navbar-light-theme .navbar-toggler-icon {
  filter: invert(1);
}
.navbar.navbar-light-theme .navbar-toggler {
  border-color: rgba(11, 11, 12, 0.2) !important;
}

.navbar-nav .nav-link {
  color: #fff !important;
  margin: 0 15px;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-color) !important;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: none;
}

.nav-overlay.active {
  display: block;
}

.nav-overlay .nav-content {
  height: 100%;
  display: flex;
  align-items: center;
}

/* Main Logo */
.main-logo {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 999;
  background: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-logo a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Hero Slider (Legacy) */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: var(--header-height);
}

.slider-item {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slider-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.banner-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 30px;
  animation: slideUp 0.8s ease-out;
}

.banner-content .btn-wrap {
  animation: slideUp 1.2s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 15px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: var(--accent-color);
  width: 30px;
  border-radius: 6px;
}

/* Hero Section with Video Background */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.2)
  );
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 60px 40px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content .container-fluid {
  max-width: 1400px;
  margin: 0 auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: var(--heading-font);
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
  max-width: 800px;
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-buttons .btn {
  font-size: 1.05rem;
  padding: 16px 45px;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.hero-buttons .btn-accent {
  background-color: var(--accent-color);
  color: #fff;
  border: 2px solid var(--accent-color);
}

.hero-buttons .btn-accent:hover {
  background-color: #b39880;
  border-color: #b39880;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(197, 169, 146, 0.4);
}

.hero-buttons .btn-outline-light {
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
}

.hero-buttons .btn-outline-light:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(197, 169, 146, 0.4);
}

/* Testimonials Carousel */
.testimonial-carousel {
  position: relative;
  padding: 60px 0;
}

.testimonial-slide {
  pointer-events: auto;
}

.testimonial-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-slide img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-color);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: block;
}

.testimonial-slide:hover img {
  transform: scale(1.08);
  box-shadow: 0 12px 35px rgba(197, 169, 146, 0.3);
}

.testimonial-slide p {
  color: var(--body-text-color);
  font-style: italic;
}

.testimonial-slide h5 {
  color: var(--dark-text-color);
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
}

.testimonial-slide .title {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive Hero */
@media screen and (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .hero-section {
    height: 85vh;
  }

  .hero-title {
    font-size: 2.4rem;
    margin-bottom: 18px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 35px;
    line-height: 1.5;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-buttons .btn {
    font-size: 0.9rem;
    padding: 12px 28px;
  }
}

@media screen and (max-width: 480px) {
  .hero-section {
    height: 75vh;
  }

  .hero-content {
    padding: 30px 20px;
  }

  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.4;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .hero-buttons .btn {
    font-size: 0.85rem;
    padding: 11px 24px;
    width: 100%;
    text-align: center;
  }
}

/* Portfolio Styles */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-color: #f5f5f5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 320px !important;
  aspect-ratio: auto !important;
  border-radius: 10px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  filter: brightness(1);
}

.portfolio-item .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 10;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px);
}

.portfolio-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

/* Portfolio Grid - 3 columns on desktop, 2 on tablet, 1 on mobile */
@media screen and (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
}

@media screen and (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid var(--accent-color);
  background: transparent;
  color: var(--accent-color);
  cursor: pointer;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.filter-btn.active {
  background-color: var(--accent-color);
  color: #fff;
}

.filter-btn:hover {
  background-color: var(--accent-color);
  color: #fff;
}

/* Portfolio Carousel Styles */
.portfolio-carousel-container {
  display: none;
  margin-bottom: 50px;
}

.portfolio-carousel {
  position: relative;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

.carousel-main {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 30px;
  z-index: 10;
}

.carousel-content {
  color: #fff;
  width: 100%;
}

.carousel-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.2;
}

.carousel-category {
  font-size: 0.95rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 5px;
}

.carousel-year {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
  left: 15px;
}

.carousel-btn-next {
  right: 15px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--accent-color);
  transform: scale(1.2);
}

.carousel-counter {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 20;
}

.portfolio-grid-container {
  display: block;
}

@media screen and (max-width: 768px) {
  .portfolio-carousel-container {
    display: block;
  }

  .portfolio-grid-container {
    display: none;
  }
}

/* Contact Section */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea {
  padding: 15px;
  border: none;
  border-bottom: 1px solid #ddd;
  font-family: var(--body-font);
  font-size: 1rem;
  background: transparent;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--accent-color);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info-box {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-info-box .icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-box .detail h4 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.contact-info-box .detail p {
  color: var(--light-text-color);
}

/* WhatsApp & Call Button - Premium Floating Buttons */
/* WhatsApp & Call Button - Premium Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
  transition: all 0.3s ease;
}

.toggle-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  border: none;
  box-shadow: 0 8px 30px rgba(197, 169, 146, 0.4);
  position: relative;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.toggle-btn:hover {
  transform: scale(1.08);
  background: var(--accent-dark);
  box-shadow: 0 12px 35px rgba(197, 169, 146, 0.5);
}

.floating-buttons.expanded .toggle-btn {
  background: #0B0B0C;
  color: var(--accent-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(1) rotate(135deg);
}

.whatsapp-btn, .call-btn, .contact-btn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  border-radius: 50px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.whatsapp-btn {
  background: rgba(11, 11, 12, 0.95);
  padding: 0 20px;
  min-width: 140px;
  gap: 8px;
  font-weight: 600;
  font-size: 13px;
}

.whatsapp-btn:hover {
  background: #0B0B0C;
  border-color: rgba(37, 211, 102, 0.5);
  transform: scale(1.05);
  color: #25D366;
}

.call-btn, .contact-btn {
  width: 48px;
  background: rgba(11, 11, 12, 0.95);
}

.call-btn:hover {
  background: #0B0B0C;
  border-color: var(--accent-color);
  transform: scale(1.05);
  color: var(--accent-color);
}

.contact-btn:hover {
  background: #0B0B0C;
  border-color: var(--accent-color);
  transform: scale(1.05);
  color: var(--accent-color);
}

.floating-buttons.expanded .whatsapp-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition-delay: 0.05s;
}

.floating-buttons.expanded .call-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition-delay: 0.1s;
}

.floating-buttons.expanded .contact-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition-delay: 0.15s;
}

/* Scrolled Navbar Styles */
.navbar.navbar-scrolled {
  padding: 12px 0 !important;
  background: rgba(11, 11, 12, 0.4) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Scroll Reveal Animations (Fast and Subtle) */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Footer Styles */
.footer {
  background-color: var(--dark-color);
  color: #fff;
  padding: 60px 0 20px;
}

.footer h5 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: var(--light-text-color);
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--accent-color);
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 10px;
}

.gallery-thumb {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-thumb:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 40px;
  text-align: center;
  color: var(--light-text-color);
}

.footer-bottom a {
  color: var(--accent-color);
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: #fff;
}

/* Testimonials */
.testimonial-item {
  background-color: var(--grey-color);
  padding: 40px;
  border-radius: 3px;
  margin: 20px 0;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: var(--dark-text-color);
}

.testimonial-author-title {
  font-size: 0.875rem;
  color: var(--light-text-color);
}

/* About Section */
.about-content {
  line-height: 1.8;
  color: var(--body-text-color);
}

.about-content p {
  margin-bottom: 20px;
}

.about-content strong {
  color: var(--dark-text-color);
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.blog-item {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-item:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 30px;
}

.blog-date {
  font-size: 0.875rem;
  color: var(--accent-color);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--dark-text-color);
}

.blog-title a {
  color: var(--dark-text-color);
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--accent-color);
}

.blog-excerpt {
  color: var(--body-text-color);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer-content {
  background: var(--grey-color);
  padding: 40px;
  border-radius: 3px;
  margin: 30px 0;
  line-height: 1.8;
}

.disclaimer-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--dark-text-color);
}

.disclaimer-content ul,
.disclaimer-content ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.disclaimer-content li {
  margin-bottom: 8px;
}

/* Project Card (Legacy) */
.project-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-card .card-img-top {
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .card-img-top {
  transform: scale(1.04);
}

/* Hero Background (Legacy) */
.hero-background {
  background-image: url('https://images.unsplash.com/photo-1512917752300-9d34d4c8c75c?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(1.05);
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.25);
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.1)
  );
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.25rem; }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .padding-xlarge {
    padding: 60px 0;
  }
  
  .padding-large {
    padding: 40px 0;
  }
  
  .banner-title {
    font-size: 2.5rem;
  }
  
  .hero-slider {
    margin-top: var(--header-height-min);
    height: 70vh;
  }
  
  .navbar {
    padding: 15px 0 !important;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .floating-buttons {
    bottom: 20px;
    right: 20px;
    gap: 8px;
  }

  .toggle-btn {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }

  .whatsapp-btn {
    padding: 10px 15px;
    font-size: 12px;
    min-width: 125px;
  }

  .whatsapp-btn svg {
    width: 18px;
    height: 18px;
  }

  .call-btn,
  .contact-btn {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .call-btn svg,
  .contact-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 60vh;
  }
  
  .banner-title {
    font-size: 1.75rem;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 0.8rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-gallery {
    grid-template-columns: 1fr;
  }
  
  .floating-buttons {
    bottom: 15px;
    right: 15px;
    gap: 8px;
  }

  .toggle-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .whatsapp-btn {
    padding: 9px 14px;
    font-size: 12px;
    min-width: 110px;
    gap: 6px;
  }

  .whatsapp-btn svg {
    width: 16px !important;
    height: 16px !important;
  }

  .call-btn,
  .contact-btn {
    width: 45px;
    height: 45px;
  }

  .call-btn svg,
  .contact-btn svg {
    width: 18px;
    height: 18px;
  }
}

.letter-spacing-3 {
  letter-spacing: 0.24em;
}

/* Contact CTA Buttons */
.contact-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.contact-cta-btn {
  font-family: var(--heading-font);
  border-radius: 4px;
}

@media screen and (max-width: 992px) {
  .contact-cta-buttons {
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .contact-cta-buttons {
    gap: 12px;
  }
  
  .contact-cta-btn {
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
  }
}

@media screen and (max-width: 480px) {
  .contact-cta-btn {
    padding: 12px 16px !important;
    font-size: 0.9rem !important;
  }
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
  .hero-background {
    background-position: top;
  }
}

/* Service Cards Styles */
.service-card {
  text-align: center;
  padding: 50px 35px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: #fff;
  border: 1px solid rgba(11, 11, 12, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(197, 169, 146, 0.15);
  border-color: rgba(197, 169, 146, 0.4);
}

.service-svg-icon {
  width: 48px;
  height: 48px;
  stroke: var(--accent-color);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 25px;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.4s ease;
}

.service-card:hover .service-svg-icon {
  transform: scale(1.1);
  stroke: var(--accent-dark);
}

.service-card h4 {
  color: var(--dark-text-color);
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--body-text-color);
  line-height: 1.6;
  margin: 0;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.testimonials-grid .testimonial-item {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonials-grid .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
  margin-bottom: 25px;
}

.testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-color);
  display: block;
}

.testimonial-text {
  color: var(--body-text-color);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1rem;
}

.testimonials-grid .testimonial-item h5 {
  color: var(--dark-text-color);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.testimonial-title {
  color: var(--accent-color);
  font-size: 0.85rem;
  margin: 0;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .service-card {
    padding: 30px 20px;
  }

  .service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .service-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials-grid .testimonial-item {
    padding: 30px;
  }
}
.social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: #444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-icons i {
  font-size: 20px;
  color: #fff;
}

/* Brand colors */
.social-icons a.facebook { background: #3b5998; }
.social-icons a.instagram { background: #e4405f; }

.social-icons a:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* Luxury Lightbox Modal */
.luxury-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 12, 0.98);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.luxury-lightbox.active {
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 10002;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
  padding: 10px;
}

.lightbox-close:hover {
  transform: rotate(90deg) scale(1.1);
  color: var(--accent-color);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-nav:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}

.lightbox-content {
  max-width: 900px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.lightbox-image-container {
  width: 100%;
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-image-container img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 12px;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.lightbox-info {
  margin-top: 25px;
  text-align: center;
  width: 100%;
}

.lightbox-title {
  color: #fff;
  font-family: var(--heading-font);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 0.03em;
}

.lightbox-counter {
  color: var(--accent-color);
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 45px;
    height: 45px;
  }
  .lightbox-prev {
    left: 15px;
  }
  .lightbox-next {
    right: 15px;
  }
  .lightbox-close {
    top: 15px;
    right: 15px;
  }
  .lightbox-title {
    font-size: 1.35rem;
  }
}
