/* ============================================
   Cue Sales & Service — Custom Styles
   ============================================ */

/* ——— Base Reset & Typography ——— */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ——— Utility ——— */
.section-padding {
    padding: 80px 0;
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 120px 0;
    }
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy-600, #b8244d);
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--burgundy-400, #ec6c8f);
    border-radius: 2px;
}

/* ——— Buttons ——— */
.btn-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #b8244d 0%, #9a1a3f 100%);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(184, 36, 77, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 36, 77, 0.35);
    background: linear-gradient(135deg, #c92f5a 0%, #a82048 100%);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #9a1a3f;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(154, 26, 63, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: #9a1a3f;
    background: rgba(154, 26, 63, 0.05);
}

.btn-light {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: #9a1a3f;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-light:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
}

/* ——— Link Arrow ——— */
.link-arrow {
    display: inline-flex;
    align-items: center;
    color: #9a1a3f;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: #b8244d;
}

.link-arrow svg {
    transition: transform 0.3s ease;
}

.link-arrow:hover svg {
    transform: translateX(4px);
}

/* ——— Badge Hero ——— */
.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 36, 77, 0.08);
    border: 1px solid rgba(184, 36, 77, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #9a1a3f;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #b8244d;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

/* ——— Navigation ——— */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 250, 247, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 36, 77, 0.08);
    transition: all 0.3s ease;
}

.nav-fixed.scrolled {
    background: rgba(255, 250, 247, 0.97);
    box-shadow: 0 4px 30px rgba(184, 36, 77, 0.08);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #b8244d;
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

/* ——— Mobile Menu ——— */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 250, 247, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 36, 77, 0.08);
    transition: max-height 0.4s ease;
}

.mobile-menu.active {
    max-height: 400px;
}

.mobile-menu-link {
    padding: 8px 0;
    border-bottom: 1px solid rgba(184, 36, 77, 0.06);
    transition: color 0.2s ease;
}

.mobile-menu-link:hover {
    color: #b8244d;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.menu-btn:hover {
    background: rgba(184, 36, 77, 0.06);
}

.menu-line {
    transition: all 0.3s ease;
}

.menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
}

.menu-btn.active .menu-line:nth-child(3) {
    width: 24px;
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ——— Hero Split ——— */
.hero-split {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFFAF7 0%, #FFF0EC 50%, #FDE8E0 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-split::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 36, 77, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-split::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 160, 126, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.hero-image-container {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(184, 36, 77, 0.15);
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hero-image-wrapper:hover .hero-img {
    transform: scale(1.03);
}

.hero-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    z-index: -1;
    opacity: 0.6;
}

.hero-stats {
    border-left: 1px solid rgba(184, 36, 77, 0.12);
    padding-left: 24px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    animation: float 3s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #9a1a3f, transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line span {
    position: absolute;
    top: -10px;
    left: -1px;
    width: 3px;
    height: 10px;
    background: #9a1a3f;
    border-radius: 2px;
    animation: scroll-down 2s ease-in-out infinite;
}

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

@keyframes scroll-down {
    0% { top: -10px; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 40px; opacity: 0; }
}

/* ——— About Section ——— */
.about-image-group {
    position: relative;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(184, 36, 77, 0.12);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-main:hover .about-img {
    transform: scale(1.03);
}

.about-img-float {
    position: absolute;
    bottom: -30px;
    right: -20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(184, 36, 77, 0.18);
    border: 4px solid #ffffff;
}

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

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fdf2f4 0%, #fce7eb 100%);
    padding: 12px 20px;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid rgba(184, 36, 77, 0.1);
}

/* ——— Experience Cards ——— */
.card-experience {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(184, 36, 77, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(184, 36, 77, 0.06);
}

.card-experience:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(184, 36, 77, 0.12);
}

.card-img {
    height: 220px;
    overflow: hidden;
}

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

.card-experience:hover .card-img-inner {
    transform: scale(1.08);
}

.card-body {
    padding: 28px;
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdf2f4 0%, #fce7eb 100%);
    border-radius: 14px;
    color: #9a1a3f;
}

/* ——— Visit Section ——— */
.visit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdf2f4 0%, #fce7eb 100%);
    border-radius: 12px;
    color: #9a1a3f;
    flex-shrink: 0;
}

.hours-card {
    background: linear-gradient(135deg, #fdf2f4 0%, #fff8f6 100%);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(184, 36, 77, 0.08);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(184, 36, 77, 0.08);
}

.hours-row:last-of-type {
    border-bottom: none;
}

.hours-day {
    font-weight: 500;
    color: #9a1a3f;
}

.hours-time {
    color: #7e1835;
    font-weight: 500;
}

.hours-row:first-child .hours-day,
.hours-row:first-child .hours-time {
    color: #b8244d;
    font-weight: 600;
}

.hours-note {
    font-style: italic;
}

/* ——— Testimonials ——— */
.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 30px rgba(184, 36, 77, 0.06);
    border: 1px solid rgba(184, 36, 77, 0.06);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(184, 36, 77, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #7e1835;
    font-style: italic;
}

.testimonial-author {
    padding-top: 16px;
    border-top: 1px solid rgba(184, 36, 77, 0.08);
}

/* ——— Contact Form ——— */
.contact-form {
    background: linear-gradient(135deg, #fdf2f4 0%, #fff8f6 100%);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(184, 36, 77, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #9a1a3f;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(184, 36, 77, 0.15);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #9a1a3f;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: #b8244d;
    opacity: 0.4;
}

.form-input:focus {
    border-color: #b8244d;
    box-shadow: 0 0 0 4px rgba(184, 36, 77, 0.08);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239a1a3f' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 44px;
}

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

.form-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fdf2f4 0%, #fce7eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9a1a3f;
}

/* ——— Footer ——— */
.footer-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: #f9cdd8;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ——— Scroll Reveal ——— */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
}

@media (prefers-reduced-motion: no-preference) {
    .reveal[data-reveal] {
        opacity: 0;
        transform: translateY(24px);
    }
    
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal[data-reveal],
    .reveal.visible {
        opacity: 1;
        transform: none;
    }
}

/* ——— Responsive ——— */
@media (max-width: 1023px) {
    .hero-split {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 560px;
        margin: 0 auto;
    }
    
    .hero-image-container {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .hero-stats {
        justify-content: center;
        border-left: none;
        border-top: 1px solid rgba(184, 36, 77, 0.12);
        padding-left: 0;
        padding-top: 24px;
    }
    
    .about-img-float {
        right: 0;
        bottom: -20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 639px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .hero-stats > div:not(:last-child) {
        border-bottom: none;
    }
    
    .hours-card {
        padding: 28px;
    }
    
    .contact-form {
        padding: 28px;
    }
    
    .testimonial-card {
        padding: 28px;
    }
}
