/* Contact Page Styles */

/* Hero Section */
.ss-contact-hero {
    background: linear-gradient(135deg, #1A237E 0%, #44366A 60%, #00796B 100%);
    padding: 160px 20px 80px 20px;
    text-align: center;
    color: #fff;
    position: relative;
}

.ss-contact-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom right, transparent 49%, #f5f7fa 50%);
}

.ss-contact-hero-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ss-contact-hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    backdrop-filter: blur(10px);
}

.ss-contact-hero-icon svg {
    width: 40px;
    height: 40px;
    stroke: #FFD700;
}

.ss-contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #fff;
}

.ss-contact-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

/* Contact Cards Section */
.ss-contact-cards-section {
    background: #f5f7fa;
    padding: 60px 20px 80px 20px;
}

.ss-contact-cards-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.ss-contact-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1A237E;
    text-align: center;
    margin: 0 0 40px 0;
}

.ss-contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ss-contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(26, 35, 126, 0.08);
    border-left: 4px solid #00796B;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ss-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(26, 35, 126, 0.12);
}

.ss-contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00796B 0%, #009688 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
}

.ss-contact-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}

.ss-contact-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1A237E;
    margin: 0 0 12px 0;
}

.ss-contact-card p {
    font-size: 1rem;
    color: #4b5563;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.ss-contact-card a {
    color: #00796B;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ss-contact-card a:hover {
    color: #1A237E;
    text-decoration: underline;
}

.ss-contact-note {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Schedule Card Special Styling */
.ss-contact-card-schedule {
    border-left-color: #FFD700;
}

.ss-contact-card-schedule .ss-contact-card-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
}

.ss-contact-card-schedule .ss-contact-card-icon svg {
    stroke: #1A237E;
}

.ss-contact-schedule-text {
    color: #00796B;
    font-weight: 600;
    margin-bottom: 16px !important;
}

#square-appointments-widget {
    min-width: 200px;
    width: 100%;
    margin: 0 auto;
}

/* Compass Introduction Section */
.ss-compass-intro-section {
    background: linear-gradient(165deg, #1A237E 0%, #44366A 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.ss-compass-intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.ss-compass-intro-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ss-compass-intro-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.ss-compass-intro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
}

.ss-compass-intro-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px 0;
    line-height: 1.6;
}

/* Compass Features */
.ss-compass-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.ss-compass-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.08);
    padding: 18px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.ss-compass-feature:hover {
    background: rgba(255, 255, 255, 0.12);
}

.ss-compass-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-compass-feature-icon svg {
    width: 22px;
    height: 22px;
    stroke: #1A237E;
}

.ss-compass-feature h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px 0;
}

.ss-compass-feature p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

/* Compass CTA */
.ss-compass-intro-cta {
    margin-top: 24px;
}

.ss-compass-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #1A237E;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.ss-compass-btn-primary svg {
    width: 22px;
    height: 22px;
    stroke: #1A237E;
}

.ss-compass-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFC107 0%, #FFD700 100%);
}

.ss-compass-intro-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 16px 0 0 0;
}

/* Compass Visual */
.ss-compass-intro-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-compass-logo-container {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ss-compass-logo-container img {
    max-width: 180px;
    max-height: 180px;
    object-fit: contain;
}

.ss-compass-logo-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ss-compass-logo-fallback svg {
    width: 100px;
    height: 100px;
    stroke: #FFD700;
}

.ss-compass-logo-fallback span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .ss-compass-intro-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ss-compass-intro-visual {
        order: -1;
        margin-bottom: 20px;
    }
    
    .ss-compass-logo-container {
        width: 180px;
        height: 180px;
    }
    
    .ss-compass-logo-container img,
    .ss-compass-logo-fallback svg {
        max-width: 120px;
        max-height: 120px;
        width: 80px;
        height: 80px;
    }
    
    .ss-compass-features {
        justify-content: center;
    }
    
    .ss-compass-feature {
        text-align: left;
    }
}

@media (max-width: 900px) {
    .ss-contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ss-compass-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .ss-contact-hero {
        padding: 80px 20px 60px 20px;
    }
    
    .ss-contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .ss-contact-hero p {
        font-size: 1.1rem;
    }
    
    .ss-contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
        grid-template-columns: 1fr;
    }
    
    .ss-contact-card {
        padding: 24px 20px;
    }
    
    .ss-compass-intro-section {
        padding: 60px 20px;
    }
    
    .ss-compass-intro-content h2 {
        font-size: 1.8rem;
    }
    
    .ss-compass-intro-tagline {
        font-size: 1.05rem;
    }
    
    .ss-compass-btn-primary {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* Coming Soon Badge */
.ss-booking-coming-soon {
    text-align: center;
    padding: 16px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    margin-top: 8px;
}

.ss-coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #1A237E;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.ss-booking-coming-soon p {
    color: #1A237E;
    font-weight: 600;
    margin: 8px 0 0 0 !important;
}

/* Compass Logo Container - Updated for image icon */
.ss-compass-logo-container {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ss-compass-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Compass Section - Rounded corners and padding */
.ss-compass-intro-section {
    margin: 40px 20px 40px 20px;
    border-radius: 24px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 600px) {
    .ss-compass-intro-section {
        margin: 20px 10px;
        border-radius: 16px;
    }
}

/* Compass Secondary Button */
.ss-compass-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 12px;
}

.ss-compass-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

@media (max-width: 600px) {
    .ss-compass-intro-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .ss-compass-btn-secondary {
        margin-left: 0;
    }
}

/* Compass Coming Soon Modal */
.ss-compass-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 126, 0.9);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.ss-compass-modal.active {
    display: flex;
}

.ss-compass-modal-content {
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ss-compass-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #9ca3af;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.ss-compass-modal-close:hover {
    color: #1A237E;
}

.ss-compass-modal-logo {
    background: none;
    width: 120px;
    height: 120px;
    margin: 0 auto 24px auto;
    background: none;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-compass-modal-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ss-compass-modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #1A237E;
    margin: 0 0 12px 0;
}

.ss-compass-modal-content p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 28px 0;
}

.ss-compass-modal-btn {
    background: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 36px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ss-compass-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 35, 126, 0.3);
}

/* Compass Coming Soon Modal */
.ss-compass-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 126, 0.9);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.ss-compass-modal.active {
    display: flex;
}

.ss-compass-modal-content {
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ss-compass-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #9ca3af;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.ss-compass-modal-close:hover {
    color: #1A237E;
}

.ss-compass-modal-logo {
    background: none;
    width: 120px;
    height: 120px;
    margin: 0 auto 24px auto;
    background: none;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-compass-modal-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ss-compass-modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #1A237E;
    margin: 0 0 12px 0;
}

.ss-compass-modal-content p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 28px 0;
}

.ss-compass-modal-btn {
    background: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 36px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ss-compass-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 35, 126, 0.3);
}
