/* CSS Variables Setup */
:root {
  --gradient-start: #ff00cc;
  --gradient-end: #333399;
  --gradient: linear-gradient(to right, var(--gradient-start), var(--gradient-end));

  --charcoal: #2d3748; /* Almost Black */
  --warm-gray: #718096; /* Medium Gray */
  --cream: #fdf2e7; /* Warm White */
  --white: #ffffff; /* Pure White */
  --success: #38a169; /* Green */
}

/* Global Typography */
body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  line-height: 1.6;
  background-color: var(--cream);
}

.bg-light {
    background-color: #f8f9fa !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--charcoal);
}

h1 {
  font-size: 56px;
  font-weight: 700; /* Bold */
  color: var(--charcoal);
}

h2 {
  font-size: 40px;
  font-weight: 600; /* Semibold */
  color: var(--gradient-start);
}

h3 {
  font-size: 28px;
  font-weight: 500; /* Medium */
  color: var(--charcoal);
}

p {
  font-size: 18px;
  font-weight: 400; /* Regular */
  color: #4a5568;
  line-height: 1.6;
}

small {
  font-size: 16px;
  color: var(--warm-gray);
}

/* Links */
a {
  color: var(--gradient-start);
  text-decoration: none;
}

a:hover {
  color: var(--gradient-end);
  text-decoration: underline;
}

/* Section Padding */
.section-padding {
  padding: 80px 0;
}

/* Header */
.navbar {
  background-color: var(--white) !important;
  border-bottom: 3px solid var(--gradient-start);
  height: 80px;
  box-shadow: none; /* Remove default shadow */
}

.navbar-brand img {
  height: 50px; /* Adjust logo size for new header height */
  width: auto;
}

.navbar-nav .nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500; /* Medium */
  font-size: 16px;
  color: var(--charcoal) !important;
  margin-right: 25px;
  position: relative;
  padding-bottom: 5px; /* Space for underline */
}

.navbar-nav .nav-link:hover {
  color: var(--gradient-start) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.dropdown-menu {
  background-color: var(--white);
  border: none;
  border-left: 3px solid var(--gradient-start);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  animation: fadeIn 0.2s ease-in-out;
}

.dropdown-item {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--charcoal);
}

.dropdown-item:hover {
  background-color: var(--cream);
  color: var(--gradient-start);
}

/* Header CTA Button */
.navbar .btn-primary {
  background: var(--gradient);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; /* Semibold */
  font-size: 16px;
  border: none;
  transition: all 0.3s ease, transform 0.3s ease;
  background-size: 200% auto;
}

.navbar .btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
}

/* Phone Number in Header */
.header-phone {
  color: var(--gradient-start);
  font-weight: 700; /* Bold */
  font-size: 18px;
  margin-right: 20px;
}

/* Hero Section */
.hero {
  color: var(--white);
  padding: 150px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 56px;
  color: var(--white);
  font-weight: 700;
}

.hero p.lead {
  font-size: 20px;
  color: var(--white);
}

.hero .btn-primary {
  background-color: var(--white);
  color: var(--gradient-start);
  padding: 16px 32px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  border: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: var(--cream);
  transform: translateY(-2px);
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--gradient-start);
  margin-bottom: 15px;
}

.section-title p {
  font-size: 18px;
  color: #4a5568;
}

/* Service Cards */
.service-card {
  background: var(--white);
  border: 2px solid var(--gradient-start);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 25px rgba(255, 0, 204, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(255, 0, 204, 0.25);
}

.service-card .icon {
  font-size: 48px;
  color: var(--gradient-start);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 28px;
}

.service-card p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #4a5568;
}

/* About Section */
#about img {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,.08);
}

#about h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--gradient-start);
}

#about p {
  font-size: 18px;
  color: #4a5568;
}

/* Portfolio Section */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,.08);
}

.portfolio-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 204, 0.8);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h5 {
  font-size: 24px;
  margin-bottom: 5px;
  color: var(--white);
}

.portfolio-overlay p {
  font-size: 16px;
  color: var(--cream);
}

/* Testimonials Section */
.testimonial-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,.08);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #4a5568;
}

.author {
  font-weight: 600;
  color: var(--charcoal);
}

/* Contact CTA Section */
.contact-cta {
  background: var(--gradient);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.contact-cta h2 {
  font-size: 40px;
  color: var(--white);
}

.contact-cta p.lead {
  font-size: 20px;
  color: var(--white);
}

.contact-cta .btn-lg {
  background-color: var(--white);
  color: var(--gradient-start);
  padding: 16px 32px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  border: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-cta .btn-lg:hover {
  background-color: var(--cream);
  transform: translateY(-2px);
}

/* Footer */
footer {
  background-color: var(--charcoal) !important;
  color: var(--warm-gray);
  padding-top: 50px;
  padding-bottom: 30px;
}

footer h5 {
  color: var(--gradient-start);
  font-weight: 600;
  margin-bottom: 25px;
}

footer p {
  color: var(--warm-gray);
  font-size: 16px;
}

footer a {
  color: var(--gradient-start);
}

footer a:hover {
  color: var(--white);
}

footer .list-inline-item a {
  font-size: 24px;
  margin: 0 10px;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--charcoal);
  color: var(--white);
  padding: 15px 20px;
  text-align: center;
  font-size: 14px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-consent-banner p {
  margin: 0 15px 0 0;
  color: var(--white);
}

.cookie-consent-banner a {
  color: var(--gradient-start);
  text-decoration: underline;
}

.cookie-consent-banner button {
  background: var(--gradient);
  color: var(--white);
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-size: 200% auto;
}

.cookie-consent-banner button:hover {
  background-position: right center;
}

/* Fade-in Section (for animations if desired) */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p.lead {
    font-size: 18px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .service-card {
    margin-bottom: 30px;
  }

  #about img {
    margin-top: 30px;
  }

  .contact-cta h2 {
    font-size: 36px;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
  }

  .hero {
    padding: 100px 0;
  }

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

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

  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

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

  .contact-cta h2 {
    font-size: 28px;
  }

  .contact-cta p.lead {
    font-size: 16px;
  }

  .contact-cta .btn-lg {
    padding: 12px 30px;
    font-size: 16px;
  }

  footer .text-md-left, footer .text-md-right {
    text-align: center !important;
  }

  footer .list-unstyled {
    margin-top: 20px;
  }

  /* Mobile Menu Overlay */
  .navbar-collapse.show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 55, 72, 0.95); /* Charcoal with transparency */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1040;
    animation: fadeIn 0.3s ease-in-out;
  }

  .navbar-collapse.show .navbar-nav {
    flex-direction: column;
    text-align: center;
  }

  .navbar-collapse.show .nav-item {
    margin: 15px 0;
  }

  .navbar-collapse.show .nav-link {
    font-size: 32px;
    color: var(--white) !important;
  }

  .navbar-toggler {
    border: none;
    outline: none;
    transition: transform 0.3s ease-in-out;
  }

  .navbar-toggler.collapsed .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2845, 55, 72, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); /* Placeholder for X icon */
    transform: rotate(90deg);
  }

  /* Hamburger to X animation */
  .navbar-toggler-icon {
    display: block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 2l12 12M2 14L14 2'/%3e%3c/svg%3e");
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
}

/* Custom Button Styles (from guide) */
/* Primary Button */
.btn-primary, .btn-orange {
  background: var(--gradient);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 12px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600; /* Semibold */
  font-size: 16px;
  transition: all 0.3s ease;
  background-size: 200% auto;
}

.btn-primary:hover, .btn-orange:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 204, 0.3);
}

/* Secondary Button (Outline) */
.btn-outline-primary, .btn-secondary-orange {
  border: 2px solid var(--gradient-start);
  background: transparent;
  color: var(--gradient-start);
  padding: 16px 32px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; /* Semibold */
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover, .btn-secondary-orange:hover {
  background: var(--gradient);
  color: var(--white);
}

/* Card Styles (from guide) */
.card, .card-orange {
  background: var(--white);
  border: 2px solid var(--gradient-start);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 25px rgba(255, 0, 204, 0.15);
  transition: all 0.3s ease;
}

.card:hover, .card-orange:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(255, 0, 204, 0.25);
}

/* Form Elements Redesign (from guide) */
.form-control {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

.form-control:focus {
  border-color: var(--gradient-start);
  box-shadow: 0 0 0 3px rgba(255, 0, 204, 0.1);
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500; /* Medium */
  font-size: 14px;
  color: var(--gradient-start);
  margin-bottom: 8px;
}

.form-control::placeholder {
  color: var(--warm-gray);
}

.form-control.is-invalid {
  border-color: var(--orange-error);
}

.invalid-feedback {
  color: var(--orange-error);
}

/* Specific overrides for existing elements */
.animated-gradient-hero {
    background: var(--gradient);
    color: var(--white);
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-section .section-title h2 {
    color: var(--gradient-start);
}

.service-card .icon {
    color: var(--gradient-start);
}

.contact-cta {
    background: var(--gradient);
}

.contact-cta .btn-lg {
    background-color: var(--white);
    color: var(--gradient-start);
}

.contact-cta .btn-lg:hover {
    background-color: var(--cream);
    color: var(--gradient-end);
}

.testimonials-header {
    background: var(--gradient-start);
}

.testimonial-page-card .testimonial-text {
    border-left: 4px solid var(--gradient-start);
}

.faq-header {
    background: var(--gradient-start);
}

.accordion-button:not(.collapsed) {
    color: var(--white);
    background: var(--gradient);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 204, 0.25);
}

.legal-header {
    background: var(--gradient);
}

.legal-header .icon {
    color: var(--white);
}

.pricing-card .card-header {
    background: var(--gradient);
}

.pricing-card.popular .card-header {
    background: var(--gradient);
}

.pricing-card ul li i {
    color: var(--success);
}

.thankyou-box h1 {
    color: var(--success);
}

.thankyou-box .btn-primary {
    background: var(--gradient);
    border-color: var(--gradient-start);
}

.thankyou-box .btn-primary:hover {
    background-position: right center;
    border-color: var(--gradient-end);
}

.support-card .icon {
    color: var(--gradient-start);
}

.issue-list li i {
    color: var(--orange-error);
}

.process-step .icon {
    color: var(--gradient-start);
}

.feature-list li i {
    color: var(--success);
}

.animated-gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mobile UI Transformation */
@media (max-width: 767.98px) {
  .navbar {
    height: 60px;
  }

  .navbar-brand img {
    height: 40px;
  }

  .navbar-toggler.collapsed .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2845, 55, 72, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 2l12 12M2 14L14 2'/%3e%3c/svg%3e");
  }

  .navbar-collapse.show {
    background: var(--gradient);
  }

  .navbar-collapse.show .nav-link {
    color: var(--white) !important;
  }

  .navbar-collapse.show .nav-link::after {
    background-color: var(--white);
  }

  .header-phone {
    display: none; /* Hide full number on mobile */
  }

  .navbar .btn-primary {
    display: none; /* Hide CTA button on mobile header */
  }

  .navbar .btn-outline-secondary {
    display: block; /* Show search icon on mobile */
  }

  /* Mobile Content Adjustments */
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 20px;
  }
  p {
    font-size: 16px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .service-card, .card-orange {
    padding: 16px;
  }

  .btn-primary, .btn-orange, .btn-outline-primary, .btn-secondary-orange {
    width: 100%;
    display: block;
    text-align: center;
  }

  .form-control {
    padding: 12px 16px;
  }
}


/* Global Typography */
body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  line-height: 1.6;
  background-color: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--charcoal);
}

h1 {
  font-size: 56px;
  font-weight: 700; /* Bold */
  color: var(--charcoal);
}

h2 {
  font-size: 40px;
  font-weight: 600; /* Semibold */
  color: var(--orange-primary);
}

h3 {
  font-size: 28px;
  font-weight: 500; /* Medium */
  color: var(--charcoal);
}

p {
  font-size: 18px;
  font-weight: 400; /* Regular */
  color: #4a5568;
  line-height: 1.6;
}

small {
  font-size: 16px;
  color: var(--warm-gray);
}

/* Links */
a {
  color: var(--orange-primary);
  text-decoration: none;
}

a:hover {
  color: var(--orange-dark);
  text-decoration: underline;
}

/* Section Padding */
.section-padding {
  padding: 80px 0;
}

/* Header */
.navbar {
  background-color: var(--white) !important;
  border-bottom: 3px solid var(--orange-primary);
  height: 80px;
  box-shadow: none; /* Remove default shadow */
}

.navbar-brand img {
  height: 50px; /* Adjust logo size for new header height */
  width: auto;
}

.navbar-nav .nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500; /* Medium */
  font-size: 16px;
  color: var(--charcoal) !important;
  margin-right: 25px;
  position: relative;
  padding-bottom: 5px; /* Space for underline */
}

/* .navbar-nav .nav-link:hover {
  color: var(--orange-primary) !important;
} */

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--orange-primary);
  transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.dropdown-menu {
  background-color: var(--white);
  border: none;
  border-left: 3px solid var(--orange-primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  animation: fadeIn 0.2s ease-in-out;
}

.dropdown-item {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--charcoal);
}

.dropdown-item:hover {
  background-color: var(--cream);
  color: var(--orange-primary);
}

/* Header CTA Button */
.navbar .btn-primary {
  background-color: var(--orange-primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; /* Semibold */
  font-size: 16px;
  border: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.navbar .btn-primary:hover {
  background-color: var(--orange-dark);
  transform: translateY(-2px);
}

/* Phone Number in Header */
.header-phone {
  /* color: var(--orange-primary); */
  font-weight: 700; /* Bold */
  font-size: 18px;
  margin-right: 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, var(--orange-primary), var(--orange-secondary));
  color: var(--white);
  padding: 150px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 56px;
  color: var(--white);
  font-weight: 700;
}

.hero p.lead {
  font-size: 20px;
  color: var(--white);
}

.hero .btn-primary {
  background-color: var(--white);
  color: var(--orange-primary);
  padding: 16px 32px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  border: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: var(--cream);
  transform: translateY(-2px);
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--orange-primary);
  margin-bottom: 15px;
}

.section-title p {
  font-size: 18px;
  color: #4a5568;
}

/* Service Cards */
.service-card {
  background: var(--white);
  border: 2px solid var(--orange-primary);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.25);
}

.service-card .icon {
  font-size: 48px;
  color: var(--orange-primary);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 28px;
}

.service-card p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #4a5568;
}

/* About Section */
#about img {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,.08);
}

#about h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--orange-primary);
}

#about p {
  font-size: 18px;
  color: #4a5568;
}

/* Portfolio Section */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,.08);
}

.portfolio-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--orange-primary), 0.8);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h5 {
  font-size: 24px;
  margin-bottom: 5px;
  color: var(--white);
}

.portfolio-overlay p {
  font-size: 16px;
  color: var(--cream);
}

/* Testimonials Section */
.testimonial-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,.08);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #4a5568;
}

.author {
  font-weight: 600;
  color: var(--charcoal);
}

/* Contact CTA Section */
.contact-cta {
  background: linear-gradient(to right, var(--orange-primary), var(--orange-secondary));
  /* color: var(--white); */
  padding: 80px 0;
  text-align: center;
}

.contact-cta h2 {
  font-size: 40px;
  /* color: var(--white); */
}

.contact-cta p.lead {
  font-size: 20px;
  /* color: var(--white); */
}

.contact-cta .btn-lg {
  background-color: var(--white);
  color: var(--orange-primary);
  padding: 16px 32px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  border: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-cta .btn-lg:hover {
  background-color: var(--cream);
  transform: translateY(-2px);
}

/* Footer */
footer {
  background-color: var(--charcoal) !important;
  color: var(--warm-gray);
  padding-top: 50px;
  padding-bottom: 30px;
}

footer h5 {
  color: var(--orange-primary);
  font-weight: 600;
  margin-bottom: 25px;
}

footer p {
  color: var(--warm-gray);
  font-size: 16px;
}

footer a {
  color: var(--orange-primary);
}

footer a:hover {
  color: var(--white);
}

footer .list-inline-item a {
  font-size: 24px;
  margin: 0 10px;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--charcoal);
  color: var(--white);
  padding: 15px 20px;
  text-align: center;
  font-size: 14px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-consent-banner p {
  margin: 0 15px 0 0;
  color: var(--white);
}

.cookie-consent-banner a {
  color: var(--orange-primary);
  text-decoration: underline;
}

.cookie-consent-banner button {
  background-color: var(--orange-primary);
  color: var(--white);
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-consent-banner button:hover {
  background-color: var(--orange-dark);
}

/* Fade-in Section (for animations if desired) */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p.lead {
    font-size: 18px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .service-card {
    margin-bottom: 30px;
  }

  #about img {
    margin-top: 30px;
  }

  .contact-cta h2 {
    font-size: 36px;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
  }

  .hero {
    padding: 100px 0;
  }

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

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

  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

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

  .contact-cta h2 {
    font-size: 28px;
  }

  .contact-cta p.lead {
    font-size: 16px;
  }

  .contact-cta .btn-lg {
    padding: 12px 30px;
    font-size: 16px;
  }

  footer .text-md-left, footer .text-md-right {
    text-align: center !important;
  }

  footer .list-unstyled {
    margin-top: 20px;
  }

  /* Mobile Menu Overlay */
  .navbar-collapse.show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 55, 72, 0.95); /* Charcoal with transparency */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1040;
    animation: fadeIn 0.3s ease-in-out;
  }

  .navbar-collapse.show .navbar-nav {
    flex-direction: column;
    text-align: center;
  }

  .navbar-collapse.show .nav-item {
    margin: 15px 0;
  }

  .navbar-collapse.show .nav-link {
    font-size: 32px;
    color: var(--white) !important;
  }

  .navbar-toggler {
    border: none;
    outline: none;
    transition: transform 0.3s ease-in-out;
  }

  .navbar-toggler.collapsed .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2845, 55, 72, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); /* Placeholder for X icon */
    transform: rotate(90deg);
  }

  /* Hamburger to X animation */
  .navbar-toggler-icon {
    display: block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 2l12 12M2 14L14 2'/%3e%3c/svg%3e");
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
}

/* Custom Button Styles (from guide) */

/* Primary Button (Dark) */
.btn-primary, .btn-orange {
  background: var(--charcoal);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 12px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600; /* Semibold */
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-primary:hover, .btn-orange:hover {
  background: var(--warm-gray);
  transform: translateY(-2px);
  box-shadow: none;
}

/* Secondary Button (Outline) */
.btn-outline-primary, .btn-secondary-orange {
  border: 2px solid var(--orange-primary);
  background: transparent;
  color: var(--orange-primary);
  padding: 16px 32px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; /* Semibold */
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover, .btn-secondary-orange:hover {
  background: var(--orange-primary);
  color: var(--white);
}

/* Card Styles (from guide) */
.card, .card-orange {
  background: var(--white);
  border: 2px solid var(--orange-primary);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
  transition: all 0.3s ease;
}

.card:hover, .card-orange:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.25);
}

/* Form Elements Redesign (from guide) */
.form-control {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

.form-control:focus {
  border-color: var(--orange-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500; /* Medium */
  font-size: 14px;
  color: var(--orange-primary);
  margin-bottom: 8px;
}

.form-control::placeholder {
  color: var(--warm-gray);
}

.form-control.is-invalid {
  border-color: var(--orange-error);
}

.invalid-feedback {
  color: var(--orange-error);
}

/* Specific overrides for existing elements */
.animated-gradient-hero {
    background: linear-gradient(to right, var(--orange-primary), var(--orange-secondary));
    color: var(--white);
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-section .section-title h2 {
    color: var(--orange-primary);
}

.service-card .icon {
    color: var(--orange-primary);
}

.contact-cta {
    background: linear-gradient(to right, var(--orange-primary), var(--orange-secondary));
}

.contact-cta .btn-lg {
    background-color: var(--white);
    color: var(--orange-primary);
}

.contact-cta .btn-lg:hover {
    background-color: var(--cream);
    color: var(--orange-dark);
}

.testimonials-header {
    background: var(--orange-primary);
}

.testimonial-page-card .testimonial-text {
    border-left: 4px solid var(--orange-primary);
}

.faq-header {
    background: var(--orange-primary);
}

.accordion-button:not(.collapsed) {
    color: var(--white);
    background-color: var(--orange-primary);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

.legal-header {
    background: linear-gradient(90deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
}

.legal-header .icon {
    color: var(--white);
}

.pricing-card .card-header {
    background-color: var(--orange-primary);
}

.pricing-card.popular .card-header {
    background-color: var(--orange-dark);
}

.pricing-card ul li i {
    color: var(--success);
}

.thankyou-box h1 {
    color: var(--success);
}

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

.thankyou-box .btn-primary:hover {
    background-color: var(--orange-dark);
    border-color: var(--orange-dark);
}

.support-card .icon {
    color: var(--orange-primary);
}

.issue-list li i {
    color: var(--orange-error);
}

.process-step .icon {
    color: var(--orange-primary);
}

.feature-list li i {
    color: var(--success);
}

.animated-gradient-text {
    background: linear-gradient(to right, var(--orange-primary), var(--orange-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mobile UI Transformation */
@media (max-width: 767.98px) {
  .navbar {
    height: 60px;
  }

  .navbar-brand img {
    height: 40px;
  }

  .navbar-toggler.collapsed .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2845, 55, 72, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 2l12 12M2 14L14 2'/%3e%3c/svg%3e");
  }

  .navbar-collapse.show {
    background: linear-gradient(to bottom right, var(--orange-primary), var(--orange-secondary));
  }

  .navbar-collapse.show .nav-link {
    color: var(--white) !important;
  }

  .navbar-collapse.show .nav-link::after {
    background-color: var(--white);
  }

  .header-phone {
    display: none; /* Hide full number on mobile */
  }

  .navbar .btn-primary {
    display: none; /* Hide CTA button on mobile header */
  }

  .navbar .btn-outline-secondary {
    display: block; /* Show search icon on mobile */
  }

  /* Mobile Content Adjustments */
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 20px;
  }
  p {
    font-size: 16px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .service-card, .card-orange {
    padding: 16px;
  }

  .btn-primary, .btn-orange, .btn-outline-primary, .btn-secondary-orange {
    width: 100%;
    display: block;
    text-align: center;
  }

  .form-control {
    padding: 12px 16px;
  }
}