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

/* ================================
   EMBEDDING OPTIMIZATIONS
   ================================ */

/* Embed container wrapper for iframe compatibility */
.embed-container { 
    width: 100%; 
    min-height: 100vh; 
    overflow-x: hidden;
    padding-bottom: 120px;
}

/* Mobile spacing adjustments for embedded context */
@media (max-width: 991px) {
    .embed-container .clinic-location.d-lg-none {
        margin-top: 30px !important;
        margin-bottom: 10px !important;
        padding-top: 5px !important;
    }
    
    .embed-container .section-padding {
        padding: 40px 0;
    }
    
    .embed-container .hero-section {
        padding-bottom: 100px !important;
    }
}

/* Video container mobile optimization for embeds */
.embed-container .video-container-section {
    padding: 0 15px;
    max-width: 100%;
}

.embed-container .video-container-section .instagram-media {
    max-width: 100% !important;
    min-width: 280px !important;
}

/* Ensure external links open in new tab/window in embedded context */
.embed-container a[href^="http"]:not([href*="sylfirm-x-perth.replit.app"]) {
    target: "_blank";
}

/* Prevent horizontal scrolling in embedded iframe */
.embed-container {
    overflow-x: hidden;
}

/* Iframe-specific body styles when embedded */
body.embedded {
    margin: 0; 
    padding: 0; 
    overflow-x: hidden;
}

/* ================================
   LOCATION INFORMATION COMPONENT
   ================================ */

/* Main container styling */
.clinic-location {
    background: rgba(0, 123, 255, 0.05);          /* Light blue background */
    border: 1px solid rgba(0, 123, 255, 0.15);   /* Light blue border */
    border-radius: 8px;                           /* Rounded corners */
    padding: 12px 16px;                          /* Internal spacing */
}

/* Inner content layout */
.location-info {
    display: flex;                               /* Horizontal layout */
    align-items: center;                         /* Vertical center alignment */
    flex-wrap: wrap;                            /* Wrap on small screens */
    gap: 8px;                                   /* Space between elements */
    font-size: 14px;                           /* Base font size */
    color: black;                               /* Text color */
}

/* Address text styling */
.location-text {
    flex: 1;                                    /* Take available space */
    min-width: 200px;                          /* Minimum width before wrap */
}

/* "View Map" link styling */
.location-info a {
    font-size: 13px;                           /* Slightly smaller than address */
    font-weight: 500;                          /* Medium weight */
    color: black !important;                   /* Black text (not blue) */
    transition: all 0.2s ease;                 /* Smooth hover transition */
}

.location-info a:hover {
    text-decoration: underline !important;      /* Underline on hover */
    color: rgba(0, 0, 0, 0.8) !important;     /* Slightly faded on hover */
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .location-info {
        font-size: 13px;                       /* Smaller text on mobile */
    }
    
    .clinic-location {
        padding: 10px 12px;                    /* Less padding on mobile */
    }
}

/* Mobile spacing adjustments */
@media (max-width: 991px) {
    .clinic-location.d-lg-none {
        margin-top: 20px !important;           /* Space above on mobile */
        margin-bottom: 50px !important;        /* Space below on mobile */
    }
}

/* ================================
   HERO BOOK BUTTON ENHANCEMENT
   ================================ */

/* Enhanced hero book button - More specific selector to override btn-primary */
a.hero-book-btn.btn-primary {
    width: 240px !important;                    /* Twice as wide */
    min-width: 240px !important;               /* Minimum width */
    position: relative;
    overflow: hidden;
    border: none !important;
    box-shadow: 0 8px 20px rgba(115, 10, 4, 0.3) !important;
    
    /* Beautiful reflective gradient */
    background: linear-gradient(
        135deg,
        #730a04 0%,           /* Primary red base */
        #8b1a10 15%,          /* Slightly lighter red */
        #730a04 30%,          /* Back to primary */
        #a52a20 45%,          /* Highlight for reflection */
        #730a04 60%,          /* Primary again */
        #5a0803 75%,          /* Darker for depth */
        #730a04 100%          /* End with primary */
    ) !important;
    
    background-size: 200% 200% !important;
    background-position: 0% 50% !important;
    
    /* Enhanced typography */
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    font-size: 1.1rem !important;
    
    /* Smooth transitions */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* Reflective shine overlay */
a.hero-book-btn.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 30%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 70%,
        transparent 100%
    );
    transition: left 0.6s ease-in-out;
}

/* Hover effects */
a.hero-book-btn.btn-primary:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(115, 10, 4, 0.4) !important;
    background-position: 100% 50% !important;
    
    /* Animated gradient shift */
    background: linear-gradient(
        135deg,
        #8b1a10 0%,
        #a52a20 15%,
        #8b1a10 30%,
        #d44430 45%,          /* Brighter highlight on hover */
        #8b1a10 60%,
        #730a04 75%,
        #8b1a10 100%
    ) !important;
}

/* Shine effect on hover */
a.hero-book-btn.btn-primary:hover::before {
    left: 100%;
}

/* Active/pressed state */
a.hero-book-btn.btn-primary:active {
    transform: translateY(-1px) scale(1.02) !important;
    box-shadow: 0 8px 20px rgba(115, 10, 4, 0.5) !important;
}

/* Focus state for accessibility */
a.hero-book-btn.btn-primary:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(115, 10, 4, 0.3), 0 8px 20px rgba(115, 10, 4, 0.3) !important;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    a.hero-book-btn.btn-primary {
        width: 200px !important;               /* Slightly smaller on mobile */
        min-width: 200px !important;
        font-size: 1rem !important;
    }
}

/* Pulse animation for extra attention */
@keyframes heroPulse {
    0% { box-shadow: 0 8px 20px rgba(115, 10, 4, 0.3); }
    50% { box-shadow: 0 8px 25px rgba(115, 10, 4, 0.4); }
    100% { box-shadow: 0 8px 20px rgba(115, 10, 4, 0.3); }
}

a.hero-book-btn.btn-primary {
    animation: heroPulse 3s ease-in-out infinite;
}

/* ================================
   SERVICES SECTION
   ================================ */

/* Special Offer Banner */
.special-offer-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8b1a10 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(115, 10, 4, 0.3);
}

.special-offer-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: scale(0.8) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.1; }
}

.offer-badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.special-offer-banner h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.offer-details {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.special-offer-banner .btn {
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Service Category Titles */
.category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-header {
    background: linear-gradient(135deg, var(--background-stone) 0%, #f0ebe8 100%);
    padding: 1.5rem;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-duration {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.service-description {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.service-description p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.service-footer {
    padding: 1.5rem;
    padding-top: 0;
}

.service-footer .btn {
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(115, 10, 4, 0.3);
}

/* Mobile responsive adjustments for services */
@media (max-width: 768px) {
    .special-offer-banner {
        padding: 1.5rem;
    }
    
    .special-offer-banner h4 {
        font-size: 1.5rem;
    }
    
    .offer-details {
        font-size: 1rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .service-price {
        font-size: 1.5rem;
    }
}

/* 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;        /* Primary Red: Deep burgundy red */
    --secondary-color: #e6e2df;      /* Secondary Stone: Light warm stone */
    --accent-color: #730a04;         /* Accent Red: Same as primary for consistency */
    --text-dark: #000000;            /* Text Dark: Pure black for headings */
    --text-light: #cabfb4;           /* Text Light: Warm taupe for secondary text */
    --text-muted: #cabfb4;           /* Text Muted: Same as light for consistency */
    --background-light: #f7f5f4;     /* Background Light: Warm bone white */
    --background-stone: #e6e2df;     /* Background Stone: Stone background for sections */
    --border-color: #cabfb4;         /* Border Color: Taupe for subtle borders */
    --success-color: #28a745;        /* Success Green: Bootstrap success color */
    --star-rating: #ffc107;          /* Star Rating: Golden yellow */
    --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(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%), url('https://www.freshskin.com.au/wp-content/uploads/2025/01/Sylfirm-X-Treatment-Perth-Fresh-Skin-Clinic-Perth-1-1024x570.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    padding: 40px 0 60px 0;
}

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

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

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 20px 0;
}

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

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.4;
}

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

.hero-form {
    max-width: 500px;
    margin-top: 1rem !important;
    margin-bottom: 2rem !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: 1.5rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(115, 10, 4, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.issue-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(115, 10, 4, 0.12);
    border-color: rgba(115, 10, 4, 0.15);
}

.issue-item h6 {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.issue-item h6 i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(115, 10, 4, 0.1);
    border-radius: 50%;
    margin-right: 12px;
    font-size: 0.9rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.issue-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@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: 1rem;
        padding: 1.25rem 0.875rem;
    }
    
    .issue-item h6 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .issue-item h6 i {
        width: 18px;
        height: 18px;
        margin-right: 10px;
        font-size: 0.8rem;
    }
}

/* 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;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
}

/* 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: 30px 0 40px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-content {
        padding: 10px 0;
    }
    
    .hero-form {
        margin-top: 0.75rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .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;
}


/* 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;
    }
}

/* Interactive Booking Section */
.booking-services .service-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.booking-services .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(115, 10, 4, 0.15);
    border-color: rgba(115, 10, 4, 0.2);
}

.service-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.promo-badge {
    position: absolute;
    top: -15px;
    right: -10px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.service-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.3;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.service-description {
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-description p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.booking-services .btn {
    border-radius: 10px;
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.booking-services .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(115, 10, 4, 0.3);
}

.booking-note .note-card {
    background: rgba(115, 10, 4, 0.05);
    border: 1px solid rgba(115, 10, 4, 0.1);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.booking-note h5 {
    color: var(--primary-color);
    font-weight: 600;
}

.booking-note li {
    color: #555;
    font-size: 0.95rem;
}

/* Responsive adjustments for booking section */
@media (max-width: 768px) {
    .booking-services .service-card {
        padding: 25px 20px;
    }
    
    .service-price {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .promo-badge {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
    
    .booking-note .note-card {
        padding: 20px;
    }
}

/* 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;
}

/* Medical Disclaimers */
.medical-disclaimers {
    padding: 1rem;
    margin-bottom: 1rem;
}

.medical-disclaimers p {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    line-height: 1.3;
    font-size: 0.75rem;
    opacity: 0.8;
}

.medical-disclaimers p:last-child {
    margin-bottom: 0;
}

/* Canvas Marketing Solutions Credit */
.canvas-credit {
    margin-bottom: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.7rem;
    opacity: 0.6;
    color: var(--text-muted);
}

.canvas-credit a {
    color: var(--text-muted);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.canvas-credit a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.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);
}
