/* ========== CONTACT US FULL SCREEN (prefix 'cu-', 'ct-') ========== */

/* Full Screen Sections */
.cu-hero-full,
.ct-section-full {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  background: var(--bg-color);
  position: relative;
  overflow: hidden;
}

/* Alternating background colors */
.ct-section-full:nth-child(even) {
  background: var(--grey-soft);
}

/* Full Width Containers */
.cu-container-full,
.ct-container-full {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

/* CU Hero Section */
.cu-hero-full {
  background: linear-gradient(145deg, var(--bg-color), var(--grey-soft));
}

.cu-badge-wrapper {
  text-align: center;
  margin-bottom: 2.5rem;
}

.cu-badge {
  background: var(--primary-navy);
  color: var(--white-color);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 0.6rem 2.5rem;
  border-radius: 50px;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.cu-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.cu-heading-main {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.cu-heading-sub {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--accent-slate);
  line-height: 1.2;
}

/* Contact Info Cards Grid */
.cu-info-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background: var(--white-color);
  border-radius: 40px;
  padding: 3rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
}

.cu-info-card-full {
  text-align: center;
  padding: 1.5rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cu-info-card-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary-navy);
  transition: height 0.3s ease;
}

.cu-info-card-full:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.cu-info-card-full:hover::before {
  height: 100%;
}

.cu-icon-full {
  width: 80px;
  height: 80px;
  background: var(--primary-navy-soft);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.cu-info-card-full:hover .cu-icon-full {
  background: var(--primary-navy);
  color: var(--white-color);
}

.cu-card-title-full {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.cu-card-text-full {
  color: var(--text-medium);
  line-height: 1.7;
}

.cu-card-text-full p {
  margin-bottom: 0.3rem;
}

.cu-phone-full {
  font-weight: 600;
  color: var(--primary-navy);
  display: block;
}

/* Dots decoration */
.cu-dots-full {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(var(--primary-navy) 2px, transparent 2px);
  background-size: 25px 25px;
  opacity: 0.03;
  z-index: 1;
}

/* CT Section Styles */
.ct-section-header-full {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.ct-section-label-full {
  color: var(--primary-navy);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1.2rem;
}

.ct-section-title-full {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.3;
}

/* Form + Info Grid */
.ct-form-grid-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white-color);
  border-radius: 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

/* Form Side */
.ct-form-side-full {
  padding: 3.5rem;
  background: var(--white-color);
}

.ct-form-title-full {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.ct-form-desc-full {
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.ct-field-group-full {
  margin-bottom: 1.5rem;
}

.ct-field-label-full {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-navy);
  font-weight: 600;
  font-size: 0.95rem;
}

.ct-field-control-full {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid var(--border-color);
  border-radius: 16px;
  font-size: 1rem;
  color: var(--dark-grey);
  background: var(--off-white);
  transition: all 0.3s ease;
}

.ct-field-control-full:focus {
  outline: none;
  border-color: var(--primary-navy);
  background: var(--white-color);
  box-shadow: 0 0 0 4px var(--primary-navy-10);
}

textarea.ct-field-control-full {
  min-height: 120px;
  resize: vertical;
}

.ct-submit-btn-full {
  background: var(--primary-navy);
  color: var(--white-color);
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 12px var(--darkest-navy);
}

.ct-submit-btn-full:hover {
  background: var(--light-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--navy);
}

.ct-submit-btn-full i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.ct-submit-btn-full:hover i {
  transform: translateX(5px);
}

/* Info Side */
.ct-info-side-full {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--light-navy) 100%);
  padding: 3.5rem;
  color: var(--white-color);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.ct-info-side-full::after {
  content: '"';
  font-size: 15rem;
  position: absolute;
  bottom: -5rem;
  right: -1rem;
  opacity: 0.05;
  font-family: serif;
  color: var(--white-color);
}

.ct-side-title-full {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.ct-side-desc-full {
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.ct-side-item-full {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.ct-side-item-full > div:not(.ct-side-icon-full) {
  flex: 1;
  min-width: 0;
}

.ct-side-icon-full {
  width: 48px;
  height: 48px;
  background: var(--border-white-10);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  backdrop-filter: blur(5px);
}

.ct-side-label-full {
  font-weight: 700;
  margin-bottom: 0.3rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  white-space: nowrap;
}

.ct-side-info-full {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: 0.95;
}

/* Map Section */
.ct-map-full {
  background: var(--white-color);
  border-radius: 40px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.ct-map-placeholder-full {
  background: var(--of-white);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--primary-navy);
}

.ct-map-placeholder-full i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.ct-map-placeholder-full p {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.ct-map-placeholder-full small {
  opacity: 0.5;
}

/* Business Hours Card */
.ct-hours-card-full {
  background: var(--white-color);
  border-radius: 30px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px -12px var(--lg-black);
  max-width: 1200px;
  margin: 2rem auto 0;
}

.ct-hours-title-full {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ct-hours-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.ct-hours-item-full {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  background: var(--off-white);
  border-radius: 12px;
  color: var(--text-medium);
}

.ct-hours-day-full {
  font-weight: 600;
  color: var(--primary-navy);
}

/* CTA Section */
.ct-cta-full {
  background: var(--primary-navy);
  border-radius: 50px;
  padding: 5rem;
  text-align: center;
  color: var(--white-color);
  max-width: 1100px;
  margin: 0 auto;
}

.ct-cta-title-full {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ct-cta-text-full {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ct-cta-buttons-full {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.ct-btn-white-full {
  background: var(--white-color);
  color: var(--primary-navy);
  border: none;
  border-radius: 50px;
  padding: 1rem 3rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.ct-btn-white-full i {
  margin-right: 0.5rem;
}

.ct-btn-white-full:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-button);
  color: var(--primary-navy);
}

.ct-btn-outline-full {
  background: transparent;
  border: 2px solid var(--white-color);
  color: var(--white-color);
  border-radius: 50px;
  padding: 1rem 3rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.ct-btn-outline-full i {
  margin-right: 0.5rem;
}

.ct-btn-outline-full:hover {
  background: var(--white-color);
  color: var(--primary-navy);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1200px) {
  .cu-container-full,
  .ct-container-full {
    padding: 0 2rem;
  }
  
  .cu-heading-main {
    font-size: 2.8rem;
  }
}

@media (max-width: 992px) {
  .cu-info-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ct-form-grid-full {
    grid-template-columns: 1fr;
  }
  
  .cu-heading-main {
    font-size: 2.5rem;
  }
  
  .ct-hours-grid-full {
    grid-template-columns: 1fr;
  }
  
  .ct-cta-full {
    padding: 4rem 2.5rem;
  }
}

@media (max-width: 768px) {
  .cu-hero-full,
  .ct-section-full {
    min-height: auto;
    padding: 3rem 0;
  }
  
  .cu-container-full,
  .ct-container-full {
    padding: 0 1.5rem;
  }
  
  .cu-info-grid-full {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  
  .cu-heading-main {
    font-size: 2rem;
  }
  
  .cu-heading-sub {
    font-size: 1rem;
  }
  
  .ct-form-side-full,
  .ct-info-side-full {
    padding: 2rem;
  }
  
  .ct-cta-buttons-full {
    flex-direction: column;
    gap: 1rem;
  }
  
  .ct-btn-white-full,
  .ct-btn-outline-full {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .ct-cta-title-full {
    font-size: 2rem;
  }
  
  .ct-map-placeholder-full {
    height: 300px;
  }
  
  .ct-map-placeholder-full i {
    font-size: 3rem;
  }
  
  .ct-map-placeholder-full p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .ct-side-item-full {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .ct-side-icon-full {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .ct-hours-card-full {
    padding: 1.5rem;
  }
}
/* Map Wrapper */
.ct-map-wrapper-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ct-map-col-full {
  width: 100%;
}

.ct-location-col-full {
  width: 100%;
}

/* Location Card */
.ct-location-card-full {
  background: var(--white-color);
  border-radius: 40px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.ct-location-title-full {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ct-location-title-full i {
  font-size: 1.4rem;
}

.ct-location-address-full {
  color: var(--text-medium);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.ct-location-review-full {
  color: var(--of-lg-grey);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ct-location-review-full i {
  color: var(--yellow);
}

.ct-location-divider-full {
  height: 1px;
  background: var(--border-color);
  margin: 1.5rem 0;
}

.ct-location-subtitle-full {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 1.2rem;
}

.ct-location-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.ct-location-grid-full span {
  color: var(--text-medium);
  font-size: 0.95rem;
  padding: 0.2rem 0;
}

.ct-location-numbers-full {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  max-height: 200px;
  overflow-y: auto;
  padding: 0.5rem;
  background: var(--off-white);
  border-radius: 20px;
}

.ct-location-numbers-full span {
  color: var(--text-medium);
  font-size: 0.9rem;
  min-width: 40px;
  padding: 0.2rem 0.5rem;
  background: var(--white-color);
  border-radius: 6px;
  text-align: center;
  border: 1px solid var(--border-color);
}

/* Responsive */
@media (max-width: 992px) {
  .ct-map-wrapper-full {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .ct-map-col-full iframe {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .ct-location-card-full {
    padding: 2rem;
  }
  
  .ct-location-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ct-location-numbers-full {
    max-height: 150px;
  }
  
  .ct-location-numbers-full span {
    min-width: 35px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .ct-location-grid-full {
    grid-template-columns: 1fr;
  }
  
  .ct-location-numbers-full span {
    min-width: 30px;
  }
}
/* ========== SERVICES SUBMENU STYLES ========== */

/* Services menu container */
.services-menu {
  min-width: 240px;
  padding: 0.5rem 0 !important;
}

/* Style for the top-level items (For Accounting Firms, For Businesses) */
.services-menu > li.dropdown-submenu > .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  font-weight: 600;
  color: var(--primary-navy);
  background: transparent;
}

/* Submenu arrow */
.services-menu > li.dropdown-submenu > .dropdown-item .submenu-arrow {
  color: var(--primary-navy);
  font-size: 1.2rem;
  margin-left: 0.5rem;
  opacity: 0.7;
  display: inline-block;
}

.services-menu > li.dropdown-submenu:hover > .dropdown-item .submenu-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* Submenu dropdown positioning */
li.dropdown-submenu {
  position: relative;
}

.submenu-dropdown {
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: 0.2rem;
  min-width: 260px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 20px 40px -12px var(--black);
  padding: 0.5rem 0;
  display: none;
  z-index: 1001;
}

/* Show submenu on hover */
li.dropdown-submenu:hover > .submenu-dropdown {
  display: block;
}

/* Submenu items */
.submenu-dropdown .dropdown-item {
  padding: 0.6rem 1.5rem;
  color: var(--text-medium);
  font-weight: 500;
  white-space: nowrap;
  font-size: 0.9rem;
}

.submenu-dropdown .dropdown-item:hover {
  background: var(--of-white);
  color: var(--primary-navy);
  padding-left: 2rem;
}

/* Add separators between submenu items */
.submenu-dropdown .dropdown-item:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}

/* Remove any mega menu styles that might conflict */
.dropdown-mega-menu,
.mega-menu-container,
.mega-menu-column,
.mega-menu-header,
.mega-menu-links {
  display: none;
}

/* Mobile responsive */
@media (max-width: 992px) {
  .submenu-dropdown {
    position: static;
    box-shadow: none;
    border: 1px solid var(--border-color);
    background: var(--grey-soft);
    margin-left: 1rem;
    margin-top: 0.5rem;
    width: calc(100% - 1rem);
  }
  
  .submenu-arrow {
    display: none;
  }
}