@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --ocean: #0d4e5a;
  --ocean-dark: #083a42;
  --ocean-light: #1a6a75;
  --gold: #c9a962;
  --gold-dark: #ab8840;
  --pearl: #f5f4f0;
  --charcoal: #1e2b30;
  --deep: #091e26;
  --white: #ffffff;
  --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 5px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.18);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --transition: all 0.3s ease;
  --radius: 12px;
  --radius-sm: 6px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--pearl);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ocean-dark);
  margin-bottom: 0.75rem;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--ocean);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-dark);
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

main {
  display: block;
  overflow: hidden;
}

section {
  position: relative;
}

.section-padding {
  padding: 5rem 0;
}

.section-padding-sm {
  padding: 3rem 0;
}

.section-head {
  margin-bottom: 3.5rem;
}

.section-subtitle {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ocean-dark);
  margin-bottom: 1rem;
}

.section-text {
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 720px;
}

.divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.divider-left {
  margin-left: 0;
  margin-right: auto;
}

.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 22, 28, 0.6);
  z-index: 1;
}

.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(8, 58, 66, 0.85) 0%, rgba(6, 22, 28, 0.4) 60%, rgba(9, 30, 38, 0.7) 100%);
  z-index: 1;
}

.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1000;
}

.navbar {
  padding: 0.75rem 0;
  background: var(--white);
  transition: var(--transition);
}

.navbar-brand {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ocean-dark);
  letter-spacing: 0.02em;
}

.navbar-brand:hover {
  color: var(--ocean-dark);
}

.navbar-brand img {
  margin-right: 0.5rem;
}

.navbar .nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0.75rem 1.1rem !important;
  transition: var(--transition);
  position: relative;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.3rem;
  left: 1.1rem;
  right: 1.1rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--ocean);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

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

.navbar-toggler {
  border: none;
  font-size: 1.2rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-scrolled {
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border: 2px solid transparent;
}
.btn-gold:hover {
  background: var(--ocean-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.4);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ocean {
  background: var(--ocean-dark);
  color: var(--white);
  border: 2px solid transparent;
}

.btn-ocean:hover {
  background: var(--ocean);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-white-outline:hover {
  background: var(--white);
  color: var(--ocean-dark);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-lg {
  font-size: 0.9rem;
  padding: 0.9rem 2.2rem;
}

.hero-slider {
  position: relative;
  min-height: 100vh;
}

.hero-slider .carousel-item {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slider .carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(8, 58, 66, 0.85) 0%, rgba(6, 22, 28, 0.4) 60%, rgba(9, 30, 38, 0.75) 100%);
}

.hero-slider .carousel-caption {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 1rem;
  max-width: 900px;
  width: 100%;
  z-index: 2;
}

.hero-slider .carousel-caption .hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 169, 98, 0.2);
  border: 1px solid rgba(201, 169, 98, 0.4);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-slider .carousel-caption h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-slider .carousel-caption p {
  font-size: 1.1rem;
  color: var(--white);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.hero-slider .carousel-indicators {
  bottom: 2rem;
}

.hero-slider .carousel-indicators button {
  width: 34px;
  height: 4px;
  background-color: var(--white);
  border-radius: 4px;
  opacity: 0.5;
  margin: 0 5px;
  border: none;
  transition: var(--transition);
}

.hero-slider .carousel-indicators button.active {
  opacity: 1;
  background-color: var(--gold);
  width: 48px;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 1rem;
  opacity: 1;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
  background: var(--gold);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--white);
  font-size: 1.5rem;
  animation: heroBounce 2s infinite;
}

@keyframes heroBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.hero-single {
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-single h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4rem);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-single .breadcrumb {
  background: transparent;
  margin-bottom: 0;
  justify-content: center;
}

.hero-single .breadcrumb-item,
.hero-single .breadcrumb-item a {
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card .card-img-wrap {
  position: relative;
  overflow: hidden;
}

.service-card .card-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.service-card .card-body {
  padding: 1.75rem 1.5rem;
}

.service-card .card-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ocean-dark);
  margin-bottom: 0.75rem;
}

.service-card .card-text {
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-card .card-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.service-card .card-link:hover {
  color: var(--ocean);
  gap: 0.8rem;
}

.service-card .card-link i {
  font-size: 0.7rem;
}

.feature-box {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.feature-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-box .feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean-light) 0%, var(--ocean-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.feature-box.gold .feature-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.feature-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ocean-dark);
  margin-bottom: 0.75rem;
}

.feature-box p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.stats-section {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 5rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.stat-item .stat-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.stat-item .stat-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  display: block;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.5rem;
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(8, 58, 66, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.gallery-item .gallery-caption {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2.5rem;
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '\f10e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--gold);
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  opacity: 0.15;
}

.testimonial-card .testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.testimonial-card .testimonial-rating {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card .testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--pearl);
}

.testimonial-card .testimonial-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ocean-dark);
  margin-bottom: 0;
}

.testimonial-card .testimonial-role {
  font-size: 0.8rem;
  color: var(--charcoal);
  opacity: 0.7;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.team-card .team-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.team-card .team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-card .team-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ocean-dark);
  margin-bottom: 0.25rem;
}

.team-card .team-position {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-table {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.pricing-table:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.pricing-table.featured {
  border: 3px solid var(--gold);
}

.pricing-table .pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

.pricing-table .pricing-header {
  padding: 2rem 2rem 1.5rem;
  text-align: center;
  background: var(--pearl);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-table .pricing-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ocean-dark);
  margin-bottom: 0.5rem;
}

.pricing-table .pricing-price {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--ocean);
}

.pricing-table .pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  opacity: 0.7;
}

.pricing-table .pricing-body {
  padding: 2rem;
}

.pricing-table .pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-table .pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.pricing-table .pricing-list li i {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.pricing-table .pricing-footer {
  padding: 0 2rem 2rem;
  text-align: center;
}

.accordion {
  --bs-accordion-border-radius: var(--radius);
  --bs-accordion-bg: var(--white);
  --bs-accordion-border-color: rgba(0, 0, 0, 0.1);
}

.accordion-item {
  border: none;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  border-radius: var(--radius) !important;
  overflow: hidden;
}

.accordion-button {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ocean-dark);
  background: var(--white);
  padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background: var(--ocean-dark);
  color: var(--white);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  filter: none;
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  padding: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--charcoal);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
}

.contact-form .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ocean-dark);
  margin-bottom: 0.4rem;
}

.form-control {
  border: 1px solid #e1dfda;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  color: var(--charcoal);
  transition: var(--transition);
  background: #fafaf9;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(201, 169, 98, 0.15);
  background: var(--white);
}

.form-control::placeholder {
  color: #8b8d8f;
  opacity: 0.7;
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.contact-info-block {
  background: var(--ocean-dark);
  border-radius: var(--radius);
  padding: 2.5rem;
  color: var(--white);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-block::after {
  content: '\f2b9';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 8rem;
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  color: rgba(255, 255, 255, 0.06);
}

.contact-info-block h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.contact-info-item .info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.25);
  border: 1px solid rgba(201, 169, 98, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

.contact-info-item .info-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.map-section {
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 460px;
  border: none;
  display: block;
}

.site-footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 4rem;
}

.site-footer h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.site-footer .footer-brand {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.site-footer .footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 340px;
  margin-bottom: 1.5rem;
}

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

.site-footer .footer-links li {
  margin-bottom: 0.6rem;
}

.site-footer .footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-footer .footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.site-footer .footer-links a i {
  font-size: 0.6rem;
  color: var(--gold);
}

.site-footer .footer-contact {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.site-footer .footer-contact i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.site-footer .footer-contact span {
  line-height: 1.6;
}

.site-footer .footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.site-footer .footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: var(--transition);
}

.site-footer .footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--deep);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  z-index: 1050;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin-bottom: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
  min-width: 260px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner-buttons .btn {
  padding: 0.5rem 1.4rem;
  font-size: 0.75rem;
}

.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem 1.75rem;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  max-width: 400px;
  border-left: 4px solid var(--gold);
}

.toast-notification.toast-show {
  transform: translateY(0);
  opacity: 1;
}

.toast-notification i {
  font-size: 1.4rem;
  color: var(--gold);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ocean-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  z-index: 999;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-4px);
}

.page-header {
  background-size: cover;
  background-position: center;
  padding: 8rem 0 4rem;
  position: relative;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
  z-index: 2;
  position: relative;
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  z-index: 2;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.legal-content {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 3rem;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--ocean-dark);
}

.legal-content p,
.legal-content li {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--charcoal);
}

.legal-content ul {
  list-style: disc;
  margin-left: 1.25rem;
}

.legal-content .legal-section {
  margin-bottom: 2.5rem;
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-page .error-code {
  font-family: var(--font-head);
  font-size: 8rem;
  font-weight: 800;
  color: var(--ocean-dark);
  line-height: 1;
  margin-bottom: 1rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.blog-card .blog-img-wrap {
  position: relative;
  overflow: hidden;
}

.blog-card .blog-img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.08);
}

.blog-card .blog-body {
  padding: 1.75rem;
}

.blog-card .blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--charcoal);
  opacity: 0.7;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card .blog-meta i {
  color: var(--gold);
  margin-right: 0.25rem;
}

.blog-card .blog-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ocean-dark);
  margin-bottom: 0.75rem;
  display: block;
  transition: var(--transition);
}

.blog-card .blog-title:hover {
  color: var(--gold-dark);
}

.blog-card .blog-excerpt {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.blog-card .blog-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.blog-card .blog-link:hover {
  color: var(--ocean);
  gap: 0.8rem;
}

.cta-section {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.bg-pearl {
  background-color: var(--pearl);
}

.bg-white {
  background-color: var(--white);
}

.bg-ocean {
  background-color: var(--ocean-dark);
}

.text-gold {
  color: var(--gold-dark) !important;
}

.text-ocean {
  color: var(--ocean) !important;
}

.about-story {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-story .story-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.about-story .story-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-story .story-content {
  flex: 1;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 56px;
  bottom: -1.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.process-step:last-child::before {
  display: none;
}

.process-step .step-number {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--ocean-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  z-index: 2;
}

.process-step.gold .step-number {
  background: var(--gold);
}

.process-step .step-content h4 {
  font-size: 1.1rem;
  color: var(--ocean-dark);
  margin-bottom: 0.5rem;
}

.process-step .step-content p {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 0;
}

.clients-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 2rem 0;
}

.clients-row .client-logo {
  max-height: 50px;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: var(--transition);
}

.clients-row .client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

@media (max-width: 1199.98px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 4rem 0;
  }

  .navbar-nav {
    padding: 1rem 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-top: 0.75rem;
  }

  .navbar .nav-link {
    padding: 0.6rem 1.25rem !important;
  }

  .navbar .nav-link::after {
    left: 1.25rem;
    right: auto;
    width: 0;
  }

  .navbar .nav-link:hover::after,
  .navbar .nav-link.active::after {
    width: 30px;
    transform: scaleX(1);
  }

  .hero-slider .carousel-caption h1 {
    font-size: 2.4rem;
  }

  .hero-slider .carousel-caption p {
    font-size: 1rem;
  }

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

  .about-story {
    flex-direction: column;
    gap: 2rem;
  }

  .about-story .story-img img {
    height: 300px;
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .contact-info-block {
    margin-top: 2rem;
  }

  .toast-notification {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 3rem 0;
  }

  .hero-slider {
    min-height: 80vh;
  }

  .hero-slider .carousel-item {
    min-height: 80vh;
  }

  .hero-slider .carousel-caption h1 {
    font-size: 2rem;
  }

  .hero-slider .carousel-indicators {
    bottom: 1.5rem;
  }

  .stat-item .stat-number {
    font-size: 2.2rem;
  }

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

  .gallery-item img {
    height: 220px;
  }

  .pricing-table {
    margin-bottom: 1.5rem;
  }

  .legal-content {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.8rem;
  }

  .site-footer {
    padding-top: 3rem;
  }

  .site-footer .footer-bottom {
    margin-top: 2rem;
  }

  .process-step .step-content p {
    font-size: 0.85rem;
  }

  .back-to-top {
    bottom: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
  }
}
/* ===== QA fix overrides ===== */

/* Ensure dark fallback backgrounds so white hero text passes contrast checks */
.hero-single,
.cta-section,
.page-header,
.stats-section {
  background-color: #0b2a33 !important;
}

/* Darken gold accent text to meet 4.5:1 contrast on light backgrounds */
.section-subtitle,
.blog-card .blog-link,
.service-card .card-link,
.text-gold {
  color: #825f28 !important;
}

/* Style the Services dropdown toggle converted to a <button> */
.navbar .nav-link.dropdown-toggle.btn-link {
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.1rem !important;
  border: none;
  background: transparent;
}
.navbar .nav-link.dropdown-toggle.btn-link:hover,
.navbar .nav-link.dropdown-toggle.btn-link:focus {
  color: var(--ocean);
  background: transparent;
  box-shadow: none;
}

/* ===== Accessibility / contrast overrides ===== */
.section-subtitle { color: #6a5420; }
.section-subtitle.text-gold { color: #e9cf8e !important; }
.team-card .team-position { color: #6a5420; }
.service-card .card-link { color: #6a5420; }
.blog-card .blog-link { color: #6a5420; }
.btn-outline-gold { color: #6a5420; border-color: #8a6d2f; }
.btn-gold {
  background-color: #7a5c24 !important;
  background-image: none !important;
  color: #ffffff !important;
}
.gallery-item .gallery-overlay { opacity: 1 !important; }

/* ===== Static cookie banner (always present on page) ===== */
.cookie-banner-static {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #091e26;
  color: #ffffff;
  padding: 1.25rem 1.5rem;
  z-index: 1050;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.25);
}
.cookie-banner-static p {
  margin-bottom: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  flex: 1;
  min-width: 260px;
}
@media (max-width: 991.98px) {
  .cookie-banner-static .cookie-banner-content { flex-direction: column; text-align: center; }
}

/* ---- Contrast & visibility overrides ---- */
.hero-single,
.cta-section {
  background-color: #0a1f28 !important;
}

.section-subtitle {
  color: #7a5b16;
}

.section-subtitle.text-gold {
  color: #dcc079 !important;
}

.service-card .card-link,
.blog-card .blog-link {
  color: #7a5b16;
}

.btn-outline-gold {
  color: #7a5b16 !important;
}

.btn-gold {
  background-color: #8a6a1f !important;
}

/* ---- Static cookie consent banner ---- */
.site-cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2147483647;
  background: #171717;
  color: #ffffff;
  padding: 16px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
  font-size: 15px;
  box-sizing: border-box;
}

.site-cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  flex-wrap: wrap;
  max-width: 1120px;
  margin: 0 auto;
}

.site-cookie-consent p {
  margin: 0;
  color: #ffffff;
  flex: 1;
  min-width: 260px;
}

.site-cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.site-cookie-buttons .btn {
  padding: 0.5rem 1.4rem;
  font-size: 0.78rem;
}

@media (max-width: 640px) {
  .site-cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .site-cookie-buttons {
    width: 100%;
  }
  .site-cookie-buttons .btn {
    flex: 1;
  }
}

/* ===== Additional QA fixes: hero, gallery captions, carousel controls ===== */

/* Dark panel behind hero caption so white headline/text passes contrast checks */
.hero-slider .carousel-caption {
  background: rgba(6, 22, 28, 0.62) !important;
  border-radius: 16px;
  padding: 2.5rem 2rem !important;
  max-width: 900px;
}

.hero-slider .carousel-caption .hero-tag {
  color: #ffffff !important;
  background: rgba(8, 58, 66, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
}

.hero-slider .carousel-caption p {
  color: #ffffff !important;
  opacity: 1 !important;
}

/* Gallery captions get a solid dark background for readable white text */
.gallery-item .gallery-caption {
  color: #ffffff !important;
  background: rgba(8, 58, 66, 0.92) !important;
  padding: 0.5rem 0.75rem !important;
  border-radius: 6px !important;
}

/* Screen-reader-only carousel control labels: ensure contrast if rendered */
.carousel-control-prev .visually-hidden,
.carousel-control-next .visually-hidden {
  color: #000000 !important;
}

/* ===== Contrast fixes for pricing page (hero tag, gold outline buttons, badges) ===== */
.hero-single .hero-tag {
  color: #ffffff !important;
  background: rgba(8, 58, 66, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
}
.btn-gold-outline {
  color: #6a5420 !important;
  border-color: #8a6d2f !important;
}
.btn-gold-outline:hover {
  color: #ffffff !important;
  background-color: #8a6d2f !important;
}
.pricing-table .pricing-badge {
  background-color: #7a5c24 !important;
  color: #ffffff !important;
}

/* ===== Thank-you hero outline button contrast fix ===== */
.hero-single .btn-outline-gold {
  color: #ffffff !important;
  border-color: #e9cf8e !important;
  background: rgba(0, 0, 0, 0.28) !important;
}
.hero-single .btn-outline-gold:hover {
  color: #1a1a1a !important;
  background: #e9cf8e !important;
  border-color: #e9cf8e !important;
}

/* ===== Ensure static cookie banner is visible and not auto-hidden ===== */
#site-cookie-consent {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
