* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
}

:root {
  --bg-color: #ffffff;
  --text-color: #000000;
  --section-bg: #ffffff;
  --nav-link-color: #000000;
  --nav-link-hover: #007bff;
  --header-border: #eee;
  --hamburger-bg: #000;
  --service-bg: #ffffff;
  --service-text: #333333;
  --service-p: #666666;
  --testimonial-bg: #f8f9fa;
  --testimonial-p: #555555;
  --primary: #406d96;
  --primary-dark: #0056b3;
  --accent: #202d40;
  --dark-bg: #0b1c2d;
  --transition: 0.3s ease;
  --buttons: #e2474b;
}

body.dark {
  --bg-color: #000000;
  --text-color: #ffffff;
  --section-bg: #000000;
  --nav-link-color: #e6e6ff;
  --nav-link-hover: #87ceeb;
  --header-border: #333;
  --hamburger-bg: #fff;
  --service-bg: #333333;
  --service-text: #ffffff;
  --service-p: #cccccc;
  --testimonial-bg: #333333;
  --testimonial-p: #cccccc;
}

body.dark header {
  background: rgba(0, 0, 0, 0.8);
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-section {
  opacity: 1;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.animate-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  margin-bottom: 12px;
  font-size: 36px;
  color: var(--primary);
  animation: none;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 0 auto;
  border-radius: 2px;
}

.section-divider.light {
  background: #fff;
}

.section-subtitle {
  color: var(--service-p);
  font-size: 18px;
  margin-top: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-alt {
  background: #f8f9fa;
}

body.dark .section-alt {
  background: #111;
}

/* HEADER */
header.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-bottom: 1px solid var(--header-border);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: var(--transition);
}

.logo {
  display: flex;
  align-items: center;
  font-size: 26px;
  font-weight: bold;
  gap: 8px;
}

.logo img {
  height: 40px;
  width: auto;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--nav-link-color);
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--primary);
  background: rgba(0, 123, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: var(--buttons);
  color: #fff !important;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.header-contact-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 20px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s;
}

.theme-toggle:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* ===================== FULLSCREEN MOBILE NAV ===================== */
.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 200;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--hamburger-bg);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  margin-top: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  text-align: center;
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.mobile-nav.active .mobile-nav-content {
  transform: translateY(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}

.mobile-nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 28px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  transition: var(--transition);
  opacity: 0;
  transform: translateX(-30px);
}

.mobile-nav.active .mobile-nav-links a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav.active .mobile-nav-links a:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-nav.active .mobile-nav-links a:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-nav.active .mobile-nav-links a:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-nav.active .mobile-nav-links a:nth-child(4) {
  transition-delay: 0.25s;
}
.mobile-nav.active .mobile-nav-links a:nth-child(5) {
  transition-delay: 0.3s;
}
.mobile-nav.active .mobile-nav-links a:nth-child(6) {
  transition-delay: 0.35s;
}
.mobile-nav.active .mobile-nav-links a:nth-child(7) {
  transition-delay: 0.4s;
}
.mobile-nav.active .mobile-nav-links a:nth-child(8) {
  transition-delay: 0.45s;
}
.mobile-nav.active .mobile-nav-links a:nth-child(9) {
  transition-delay: 0.5s;
}

.mobile-nav-links a:hover {
  color: var(--primary);
  background: rgba(0, 123, 255, 0.08);
}

.mobile-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--buttons);
  color: #fff !important;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.mobile-nav.active .mobile-contact-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

.mobile-nav-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.5s ease 0.6s;
}

.mobile-nav.active .mobile-nav-socials {
  opacity: 1;
}

.mobile-nav-socials a {
  color: var(--nav-link-color);
  font-size: 24px;
  transition: var(--transition);
}

.mobile-nav-socials a:hover {
  color: var(--primary);
  transform: scale(1.2);
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ===================== HERO SLIDESHOW ===================== */
.hero {
  height: 85vh;
  min-height: 500px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background-color: #0b1c2d;
}

.hero-slideshow .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slideshow .hero-slide.active-slide {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(11, 28, 45, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
  padding: 0 20px;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #0b1c2d;
  transform: translateY(-2px);
}

.hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #fff;
  transform: scale(1.2);
}

.hero-scroll {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: #fff;
  font-size: 24px;
  animation: pulse 2s infinite;
  cursor: pointer;
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 80px 10%;
  background-color: var(--section-bg);
  color: var(--text-color);
}

.section h2 {
  margin-bottom: 20px;
  font-size: 32px;
  color: var(--primary);
}

.about-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
  color: var(--service-p);
  font-size: 17px;
}

/* ===================== MASONRY GRID ===================== */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
}

.masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

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

.masonry-item:hover img {
  transform: scale(1.08);
}

.masonry-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.masonry-item:hover .masonry-overlay {
  transform: translateY(0);
}

.masonry-overlay span {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.masonry-tall {
  grid-row: span 2;
}

.masonry-wide {
  grid-column: span 2;
}

/* ===================== DARK SECTIONS ===================== */
.dark {
  background: #0b1c2d;
  color: skyblue;
}

.contact-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* ===================== SERVICES ===================== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-item {
  background: var(--service-bg);
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 18px;
}

.service-icon i {
  transition: transform 0.3s ease;
}

.service-item:hover .service-icon i {
  transform: scale(1.15);
}

.service-item h3 {
  margin-bottom: 10px;
  color: var(--service-text);
}

.service-item p {
  margin-bottom: 20px;
  color: var(--service-p);
  font-size: 14px;
  line-height: 1.6;
}

.service-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.service-buttons a,
.service-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.service-buttons a {
  background: var(--primary);
  color: white;
}

.service-buttons a:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.service-buttons button {
  background: #e2474b;
  color: white;
}

.service-buttons button:hover {
  background: #2f3a56;
  transform: translateY(-2px);
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.testimonial {
  background: var(--testimonial-bg);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.4s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  color: #ffd700;
  font-size: 16px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 15px;
  color: var(--testimonial-p);
  line-height: 1.7;
}

.testimonial cite {
  font-weight: bold;
  color: var(--service-text);
  font-style: normal;
}

/* ===================== PRICING ===================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.pricing-card {
  background: rgb(219, 244, 253);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border: 3px solid #007bff;
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #007bff;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

.price {
  font-size: 36px;
  font-weight: bold;
  color: #e2474b;
  margin-bottom: 5px;
}

.price-note {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.pricing-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: #555;
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-card button {
  background: #e2474b;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

.pricing-card button:hover {
  background: #218838;
}

.pricing-note {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  margin-top: 40px;
}

.pricing-note h3 {
  margin-bottom: 20px;
  color: #333;
}

.pricing-note ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}

.pricing-note ul li {
  color: #555;
  padding: 5px 0;
}

.pricing-note p {
  margin-top: 20px;
  font-style: italic;
  color: #666;
}

/* ===================== ABOUT PAGE ===================== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 40px 0;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #555;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.philosophy-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.philosophy-item i {
  font-size: 48px;
  color: #007bff;
  margin-bottom: 20px;
}

.philosophy-item h3 {
  margin-bottom: 15px;
  color: #333;
}

.philosophy-item p {
  color: #666;
  line-height: 1.6;
}

.services-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.service-overview-item {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-overview-item h3 {
  margin-bottom: 15px;
  color: #333;
}

.service-overview-item p {
  margin-bottom: 20px;
  color: #666;
  line-height: 1.6;
}

.service-overview-item a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.service-overview-item a:hover {
  text-decoration: underline;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.why-choose-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #007bff;
}

.why-choose-item h4 {
  margin-bottom: 10px;
  color: #fff;
}

.why-choose-item p {
  color: #ccc;
  line-height: 1.6;
}

.image-caption {
  text-align: center;
  margin-top: 10px;
  font-style: italic;
  color: #666;
  font-size: 14px;
}

.style-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.style-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.style-item i {
  font-size: 48px;
  color: #e2474b;
  margin-bottom: 20px;
}

.style-item h3 {
  margin-bottom: 15px;
  color: #333;
}

.style-item p {
  color: #666;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.value-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #e2474b;
}

.value-item h4 {
  margin-bottom: 10px;
  color: #333;
  font-size: 18px;
}

.value-item p {
  color: #666;
  line-height: 1.6;
}

.why-choose-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.why-choose-text h3 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 20px;
}

.why-choose-text p {
  margin-bottom: 25px;
  color: #ccc;
  line-height: 1.6;
}

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.stat {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  color: #ccc;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================== BLOG ===================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.blog-post {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
}

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

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  margin-bottom: 15px;
  color: #333;
  font-size: 20px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  color: #007bff;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* ===================== CONTACT FORM ===================== */
.contact-form {
  max-width: 600px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  gap: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  flex: 1;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.2);
  color: rgb(255, 255, 255);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  padding: 14px 28px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
  font-weight: 600;
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.contact-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.contact-icons a {
  color: rgb(212, 240, 251);
  font-size: 22px;
}

/* ===================== GALLERY ===================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.gallery-page .section {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-page .section h2 {
  text-align: center;
  margin-bottom: 10px;
}

.gallery-page .section > p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
  color: var(--text-color);
}

/* FILTER BUTTONS */
.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-buttons button {
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-buttons button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* LIGHTBOX */
#lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: pointer;
}

#lightbox span {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 10;
}

#lightbox span:hover {
  color: #ccc;
}

#lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

/* ===================== BOOKING CALENDAR ===================== */
.booking-section {
  max-width: 1200px;
  margin: 0 auto;
}

.booking-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.calendar-card {
  background: var(--service-bg);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-header h3 {
  color: var(--service-text);
  font-size: 20px;
}

.cal-nav {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-nav:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 10px;
}

.calendar-weekdays span {
  font-size: 13px;
  font-weight: 600;
  color: var(--service-p);
  padding: 8px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
  color: var(--service-text);
  font-weight: 500;
}

.cal-day:hover:not(.disabled):not(.past) {
  background: rgba(0, 123, 255, 0.1);
  color: var(--primary);
}

.cal-day.selected {
  background: var(--primary) !important;
  color: #fff !important;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.cal-day.today {
  border: 2px solid var(--primary);
  font-weight: 700;
}

.cal-day.disabled,
.cal-day.past {
  opacity: 0.3;
  cursor: not-allowed;
}

.cal-day.empty {
  cursor: default;
}

.booking-form-card {
  background: var(--service-bg);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.booking-form-card h3 {
  color: var(--service-text);
  margin-bottom: 25px;
  font-size: 20px;
}

.booking-form-card h3 i {
  color: var(--primary);
  margin-right: 8px;
}

.booking-field {
  margin-bottom: 18px;
}

.booking-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--service-p);
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  background: var(--bg-color);
  color: var(--text-color);
  transition: border-color 0.3s ease;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.booking-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.booking-submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

/* Booking Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  animation: scaleIn 0.4s ease;
}

.modal-icon {
  font-size: 60px;
  color: #28a745;
  margin-bottom: 20px;
}

.modal-content h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

.booking-summary {
  text-align: left;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.booking-summary p {
  padding: 6px 0;
  color: #555;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}

.booking-summary p:last-child {
  border-bottom: none;
}

.booking-summary strong {
  color: #333;
}

.modal-note {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.modal-close-btn {
  padding: 12px 30px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  background: var(--primary-dark);
}

/* ===================== INVOICE GENERATOR ===================== */
.invoice-section {
  max-width: 1300px;
  margin: 0 auto;
}

.invoice-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.invoice-form-card,
.invoice-preview-card {
  background: var(--service-bg);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.invoice-form-card h3,
.invoice-preview-header h3 {
  color: var(--service-text);
  margin-bottom: 25px;
  font-size: 20px;
}

.invoice-form-card h3 i,
.invoice-preview-header h3 i {
  color: var(--primary);
  margin-right: 8px;
}

.invoice-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.print-invoice-btn {
  padding: 10px 20px;
  background: #28a745;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.print-invoice-btn:hover {
  background: #e83d3d;
  transform: translateY(-2px);
}

.invoice-field-group {
  margin-bottom: 25px;
}

.invoice-field-group h4 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #eee;
}

.invoice-field {
  margin-bottom: 12px;
}

.invoice-field label {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--service-p);
}

.invoice-field input,
.invoice-field select,
.invoice-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: var(--bg-color);
  color: var(--text-color);
  transition: border-color 0.3s ease;
}

.invoice-field input:focus,
.invoice-field select:focus,
.invoice-field textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.invoice-item-row {
  display: grid;
  grid-template-columns: 2fr 0.5fr 1fr 40px;
  gap: 8px;
  margin-bottom: 8px;
  align-items: center;
}

.invoice-item-row input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: var(--bg-color);
  color: var(--text-color);
}

.add-item-btn {
  width: 100%;
  padding: 10px;
  background: transparent;
  color: var(--primary);
  border: 2px dashed var(--primary);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.add-item-btn:hover {
  background: rgba(0, 123, 255, 0.05);
}

.remove-item-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: #ff4444;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.remove-item-btn:hover {
  background: #cc0000;
  transform: scale(1.1);
}

.invoice-generate-btn {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.invoice-generate-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.invoice-field textarea {
  resize: vertical;
}

.preview-placeholder {
  text-align: center;
  padding: 60px 20px;
  color: #aaa;
}

.preview-placeholder i {
  font-size: 60px;
  margin-bottom: 15px;
  display: block;
}

/* Generated invoice preview styles */
.invoice-doc {
  font-size: 14px;
  color: #333;
}

.invoice-doc-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 3px solid #007bff;
  margin-bottom: 20px;
}

.invoice-doc-brand h2 {
  color: #007bff;
  font-size: 24px;
  margin-bottom: 5px;
}

.invoice-doc-brand p {
  color: #666;
  font-size: 12px;
}

.invoice-doc-meta {
  text-align: right;
}

.invoice-doc-meta h4 {
  color: #007bff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.invoice-doc-meta p {
  font-size: 13px;
  color: #555;
}

.invoice-doc-parties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.invoice-doc-parties div h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 5px;
}

.invoice-doc-parties div p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.invoice-doc table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.invoice-doc table th {
  background: #007bff;
  color: #fff;
  padding: 12px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
}

.invoice-doc table th:last-child,
.invoice-doc table td:last-child {
  text-align: right;
}

.invoice-doc table th:nth-child(2),
.invoice-doc table td:nth-child(2) {
  text-align: center;
}

.invoice-doc table td {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.invoice-doc-total {
  text-align: right;
  padding: 15px 0;
  border-top: 2px solid #007bff;
}

.invoice-doc-total span {
  font-size: 13px;
  color: #666;
}

.invoice-doc-total strong {
  font-size: 24px;
  color: #007bff;
  margin-left: 10px;
}

/* ===================== CLIENT GALLERY ===================== */

/* Client Welcome Banner */
.client-welcome-banner {
  background: linear-gradient(135deg, #0b1c2d 0%, #1a3a5c 50%, #007bff 100%);
  color: #fff;
  padding: 50px 30px;
  text-align: center;
  border-radius: 16px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.client-welcome-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10%, 10%);
  }
}

.client-welcome-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.client-welcome-icon {
  font-size: 40px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.client-welcome-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
}

.client-session-meta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.client-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(5px);
}

.client-badge i {
  font-size: 12px;
  opacity: 0.8;
}

.client-welcome-message {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
}

.client-gate {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
}

.gate-card {
  max-width: 440px;
  width: 100%;
  background: var(--service-bg);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.gate-icon {
  font-size: 60px;
  color: var(--primary);
  margin-bottom: 20px;
}

.gate-card h2 {
  color: var(--service-text);
  margin-bottom: 10px;
}

.gate-card > p {
  color: var(--service-p);
  margin-bottom: 30px;
  line-height: 1.6;
}

.gate-input-group {
  position: relative;
  margin-bottom: 10px;
}

.gate-input-group input {
  width: 100%;
  padding: 14px 50px 14px 16px;
  border: 2px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  background: var(--bg-color);
  color: var(--text-color);
  transition: border-color 0.3s;
}

.gate-input-group input:focus {
  outline: none;
  border-color: var(--primary);
}

.gate-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--service-p);
  cursor: pointer;
  font-size: 16px;
}

.gate-error {
  color: #ff4444;
  font-size: 14px;
  margin-bottom: 15px;
  text-align: left;
}

.gate-error i {
  margin-right: 5px;
}

.gate-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gate-submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.gate-hint {
  margin-top: 20px;
  font-size: 14px;
  color: var(--service-p);
}

.gate-hint a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.client-gallery-section {
  max-width: 1200px;
  margin: 0 auto;
}

.client-gallery-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.cg-action-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0f0f0;
  color: #333;
}

.cg-action-btn:hover {
  background: #e0e0e0;
  transform: translateY(-1px);
}

.cg-download-btn {
  background: var(--primary);
  color: #fff;
}

.cg-download-btn:hover:not(:disabled) {
  background: var(--primary-dark);
}

.cg-download-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cg-logout-btn {
  background: transparent;
  border: 2px solid #ff4444;
  color: #ff4444;
  margin-left: auto;
}

.cg-logout-btn:hover {
  background: #ff4444;
  color: #fff;
}

.client-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.client-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.client-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.client-gallery-item.selected {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

.client-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cg-select-check {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: all 0.3s ease;
}

.client-gallery-item.selected .cg-select-check {
  opacity: 1;
  background: var(--primary);
}

.cg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.client-gallery-item:hover .cg-overlay {
  opacity: 1;
}

.cg-download-single {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cg-download-single:hover {
  transform: scale(1.2);
}
/* ===================== DESIGN PAGE ===================== */
.design-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("images/patrickexclusive.png");
  color: #fff;
  padding: 60px 20px;
  background-size: cover;
  background-position: center;
}

.design-hero-content h1 {
  font-size: 52px;
  margin-bottom: 15px;
}

.design-hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  padding: 30px;
  background: var(--service-bg);
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.process-number {
  font-size: 48px;
  font-weight: 800;
  color: rgba(0, 123, 255, 0.15);
  margin-bottom: 15px;
}

.process-step h3 {
  color: var(--service-text);
  margin-bottom: 10px;
}

.process-step p {
  color: var(--service-p);
  line-height: 1.6;
  font-size: 14px;
}

/* ===================== FOOTER ===================== */
footer {
  background-color: #000000;
  color: #ffffff;
  padding: 40px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  padding: 40px;
}

.footer-section h3 {
  color: var(--accent);
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #007bff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #555;
  color: #ccc;
}

/* NEWSLETTER */
.footerform {
  display: flex;
  align-items: center;
  background: white;
  padding: 6px;
  border-radius: 16px;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.2s ease;
}

.footerform:focus-within {
  outline: 2px solid rgb(0, 0, 0);
}

.footerform input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 16px;
}
.footerform input::placeholder {
  color: #7d8b99;
}

.footerform button {
  border: none;
  background-color: var(--buttons);
  color: white;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.footerform button:hover {
  transform: scale(1.05);
  background-color: rgb(0, 100, 35);
}
.footerform button i {
  font-size: 18px;
}
/* FOOTER ICONS */
.footer-icons {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.footer-icons a {
  display: flex;
  color: var(--dark-bg);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #ffff;
  font-size: 20px;
  text-decoration: none;
  padding: 10px;
  text-align: center;
  transition:
    color 0.3s,
    transform 0.3s;
}

.footer-icons a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* Floating contact buttons */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.floating-btn.whatsapp {
  background: linear-gradient(135deg, #15b092 0%, #15b092 100%);
}

.floating-btn.telegram {
  background: linear-gradient(135deg, #0088cc 0%, #006db3 100%);
}

/* AUTH FORMS */
.auth-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
}

.auth-container {
  max-width: 400px;
  width: 100%;
  background: var(--section-bg);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.auth-container h2 {
  margin-bottom: 30px;
  color: var(--text-color);
  font-size: 28px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-form .form-group {
  display: block;
  gap: 0;
}

.auth-form .form-group input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  background: var(--bg-color);
  color: var(--text-color);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .masonry-wide {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  header.site-header {
    padding: 12px 20px;
  }

  .logo {
    font-size: 20px;
  }

  .logo img {
    height: 30px;
  }

  .header-contact-btn {
    display: none;
    padding: 8px 18px;
    font-size: 13px;
  }

  .header-contact-btn span,
  .header-contact-btn i {
    display: inline;
  }

  .hero {
    height: 70vh;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section {
    padding: 50px 5%;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .masonry-tall {
    grid-row: span 1;
  }

  .booking-container,
  .invoice-container {
    grid-template-columns: 1fr;
  }

  .invoice-item-row {
    grid-template-columns: 1fr 60px 80px 36px;
  }

  .invoice-doc-parties {
    grid-template-columns: 1fr;
  }

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

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

  .form-group {
    flex-direction: column;
    gap: 10px;
  }

  .contact-form {
    margin: 20px auto;
    padding: 0 5%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-section {
    text-align: center;
  }
  .footer-icons {
    display: flex;
    justify-content: center;
  }

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

  .pricing-card.featured {
    transform: none;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .values-grid,
  .philosophy-grid,
  .services-overview,
  .why-choose-grid,
  .why-choose-content {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-meta {
    flex-direction: column;
    gap: 10px;
  }

  .design-hero-content h1 {
    font-size: 36px;
  }

  .design-hero-content p {
    font-size: 16px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .hero-indicators {
    bottom: 25px;
  }

  .hero-scroll {
    bottom: 55px;
  }

  .client-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-gallery-actions {
    flex-direction: column;
  }

  .cg-logout-btn {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .floating-contact {
    right: 12px;
    bottom: 90px;
  }

  .floating-btn {
    width: 52px;
    height: 52px;
  }

  .client-gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .mobile-nav-links a {
    font-size: 22px;
  }
}

@media (min-width: 769px) {
  .hamburger {
    display: none !important;
  }
}

/* Print styles for invoice */
@media print {
  body * {
    visibility: hidden;
  }

  .invoice-preview-card,
  .invoice-preview-card * {
    visibility: visible;
  }

  .invoice-preview-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: none;
  }

  .invoice-preview-header .print-invoice-btn {
    display: none !important;
  }
}
