/* Import Fresh Skin Brand Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Additional Brand Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CSS Variables for Fresh Skin Brand Guidelines */
:root {
    --primary-color: #730a04;        /* red */
    --secondary-color: #e6e2df;      /* stone */
    --accent-color: #730a04;         /* red */
    --text-dark: #000000;            /* black */
    --text-light: #cabfb4;           /* taupe */
    --background-light: #f7f5f4;     /* bone */
    --background-stone: #e6e2df;     /* stone */
    --border-color: #cabfb4;         /* taupe */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Global Styles - Fresh Skin Brand */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(115, 10, 4, 0.8) 0%, rgba(115, 10, 4, 0.6) 100%), url('https://www.freshskin.com.au/wp-content/uploads/2025/01/hifu-ultraformer-iii-HIFU-treatment-Perth-1024x800.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    padding-top: 60px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(115, 10, 4, 0.3);
    z-index: 1;
}

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

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-price {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.hero-form {
    max-width: 600px;
    margin-top: 0.5rem !important;
    margin-bottom: 4rem !important;
}

.hero-form .d-flex {
    gap: 1rem;
}

.hero-form .form-control-lg {
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
}

.hero-form .btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    white-space: nowrap;
}

.hero-image {
    text-align: center;
}

.hero-icon {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
}

.hero-image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.hero-image-placeholder p {
    font-size: 1.25rem;
    margin: 0;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-lg {
    font-size: 1.1rem;
    padding: 15px 35px;
}

/* Benefits Cards */
.benefit-card {
    text-align: center;
    padding: 2rem 1rem;
    height: 100%;
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h5 {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

/* Treatment Areas */
.treatment-area-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid var(--primary-color);
}

.treatment-area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.treatment-area-card h5 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Booking Treatment Cards */
.booking-grid {
    margin-top: 2rem;
}

.treatment-booking-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
}

.treatment-booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.treatment-booking-card.popular-treatment {
    border: 2px solid var(--primary-color);
    background: linear-gradient(145deg, #ffffff, var(--background-light));
}

.treatment-booking-card.premium-treatment {
    border: 2px solid var(--accent-color);
    background: linear-gradient(145deg, #ffffff, #faf9f7);
}

.popular-badge, .premium-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.premium-badge {
    background: var(--accent-color);
}

.treatment-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.treatment-header h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    line-height: 1.3;
}

.price-display {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
}

.treatment-details {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.treatment-details p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: center;
}

.btn-book-treatment {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-book-treatment:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(115, 10, 4, 0.3);
}

.package-note {
    margin-top: 3rem;
}

.package-info {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 12px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    border-left: 4px solid var(--primary-color);
}

@media (max-width: 768px) {
    .treatment-booking-card {
        padding: 1.5rem;
    }
    
    .treatment-header h4 {
        font-size: 1.1rem;
    }
    
    .price-display {
        font-size: 1.75rem;
    }
    
    .btn-book-treatment {
        padding: 0.875rem 1rem;
    }
}

/* Issues List */
.issues-list .row {
    margin-left: -2px;
    margin-right: -2px;
}

.issues-list .row > [class*="col-"] {
    padding-left: 2px;
    padding-right: 2px;
}

.issue-item {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .issues-list .row {
        margin-left: 0px;
        margin-right: 0px;
    }
    
    .issues-list .row > [class*="col-"] {
        padding-left: 1px;
        padding-right: 1px;
    }
    
    .issue-item {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
}

/* Procedure Details */
.procedure-info {
    font-size: 1.1rem;
    line-height: 1.8;
}

.detail-item {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

/* Gift Voucher Section */
.gift-voucher-section {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-color));
    padding: 60px 0;
    color: white;
}

.gift-voucher-card {
    text-align: center;
}

.gift-voucher-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Pricing Table */
.pricing-table {
    background: var(--background-light);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    transition: var(--transition);
}


.pricing-item:hover {
    background-color: var(--background-stone);
}

/* Pricing Links */
.pricing-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    transition: var(--transition);
}

.pricing-link:hover {
    text-decoration: none;
    color: inherit;
    background-color: var(--background-stone);
}

.pricing-link:hover .pricing-name {
    color: var(--primary-color);
}

.pricing-link:hover .pricing-price {
    color: var(--primary-color);
    font-weight: 700;
}


.pricing-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
}

.pricing-price {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.pricing-note {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 8px;
    font-style: italic;
}

/* FAQ Section */
.accordion-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Testimonials */
.rating-stars {
    font-size: 1.5rem;
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.rating-text {
    font-size: 1.1rem;
    color: var(--text-light);
}

.testimonial-card {
    background: var(--background-light);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-author .stars {
    color: #ffc107;
}

/* About Section */
.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.services-list li:last-child {
    border-bottom: none;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Final CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    padding: 80px 0;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Responsive Design */
/* Mobile Floating Button */
.mobile-floating-btn {
    display: none;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-section {
        padding-top: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-form .btn-lg {
        width: 100%;
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-form {
        margin-bottom: 3rem !important;
    }
    
    /* Hide desktop book button and show floating button on mobile */
    .desktop-book-btn {
        display: none;
    }
    
    .mobile-floating-btn {
        display: block;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(115, 10, 4, 0.3);
        border-radius: 50px;
    }
    
    .mobile-floating-btn .btn {
        border-radius: 50px;
        padding: 15px 30px;
        font-weight: 600;
        background-color: var(--primary-color);
        border: none;
        box-shadow: 0 4px 15px rgba(115, 10, 4, 0.4);
        animation: floating-pulse 3s ease-in-out infinite;
    }
    
    .mobile-floating-btn .btn:hover {
        background-color: var(--primary-color);
        transform: translateY(-2px);
    }
}

@keyframes floating-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(115, 10, 4, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(115, 10, 4, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(115, 10, 4, 0.4);
    }
}
    
    .pricing-item {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-price {
        margin-top: 0.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author .stars {
        margin-top: 0.5rem;
    }
}

/* Form Styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-image {
    animation: fadeInUp 0.8s ease-out;
}

/* Treatment Image in Hero */
.treatment-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

.treatment-image img:hover {
    transform: scale(1.02);
}

/* Video Container Section */
.video-container-section {
    max-width: 540px;
    margin: 0 auto;
}

.video-container-section .instagram-media {
    margin: 0 auto !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
}

/* Legacy Video Container (if used elsewhere) */
.video-container {
    max-width: 400px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.video-container .instagram-media {
    margin: 0 !important;
    border-radius: 15px !important;
}

/* Header Styling */
.navbar {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    transition: var(--transition);
    height: 50px;
    max-width: 250px;
    object-fit: contain;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-brand span {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Map Container */
.map-container {
    box-shadow: var(--shadow);
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 15px;
}

/* Offer Banner */
.offer-banner {
    background: rgba(115, 10, 4, 0.05);
    border: 1px solid rgba(115, 10, 4, 0.1);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin: 0.25rem 0;
    backdrop-filter: blur(10px);
}

.offer-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 1rem;
}

.offer-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    flex: 1;
}

.offer-code {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.countdown-timer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.countdown-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 400;
}

.countdown-display {
    display: flex;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.countdown-display span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    min-width: 35px;
    text-align: center;
    backdrop-filter: blur(5px);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .offer-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .offer-text {
        font-size: 0.85rem;
    }
    
    .countdown-timer {
        align-items: center;
    }
    
    .countdown-display {
        font-size: 0.8rem;
        gap: 0.4rem;
    }
    
    .countdown-display span {
        min-width: 30px;
        padding: 0.2rem 0.4rem;
        font-size: 0.75rem;
    }
}

/* Before After Results */
.results-showcase {
    max-width: 500px;
    margin: 0 auto;
}

.before-after-container {
    position: relative;
    display: inline-block;
}

.before-after-container img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}

.results-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 12px rgba(115, 10, 4, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.results-text h5 {
    font-weight: 600;
}

.results-text p {
    color: #6c757d;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .results-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        top: 10px;
        right: 10px;
    }
}

/* Email Input Button Animations */
.btn-excited {
    background: linear-gradient(45deg, #730a04, var(--primary-color), #730a04) !important;
    background-size: 200% 200% !important;
    animation: btn-glow 2s ease-in-out infinite !important;
    box-shadow: 0 0 20px rgba(115, 10, 4, 0.6) !important;
    transform: scale(1.05) !important;
    border: none !important;
}

.btn-shake {
    animation: btn-shake 0.6s ease-in-out !important;
}

@keyframes btn-glow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes btn-shake {
    0%, 20%, 40%, 60%, 80% {
        transform: scale(1.05) translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: scale(1.05) translateX(-3px);
    }
    15%, 35%, 55%, 75%, 85% {
        transform: scale(1.05) translateX(3px);
    }
}

/* Booking Steps Section */
.booking-steps {
    margin-bottom: 2rem;
}

.booking-step {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.booking-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h5 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
    color: #333;
}

/* Booking Video */
.booking-video h4 {
    color: var(--primary-color);
    font-weight: 600;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.booking-process-video {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .booking-step {
        margin-bottom: 1rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-content h5 {
        font-size: 0.9rem;
    }
    
    .video-container {
        margin: 0 1rem;
    }
}

/* Pricing Instruction */
.pricing-instruction {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(115, 10, 4, 0.3);
    animation: gentle-pulse 3s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(115, 10, 4, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(115, 10, 4, 0.4);
    }
}

/* Pricing Item Hover Effects */
.pricing-link {
    position: relative;
    overflow: hidden;
}

.pricing-book-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(115, 10, 4, 0.4);
}

.pricing-link:hover {
    background-color: rgba(115, 10, 4, 0.95) !important;
    color: white !important;
}

.pricing-link:hover .pricing-name,
.pricing-link:hover .pricing-price {
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.pricing-link:hover .pricing-book-text {
    opacity: 1;
    visibility: visible;
}

.pricing-link:hover .pricing-name a {
    color: white !important;
}

/* Treatment Links */
.treatment-area-card h5 a:hover {
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}

.pricing-name a:hover {
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}

.issue-item a:hover {
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}

/* Questions Section */
.questions-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.questions-section .section-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.questions-section .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.questions-buttons {
    margin-top: 2rem;
}

.questions-buttons .btn {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid white;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.questions-buttons .btn:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Show/Hide buttons based on device */
.mobile-call-btn {
    display: none;
}

.desktop-contact-btn {
    display: inline-block;
}

@media (max-width: 768px) {
    .mobile-call-btn {
        display: inline-block;
    }
    
    .desktop-contact-btn {
        display: none;
    }
    
    .questions-section {
        padding: 3rem 0;
    }
    
    .questions-section .section-title {
        font-size: 2rem;
    }
}

/* Footer */
.footer-section {
    background-color: var(--background-stone);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 0;
}

.footer-content {
    max-width: 400px;
    margin: 0 auto;
}

.footer-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-address {
    color: #6c757d;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-phone {
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-website {
    margin-bottom: 0;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
