/* ==============================================
   RESTRUCTURED CSS - PURPLE/BLACK THEME
   All class names updated to match new HTML
   ============================================== */

/* === COLOR VARIABLES === */
:root {
    --primary-purple: #7c3aed;
    --secondary-purple: #a78bfa;
    --dark-black: #1a1a1a;
    --accent-purple: #9333ea;
    --accent-purple-hover: #7e22ce;
    --light-gray: #f3f4f6;
}

/* === TOP INFO STRIP === */
.top-info-strip {
    background: linear-gradient(135deg, var(--dark-black) 0%, #2d2d2d 100%);
    padding: 10px 0;
    color: white;
    text-align: center;
}

.info-strip-content {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.quick-phone, .quick-email {
    font-size: 14px;
    font-weight: 500;
}

/* === HEADER === */
#site-header-main, #site-header-main .navbar {
    background-color: var(--dark-black) !important;
}

.navbar-toggler {
    background-color: white;
} 

.nav-link, .menu-item a {
    text-transform: uppercase;
    color: white;
    text-decoration: none;
}

a.nav-link:hover, .menu-item a:hover {
    color: var(--primary-purple);
}

a.nav-link.active, .current-menu-item a {
    color: var(--secondary-purple) !important;
}

a.nav-link.active:hover, .current-menu-item a:hover {
    color: var(--accent-purple) !important;
}

.dropdown-menu, .sub-menu {
    background: var(--dark-black);
}

.dropdown-menu .nav-item, 
.sub-menu .menu-item,
.services-dropdown-option,
.locations-dropdown-option {
    border-bottom: solid #333333 2px;
    padding-left: 10px;
}

.dropdown-item {
    padding: 8px;
    white-space: initial;
    color: white;
}

.dropdown-item:hover {
    background-color: rgba(124, 58, 237, 0.2);
    color: var(--primary-purple);
}

/* === UNIFIED HERO/BANNER SECTION === */
.banner-primary-section {
    width: 100%;
    max-width: 100% !important;
    position: relative;
    background: var(--dark-black);
    padding: 0;
    margin: 0 auto;
    min-height: 400px;
    height: 600px;
    overflow: hidden;
}

.banner-background-layer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.banner-image-responsive {
    width: 100%;
    height: 100%;
    display: block;
}

.banner-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.banner-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        100deg, 
        rgba(26, 26, 26, 0.55) 25%, 
        rgba(45, 45, 45, 0.25) 57%, 
        rgba(26, 26, 26, 0.20) 75%, 
        rgba(0, 0, 0, 0.10) 100%
    );
    pointer-events: none;
}

.banner-text-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    color: white;
}

.banner-text-inner {
    text-align: left;
    padding: 15% 0 10px 30px;
}

.banner-text-inner h1 {
    color: white !important;
    font-weight: bold;
    width: 90%;
    max-width: 600px;
    font-size: 26px;
    margin: 0;
    padding-bottom: 10px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.banner-text-inner h2 {
    width: 90%;
    max-width: 600px;
    padding: 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    color: white;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

.title-divider-line {
    position: relative;
    width: 130px;
    margin: 10px 0;
    border-bottom: var(--primary-purple) 3px solid;
    box-shadow: 0 2px 4px rgba(124, 58, 237, 0.3);
}

/* === CTA BUTTONS === */
.cta-section-wrapper {
    padding: 25px;
    background: linear-gradient(135deg, var(--dark-black) 0%, #2d2d2d 100%);
}

.action-button a p {
    color: white;
    padding: 20px;
    font-size: 26px;
    border: 3px solid var(--primary-purple);
    width: 270px;
    margin: auto;
    background-color: var(--primary-purple);
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
    transition: all 0.3s ease;
}

.action-button a p:hover {
    background-color: var(--accent-purple-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6);
}

.action-button a {
    text-decoration: none; 
}

/* === CONTENT SECTIONS === */
.content-block-alpha a, 
.content-block-beta a, 
.content-block-gamma a, 
.content-block-delta a,
.content-block-epsilon a,
.location-proximity-section a {
    color: var(--primary-purple);
    text-decoration: underline;
}

.content-inner-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 30px;
    padding-right: 30px;
}

.content-inner-spacing h2 {
    padding-bottom: 20px;
    font-size: 28px;
    line-height: 1.5;
}

.content-inner-spacing h3 {
    font-size: 22px;
    padding-bottom: 20px;
    line-height: 1.5;
}

.content-inner-spacing p {
    font-size: 19px;
    line-height: 1.6;
}

.content-inner-spacing p:last-child {
    margin-bottom: 0;
}

/* === IMAGE SECTIONS === */
.dual-media-section .col-lg-8 h2, .dual-media-section .col-lg-10 h2 {
    padding-top: 60px;
}

.media-container-one {
    margin-bottom: 40px;
}

.col-md-6 img {
    box-shadow: 5px 5px 15px rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.col-md-6 img:hover {
    transform: scale(1.02);
}

/* === NEAR ME / LOCATION PROXIMITY === */
.location-proximity-section {
    border-bottom: 2px solid var(--secondary-purple);
    background-color: var(--light-gray);
}

/* === MAP SECTION - FULL WIDTH === */
.map-section-full {
    background: var(--dark-black);
    padding: 0;
    margin: 0;
}

.map-wrapper-fullwidth {
    width: 100%;
    height: 500px;
}

.map-wrapper-fullwidth iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* === CONTACT SECTION - FULL WIDTH === */
.contact-section-full {
    background: var(--dark-black);
    color: white;
    padding: 60px 0;
}

.contact-info-grid {
    max-width: 100%;
}

.contact-details-block {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-purple);
}

.contact-heading {
    color: var(--primary-purple);
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: bold;
}

.contact-item p {
    font-size: 20px;
    padding-bottom: 10px;
    margin: 0;
}

.contact-item .business-name {
    font-weight: bold;
    color: var(--secondary-purple);
}

.contact-item .hours-label {
    font-weight: bold;
    color: var(--secondary-purple);
}

.contact-item hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 15px 0;
}

/* === SPACING UTILITIES === */
.text-spacing-below {
    padding-bottom: 60px;
}

/* === VIDEO SECTION === */
.video-content-wrapper {
    width: 80%;
    padding: 30px 10px;
    margin: 0 auto;
}

/* === FOOTER === */
footer a {
    text-decoration: none;
    font-size: 18px;
    color: var(--primary-purple);
    transition: color 0.3s ease;
}

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

/* Bootstrap Icons styling */
.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-purple);
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    background: var(--accent-purple);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.social-icon-link i {
    font-size: 20px;
}

/* === FORM STYLES === */
.form-container {
    overflow: hidden;
    width: 90%;
    margin: auto;
    margin-bottom: 60px;
    border-radius: 16px;
    border: 2px solid var(--primary-purple);
}

.contact-form {
    padding: 50px;
    padding-bottom: 60px;
    max-width: 700px;
    margin: auto;
}

.contact-form h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-black);
    margin-bottom: 8px;
    text-align: center;
    padding: 30px 25px;
}

.form-subtitle {
    color: #718096;
    text-align: center;
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-black);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    font-size: 1rem;
    font-family: inherit;
    background-color: transparent;
    resize: vertical;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-purple);
    box-shadow: 0 2px 0 0 var(--accent-purple);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group textarea:hover {
    border-bottom-color: var(--secondary-purple);
}

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

.submit-btn {
    width: 100%;
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background: var(--accent-purple-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

.submit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.4);
}

.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-bottom-color: var(--dark-black);
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group textarea:valid:not(:focus):not(:placeholder-shown) {
    border-bottom-color: var(--primary-purple);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* === RESPONSIVE BREAKPOINTS === */

/* 400px */
@media (min-width: 400px) {
    .banner-text-inner {
       padding-left: 10%;
    }
    
    .title-divider-line {
        margin-left: 0;
    }
}

/* 550px */
@media (min-width: 550px) {
    .banner-text-inner h1 {
        padding-top: 0;
        font-size: 2rem;
        width: 70%;
    }

    .banner-text-inner h2 {
        font-size: 1.75rem;
        width: 70%;
    }
}

/* 601px */
@media (min-width: 601px) {
    .banner-text-inner h1 {
        padding-top: 0;
    }

    .title-divider-line {
        width: 200px;
    }
}

/* 720px */
@media (min-width: 720px) {
    .cta-section-wrapper {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .banner-primary-section {
        height: 500px;
    }
}

/* 766px */
@media (min-width: 766px) {
    .banner-text-inner h1 {
        font-size: 2.5rem;
    }

    .banner-text-inner h2 {
        font-size: 2rem;
    }

    .media-container-one {
        margin-bottom: auto;
    }
    
    .video-content-wrapper {
        width: 60%;
    }
}

/* Hover-to-open dropdowns on desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
      display: block;
    }
    
    .navbar .dropdown-menu, .sub-menu {
      margin-top: 0;
    }
    
    .navbar .dropdown:hover > .nav-link {
      color: var(--primary-purple);
    }
    
    .nav-link, .menu-item a {
      margin-right: 15px;
      margin-left: 15px;
    }
    
    .menu-item-has-children {
        position: relative;
        z-index: 1;
        padding-bottom: 20px;
    }
    
    .sub-menu {
        display: none;
        position: absolute;
        z-index: 3;
        border: 2px solid var(--dark-black);
        border-radius: 10px;
        padding: 0;
        margin-top: 10px;
    }
    
     .menu-item-has-children:hover .sub-menu {
        display: block;
        -webkit-transition: all 1s ease;
        transition: all 1s ease;
    }
    
    .sub-menu .menu-item {
        padding: 10px;
    }
    
      .dropdown .dropdown-menu li, .sub-menu .menu-item  {
        width: 250px;
    }
    
     .nav-item.dropdown .dropdown-menu, .sub-menu {
        left: -100px !important;
    }

    .dropdown .dropdown-menu li a, .sub-menu .menu-item a {
        white-space: normal;
    }   
}

/* 1250px */
@media (min-width: 1250px) {    
    .banner-text-inner h1 {
        width: 65%;
        font-size: 3.5rem;
    }

    .banner-text-inner h2 {
        width: 65%;
        font-size: 3rem;
    }

    .title-divider-line {
        width: 250px;
    }
    
    .banner-primary-section {
        height: 600px;
    }
}