@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Instrument+Sans:wght@400;500;600;700&display=swap");

/* General */
body {
  font-family:Georgia, 'Times New Roman', Times, serif;
  margin: 0;
  padding: 0;
  color: #23272a;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

h1, h2, h3 {
  font-weight: 700;
  margin: 0 0 0.5em 0;
}

h2 {
  color: #23272a;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.2em;
  position: relative;
}
h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: #ff8800;
  margin: 12px auto 0 auto;
  border-radius: 2px;
}

/* Navbar */
.navbar {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1em;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #23272a;
  color: #fff;
  padding: 16px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(35, 39, 42, 0.08);
  border-bottom: 2px solid #ff8800;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-size: 1em;
  font-weight: 400;
  color: #fff;
  gap: 8px;
  vertical-align: middle;
  border-bottom: 1.5px solid #fff;
  padding-bottom: 2px;
}

.logo span {
  color: #ff8800;
}

.nav-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  font-size: 0.95em;
  font-weight: 300;
  color: #fff;
  padding: 6px 0;
  border-bottom: none;
  transition: color 0.2s;
}

.nav-links li a:hover,
.nav-links li a:focus {
  color: #ff8800;
}

.nav-links li a.active {
  border-bottom: none;
  color: #ff8800;
}

/* Sticky Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #23272a;
}

/* Hamburger Icon */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2em;
  cursor: pointer;
  margin-left: 18px;
  z-index: 2001;
  transition: color 0.2s;
}
.navbar-toggle:focus {
  outline: 2px solid #ff8800;
}

.navbar-toggle .icon-bar { display: inline; }
.navbar-toggle .icon-close { display: none; }

.navbar-toggle.open .icon-bar { display: none; }
.navbar-toggle.open .icon-close { display: inline; }

@media (max-width: 900px) {
  .navbar-toggle {
    display: block;
  }
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(35,39,42,0.98);
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s;
    z-index: 2000;
  }
  nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links {
    flex-direction: column;
    gap: 32px;
    font-size: 1.3em;
    align-items: center;
  }
  .social-icons {
    display: none !important;
  }
}

@media (max-width: 900px) {
  nav {
    z-index: 2000;
  }
  nav.open::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(35,39,42,0.92);
    z-index: -1;
    pointer-events: none;
  }
}

/* Responsive Navbar */
@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 20px;
  }
  .nav-links {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 10px;
  }
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 18px;
  font-size: 1em;
  align-items: center;
  margin-left: auto;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #f7f7fa 60%, #e3e3ee 100%);
  border-radius: 50%;
  border: 1.5px solid #e0e0e0;
  box-shadow: 0 4px 16px rgba(35,39,42,0.10), 0 1.5px 4px rgba(255,136,0,0.07);
  color: #23272a;
  font-size: 1.05em;
  transition: background 0.3s, color 0.3s, transform 0.3s, border 0.3s;
}

.social-icons a:hover {
  background: linear-gradient(135deg, #ff8800 60%, #ffb366 100%);
  color: #fff;
  border: 1.5px solid #ff8800;
  transform: scale(1.13);
}

.social-icons a i {
  font-size: 1em;
  color: #666;
  transition: color 0.3s;
}

.social-icons a:hover i {
  color: #fff;
}

/* Cover Overlay */
.cover-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35, 39, 42, 0.97);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), visibility 0.7s;
  opacity: 1;
  visibility: visible;
}
.cover-overlay.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cover-content {
  text-align: center;
}
.cover-content .logo {
  font-size: 2.5em;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.5em;
  letter-spacing: 2px;
}
.cover-content .logo span {
  color: #ff8800;
}
.cover-welcome {
  color: #ff8800;
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 1px;
}

.cover-image {
  display: block;
  margin: 0 auto 24px auto;
  max-width: 220px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(35,39,42,0.13);
}

@media (max-width: 700px) {
  .cover-image {
    max-width: 140px;
    margin-bottom: 16px;
  }
}

/* Static Gradient Background for Hero */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 20px 90px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: url('images/cover9.jpg') center center/cover no-repeat;
}

.hero-glow-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.glow-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.45;
  mix-blend-mode: lighten;
  animation-timing-function: ease-in-out;
}

.glow1 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, #3ecfff 0%, #1a4e89 80%);
  left: 8%; top: 18%;
  animation: glowMove1 12s infinite alternate;
}
.glow2 {
  width: 160px; height: 160px;
  background: radial-gradient(circle, #ff8800 0%, #ffb366 80%);
  right: 10%; top: 30%;
  animation: glowMove2 14s infinite alternate;
}
.glow3 {
  width: 120px; height: 120px;
  background: radial-gradient(circle, #fff 0%, #3ecfff 80%);
  left: 30%; bottom: 10%;
  animation: glowMove3 16s infinite alternate;
}
.glow4 {
  width: 90px; height: 90px;
  background: radial-gradient(circle, #ff8800 0%, #fff 80%);
  right: 22%; bottom: 18%;
  animation: glowMove4 18s infinite alternate;
}

@keyframes glowMove1 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-40px) scale(1.12); }
}
@keyframes glowMove2 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(30px) scale(1.08); }
}
@keyframes glowMove3 {
  0% { transform: translateX(0) scale(1); }
  100% { transform: translateX(40px) scale(1.15); }
}
@keyframes glowMove4 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-30px) scale(1.18); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Remove .cover-image styles */
.cover-image { display: none !important; }

@media (max-width: 700px) {
  .hero {
    min-height: 300px;
    padding: 70px 8px 50px 8px;
  }
}

.hero-content > * {
  opacity: 1;
  transform: none;
  transition: none;
}

.hero-content h1 {
  font-size: 2.8em;
  color: #ff8800;
  margin-bottom: 0.3em;
}

.hero-content p {
  font-size: 1.3em;
  margin-bottom: 1.5em;
  color: #fff;
}

.hero .btn {
  background: #ff8800;
  color: #fff;
  padding: 13px 32px;
  margin-top: 20px;
  display: inline-block;
  border: none;
  border-radius: 6px;
  font-size: 1.1em;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(35, 39, 42, 0.10);
  transition: transform 0.3s, box-shadow 0.3s, background 0.2s;
}

.hero .btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(35, 39, 42, 0.18);
  background: #ff9900;
}

/* Services Section */
.services-section {
  padding: 70px 20px 60px 20px;
  background: #fafbfc;
}

.services-section h2 {
  color: #23272a;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 20px 28px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(35, 39, 42, 0.08);
  border: 1px solid #ececec;
}

.service-card:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 32px rgba(255, 136, 0, 0.13);
  border-color: #ff8800;
}

.service-card img {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #fafbfc;
  box-shadow: 0 2px 8px rgba(35, 39, 42, 0.10);
}

.service-card h3 {
  color: #23272a;
  margin-bottom: 0.5em;
  font-size: 1.25em;
}

.service-card p {
  color: #444950;
  font-size: 1.05em;
}

.service-icon {
  color: #ff8800;
  font-size: 3em;
  margin-bottom: 18px;
  display: block;
  text-align: center;
}

/* About Section */
.about-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
}

.why-list {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.why-list li {
  margin-bottom: 18px;
  font-size: 1.13em;
  background: #fff;
  border-radius: 8px;
  padding: 18px 22px;
  box-shadow: 0 2px 8px rgba(35, 39, 42, 0.07);
  border-left: 5px solid #ff8800;
}

/* Contact Section */
.contact-section {
  background: #fff;
  padding: 70px 20px 60px 20px;
  text-align: center;
}

.contact-section h2 {
  color: #23272a;
}

.contact-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fafbfc;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(35, 39, 42, 0.07);
}

.contact-form input,
.contact-form textarea {
  padding: 13px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1em;
  background: #fff;
  transition: border 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #ff8800;
  outline: none;
}

.contact-form button {
  background: #ff8800;
  color: #fff;
  padding: 13px;
  border: none;
  border-radius: 6px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, background 0.2s;
}

.contact-form button:hover {
  transform: translateY(-2px) scale(1.04);
  background: #ff9900;
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
  background: #23272a;
  color: #fff;
  padding: 36px 10px 18px 10px;
  border-top: none;
  box-shadow: 0 -2px 16px rgba(35,39,42,0.10);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 180px;
  margin: 0 12px;
}

.footer-col h4 {
  color: #ff8800;
  font-size: 1.1em;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.footer-col.about {
  display: block;
  align-items: initial;
  gap: 0;
}

.footer-col.about p {
  margin: 0 0 8px 0;
  align-self: initial;
}

.footer-logo {
  max-width: 54px;
  height: 54px;
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(35,39,42,0.13);
  margin-bottom: 0;
  background: #fff;
  border: none;
  object-fit: contain;
}

.footer-col.about p {
  color: #e0e0e0;
  font-size: 1em;
  margin: 0 0 8px 0;
}

.footer-col.links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-col.links ul li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.2s;
}

.footer-col.links ul li a:hover {
  color: #ff8800;
}

.footer-col.contact p {
  color: #e0e0e0;
  font-size: 1em;
  margin: 0 0 6px 0;
}

.footer-col.contact a {
  color: #ff8800;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col.contact a:hover {
  color: #fff;
}

.footer-social {
  margin-top: 10px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #f7f7fa 60%, #e3e3ee 100%);
  border-radius: 50%;
  border: 1.5px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  color: #666;
  font-size: 1.15em;
  transition: background 0.3s, color 0.3s, border 0.3s, transform 0.3s;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #ff8800 60%, #ffb366 100%);
  color: #fff;
  border: 1.5px solid #ff8800;
  transform: scale(1.13);
}

.footer p {
  color: #e0e0e0;
  font-size: 0.98em;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.footer-copyright {
  position: absolute;
  left: 0; right: 0;
  bottom: 8px;
  text-align: center;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 32px;
  padding-top: 12px;
  background: none;
  border-top: none;
}

.footer-copyright p {
  color: #b0b0b0;
  font-size: 0.95em;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .footer {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 28px 4px 14px 4px;
    text-align: center;
  }
  .footer-col {
    margin: 0 0 18px 0;
    min-width: 0;
  }
  .footer-copyright {
    position: static;
    margin-top: 20px;
    padding-top: 10px;
  }
}

/* === Modern 2026 Refresh === */
:root {
  --font-body: "Instrument Sans", "Segoe UI", system-ui, sans-serif;
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --ink: #0b1620;
  --ink-2: #173042;
  --mist: #f2f6f9;
  --sand: #e9f0f3;
  --card: #ffffff;
  --muted: #4c5b66;
  --accent: #ff6b4a;
  --accent-2: #1aa3b8;
  --accent-3: #ffd166;
  --ring: rgba(255, 107, 74, 0.35);
  --shadow-soft: 0 12px 30px rgba(11, 22, 32, 0.12);
  --shadow-strong: 0 20px 50px rgba(11, 22, 32, 0.18);
  --radius-lg: 18px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff7ee 0%, #ffffff 35%, #f2f7fb 70%, #e8f0f6 100%);
}

h1, h2, h3, .logo {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

h2 {
  font-size: 2rem;
}

h2::after {
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

a {
  color: inherit;
}

/* Navbar */
.navbar {
  background: rgba(11, 26, 36, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 40px;
  box-shadow: 0 10px 24px rgba(11, 26, 36, 0.18);
}

.logo {
  font-size: 1.35em;
  font-weight: 600;
  border-bottom: none;
}

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

.nav-links li a {
  font-weight: 500;
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.25s ease;
}

.nav-links li a:hover,
.nav-links li a:focus {
  color: var(--accent-3);
}

.nav-links li a:hover::after,
.nav-links li a:focus::after,
.nav-links li a.active::after {
  width: 100%;
}

.main-logo {
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.social-icons a {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fef8ef;
}

.social-icons a:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
}

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  background: url("images/cover6.jpg") center/cover no-repeat;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 22, 32, 0.85) 0%, rgba(11, 22, 32, 0.55) 55%, rgba(26, 163, 184, 0.25) 100%);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 209, 102, 0.35), transparent 55%),
              radial-gradient(circle at 80% 30%, rgba(26, 163, 184, 0.28), transparent 50%),
              radial-gradient(circle at 60% 80%, rgba(255, 107, 74, 0.22), transparent 60%);
  z-index: 1;
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: #fffaf0;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  margin-bottom: 0.4em;
}

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

.hero-content p {
  font-size: 1.15em;
  color: rgba(255, 255, 255, 0.92);
}

.hero-content h1,
.hero-content p,
.hero-content .btn {
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.hero-content > * {
  animation: heroRise 0.9s ease forwards;
  opacity: 0;
  transform: translateY(16px);
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content > *:nth-child(4) { animation-delay: 0.55s; }

@keyframes heroRise {
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn, .contact-form button, .blog-readmore-btn {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  border-radius: var(--radius-pill);
  padding: 14px 36px;
  box-shadow: 0 16px 30px rgba(255, 122, 89, 0.22);
}

.btn:hover, .contact-form button:hover, .blog-readmore-btn:hover {
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  transform: translateY(-2px) scale(1.03);
}

.btn:focus, .contact-form button:focus, .blog-readmore-btn:focus {
  outline: 2px solid var(--accent-3);
  outline-offset: 3px;
}

/* Sections */
.services-section,
.testimonials-section,
.blog-section {
  background: var(--mist);
}

.about-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f1e7 100%);
}

.contact-section {
  background: #fffaf3;
}

.services, .testimonials, .blog-posts {
  gap: 28px;
}

/* Cards */
.service-card,
.testimonial-card,
.blog-card,
.contact-form,
.why-list li {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 26, 36, 0.08);
  box-shadow: var(--shadow-soft);
  background: var(--card);
}

.service-card:hover,
.testimonial-card:hover,
.blog-card:hover {
  box-shadow: var(--shadow-strong);
  border-color: rgba(255, 122, 89, 0.25);
}

.service-icon {
  color: var(--accent);
  filter: drop-shadow(0 8px 16px rgba(255, 122, 89, 0.25));
}

.why-list li {
  border-left: 6px solid var(--accent-2);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 236, 0.9));
}

.testimonial-card {
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--accent), var(--accent-2)) 1;
}

.testimonial-card blockquote {
  color: var(--ink-2);
}

.blog-meta {
  color: var(--accent-2);
}

.blog-readmore-btn {
  margin-top: auto;
}

.blog-img {
  height: 160px;
  filter: saturate(1.08) contrast(1.05);
}

/* Contact */
.contact-form {
  background: #ffffff;
  border: 1px solid rgba(11, 26, 36, 0.08);
}

.contact-form input,
.contact-form textarea {
  background: #fffdf8;
  border: 1px solid rgba(11, 26, 36, 0.12);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 122, 89, 0.15);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0b1a24 0%, #112f3f 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4,
.footer-col.contact a {
  color: var(--accent-3);
}

.footer-links li a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.footer-social a {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fef8ef;
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

/* Floating buttons */
.whatsapp-float {
  border: 2px solid rgba(255, 255, 255, 0.35);
}

#backToTop {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #0b1a24;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 14px 18px;
  }
  .hero {
    min-height: 420px;
  }
  .hero-content h1 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }
  .nav-links li a::after {
    display: none;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(16, 44, 33, 0.35), 0 2px 8px rgba(35,39,42,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.2s, box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  box-shadow: 0 12px 40px rgba(16, 44, 33, 0.45), 0 2px 8px rgba(35,39,42,0.22);
}

/* Responsive Layouts */
@media (max-width: 700px) {
  .services {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 24px 10px 20px 10px;
  }
  .contact-form {
    padding: 18px 8px;
  }
  .about-section, .services-section, .contact-section {
    padding: 40px 8px 30px 8px;
    text-align: center;
  }
  .why-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .why-list li {
    width: 95%;
    max-width: 380px;
    text-align: left;
  }
  .hero {
    padding: 70px 8px 50px 8px;
  }
}

.hero-content h1,
.hero-content p,
.hero-content .btn {
  text-shadow: 0 2px 8px rgba(0,0,0,0.85), 0 1px 2px rgba(0,0,0,0.5);
}

.main-logo {
  max-width: 72px;
  height: 72px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(0,0,0,0.28), 0 2px 8px rgba(0,0,0,0.18);
  background: #fff;
  margin-bottom: 0;
  margin-right: 4px;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.main-logo:hover {
  transform: scale(1.18);
}

.logo {
  display: inline-flex;
  align-items: center;
  font-size: 1.5em;
  font-weight: 400;
  color: #fff;
  gap: 2px;
  vertical-align: middle;
}

.navbar {
  display: flex;
  align-items: center;
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-icons {
  display: flex;
  gap: 8px;
  font-size: 1em;
  align-items: center;
  margin-left: auto;
}

.social-icons a {
  color: #fff;
  font-size: 1em;
  transition: transform 0.3s, color 0.2s;
}

.social-icons a:hover {
  transform: scale(1.15);
  color: #ff8800;
}

@media (max-width: 700px) {
  .main-logo {
    max-width: 48px;
    height: 48px;
    border-width: 1px;
    margin-right: 8px;
  }
}

@media (max-width: 900px) {
  .main-logo {
    display: none !important;
  }
}

/* Remove .cover-image and .brand-logo styles if present */
.cover-image, .brand-logo { display: none !important; }

.brand-group {
  display: flex;
  align-items: center;
}

.footer-logo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo {
  max-width: 70px;
  height: 70px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(35,39,42,0.13);
  margin-bottom: 18px;
  background: #fff;
  border: none;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li a {
  color: #e0e0e0;
  font-size: 1.08em;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 2px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border 0.2s;
}

.footer-links li a:hover {
  color: #ff8800;
  border-bottom: 1.5px solid #ff8800;
}

.footer-social {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .footer-logo {
    max-width: 54px;
    height: 54px;
    margin-bottom: 12px;
  }
  .footer-social {
    justify-content: center;
  }
}

.testimonials-section {
  background: #fafbfc;
  padding: 60px 20px;
}

.testimonials-section h2 {
  color: #23272a;
  text-align: center;
  margin-bottom: 36px;
  font-size: 2em;
}

.testimonials {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 18px rgba(35,39,42,0.18);
  border: 3px solid #fff;
  position: relative;
  z-index: 2;
  background: #fff;
  margin-bottom: 0;
}

.testimonial-avatar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin-bottom: 18px;
}

.testimonial-avatar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8800 0%, #3ecfff 100%);
  box-shadow: 0 0 18px 4px rgba(255,136,0,0.10), 0 2px 8px rgba(35,39,42,0.10);
  z-index: 1;
}

.testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(35,39,42,0.10);
  padding: 32px 24px 24px 24px;
  max-width: 340px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 18px;
  border-top: 4px solid #ff8800;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s, scale 0.3s;
}

.testimonial-card.in-view {
  opacity: 1;
  transform: none;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 12px 32px rgba(35,39,42,0.16), 0 2px 8px rgba(255,136,0,0.10);
  z-index: 2;
}

.testimonial-avatar {
  font-size: 3em;
  color: #ff8800;
  margin-bottom: 18px;
}

.testimonial-card blockquote {
  font-size: 1.08em;
  color: #23272a;
  font-style: italic;
  margin: 0 0 18px 0;
  line-height: 1.5;
}

.testimonial-name {
  color: #444950;
  font-size: 1em;
  font-weight: 600;
  margin-top: auto;
}

@media (max-width: 900px) {
  .testimonials {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .testimonial-card {
    max-width: 98%;
    padding: 24px 10px 18px 10px;
  }
}

.service-card, .testimonial-card, .about-section .why-list li {
  box-shadow: 0 8px 32px rgba(35,39,42,0.22), 0 2px 8px rgba(255,136,0,0.10);
}

.service-card:hover, .testimonial-card:hover {
  box-shadow: 0 16px 48px rgba(35,39,42,0.28), 0 4px 16px rgba(255,136,0,0.13);
}

.navbar {
  border-bottom: none;
  box-shadow: 0 4px 24px rgba(35,39,42,0.18), 0 1.5px 4px rgba(255,136,0,0.10);
}

.footer-col.links h4 {
  margin-bottom: 6px;
}

.footer-links {
  gap: 2px;
}

.footer, .footer * {
  font-size: 0.93em;
}
.footer h4 {
  font-size: 1.02em;
}

.blog-section {
  background: #fafbfc;
  padding: 60px 20px;
}

.blog-section h2 {
  color: #23272a;
  text-align: center;
  margin-bottom: 36px;
  font-size: 2em;
}

.blog-posts {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(35,39,42,0.22), 0 2px 8px rgba(255,136,0,0.10);
  padding: 32px 24px 24px 24px;
  max-width: 340px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 18px;
  border-top: 4px solid #ff8800;
  transition: box-shadow 0.3s, transform 0.3s;
}

.blog-card:hover {
  box-shadow: 0 16px 48px rgba(35,39,42,0.28), 0 4px 16px rgba(255,136,0,0.13);
  transform: translateY(-6px) scale(1.025);
}

.blog-title {
  color: #23272a;
  font-size: 1.18em;
  font-weight: 700;
  margin-bottom: 8px;
}

.blog-meta {
  color: #ff8800;
  font-size: 0.98em;
  margin-bottom: 12px;
  font-weight: 600;
}

.blog-excerpt {
  color: #444950;
  font-size: 1.03em;
  margin-bottom: 18px;
}

.blog-readmore {
  color: #ff8800;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid #ff8800;
  transition: color 0.2s, border 0.2s;
  font-size: 1em;
}

.blog-readmore:hover {
  color: #23272a;
  border-bottom: 1.5px solid #23272a;
}

.blog-readmore-btn {
  background: linear-gradient(90deg, #ff8800 60%, #ffb366 100%);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 1.08em;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(255,136,0,0.10);
}
.blog-readmore-btn:hover {
  background: linear-gradient(90deg, #ff8800 80%, #ffb366 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,136,0,0.18);
  transform: translateY(-2px) scale(1.04);
}

.blog-readmore-btn:focus {
  outline: 2px solid #ff8800;
  outline-offset: 2px;
}

.blog-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(35,39,42,0.10);
  background: #eee;
}

.blog-outline {
  margin-bottom: 10px;
  background: #fafbfc;
  border-radius: 8px;
  padding: 10px 12px 8px 18px;
  font-size: 0.97em;
  color: #444950;
  box-shadow: 0 1px 4px rgba(35,39,42,0.04);
}
.blog-outline strong {
  color: #ff8800;
  font-size: 1em;
  display: block;
  margin-bottom: 4px;
}
.blog-outline ul {
  margin: 0 0 6px 0;
  padding-left: 18px;
  list-style: disc inside;
}
.blog-outline li {
  margin-bottom: 2px;
  font-size: 0.97em;
}
.blog-explanation {
  margin: 0;
  font-size: 0.96em;
  color: #666;
}

@media (max-width: 900px) {
  .blog-posts {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .blog-card {
    max-width: 98%;
    padding: 24px 10px 18px 10px;
  }
}

/* Buttons */
.btn, .contact-form button, .blog-readmore-btn {
  background: linear-gradient(90deg, #ff8800 60%, #ffb366 100%);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 1.08em;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(255,136,0,0.10);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  outline: none;
  margin-top: 12px;
}

.btn:hover, .contact-form button:hover, .blog-readmore-btn:hover {
  background: linear-gradient(90deg, #ff8800 80%, #ffb366 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,136,0,0.18);
  transform: translateY(-2px) scale(1.04);
}

.btn:focus, .contact-form button:focus, .blog-readmore-btn:focus {
  outline: 2px solid #ff8800;
  outline-offset: 2px;
}

/* Accent backgrounds */
.services-section, .about-section, .testimonials-section, .blog-section, .contact-section {
  background: #fff;
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #23272a;
    box-shadow: 0 2px 12px rgba(35, 39, 42, 0.13);
    position: relative;
  }
  .brand-group {
    gap: 8px;
    flex: 1;
  }
  .main-logo {
    width: 40px;
    height: 40px;
    margin-right: 6px;
  }
  .logo {
    font-size: 1em;
    padding-bottom: 1px;
  }
  .navbar-toggle {
    font-size: 2.2em;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #23272a;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.5s;
    z-index: 2000;
  }
  nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 8px 32px rgba(35,39,42,0.18);
  }
  .nav-links {
    flex-direction: column;
    gap: 36px;
    font-size: 1.25em;
    align-items: center;
    margin-top: 32px;
  }
  .nav-links li a {
    padding: 12px 0;
    font-size: 1.1em;
    border-radius: 6px;
    width: 100vw;
    text-align: center;
    background: none;
    transition: background 0.2s, color 0.2s;
  }
  .nav-links li a:hover,
  .nav-links li a:focus,
  .nav-links li a.active {
    background: rgba(255,136,0,0.10);
    color: #ff8800;
  }
  .social-icons {
    display: none !important;
  }
  section {
    padding: 36px 0 28px 0;
    width: 100%;
    max-width: 100%;
  }
  .services-section, .about-section, .testimonials-section, .blog-section, .contact-section {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero {
    width: 100%;
    max-width: 100vw;
    padding-left: 0;
    padding-right: 0;
  }
  .navbar {
    width: 100%;
    max-width: 100vw;
    padding-left: 0;
    padding-right: 0;
  }
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-content h1 {
    font-size: 1.2em;
    margin-bottom: 0.5em;
    text-align: center;
    line-height: 1.3;
  }
  .hero-content p {
    font-size: 0.9em;
    margin-bottom: 0.7em;
    text-align: center;
  }
  .btn {
    width: auto;
    max-width: 280px;
    padding: 14px 32px;
    font-size: 1.1em;
    border-radius: 28px;
    margin-top: 18px;
    display: inline-block;
  }
  .services {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .service-card {
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(35,39,42,0.07);
    padding: 24px 18px;
    margin: 0 auto;
    width: 95%;
    max-width: 380px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .service-icon {
    font-size: 2.2em;
    margin-bottom: 10px;
    display: block;
  }
  .service-card h3 {
    font-size: 1.1em;
  }
  .service-card p {
    font-size: 0.95em;
  }
  .testimonials {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .testimonial-card {
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(35,39,42,0.07);
    padding: 24px 18px;
    margin: 0 auto;
    width: 95%;
    max-width: 380px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .testimonial-avatar {
    width: 64px;
    height: 64px;
    margin: 0 auto 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
  }
  .testimonial-card blockquote {
    font-size: 0.95em;
  }
  .testimonial-name {
    font-size: 0.9em;
  }
  .blog-posts {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .blog-card {
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(35,39,42,0.07);
    padding: 24px 18px;
    margin: 0 auto;
    width: 95%;
    max-width: 380px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .blog-img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    margin-bottom: 12px;
    object-fit: cover;
  }
  .blog-title {
    font-size: 1.05em;
  }
  .blog-meta {
    font-size: 0.9em;
  }
  .blog-excerpt {
    font-size: 0.95em;
  }
  .blog-readmore-btn {
    width: auto;
    max-width: 200px;
    padding: 14px 24px;
    font-size: 1.1em;
    border-radius: 28px;
    margin-top: 18px;
    display: inline-block;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    font-size: 1em;
    border-radius: 8px;
    margin-bottom: 14px;
    padding: 12px 10px;
  }
  .contact-form button {
    width: auto;
    max-width: 200px;
    padding: 14px 32px;
    font-size: 1.1em;
    border-radius: 28px;
    margin-top: 18px;
    display: inline-block;
  }
  .footer {
    flex-direction: column;
    gap: 24px;
    padding: 32px 10px 10px 10px;
    text-align: center;
    width: 100%;
    max-width: 100vw;
  }
  .footer-col {
    width: 100%;
    margin-bottom: 18px;
  }
  .footer-social {
    justify-content: center;
    gap: 18px;
  }
  .footer-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .footer-links li a {
    font-size: 1.1em;
    padding: 8px 0;
  }
}
