/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Respect user preferences for reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    /* Disable shop animations for reduced motion */
    .shop-star,
    .shop-icon,
    .shop-gradient-bg,
    .shop-coming-soon {
        animation: none !important;
    }
    
    .shop-star {
        opacity: 0.3 !important;
    }
    
    .shop-message-line {
        animation: fadeInUp 0.3s ease forwards !important;
    }
}

:root {
    --primary-color: #FFC125;
    --secondary-color: #DAA520;
    --accent-color: #f5e6d3;
    --dark-color: #2c2416;
    --light-color: #faf8f5;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #FFC125 0%, #DAA520 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-brand:hover,
.nav-brand:focus {
    text-decoration: none;
    color: var(--primary-color);
}

.nav-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

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

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    display: block;
    border-radius: 2px;
}

/* Hamburger to X animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0.85;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 900px;
    padding: 2rem 2rem;
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.hero-logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    z-index: 0;
}

.hero-logo {
    max-width: 200px;
    height: auto;
    opacity: 0.15;
    filter: blur(2px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-tagline {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-style: italic;
    opacity: 0.95;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-description {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-call {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-divider {
    font-size: 1.5rem;
    margin: 1.5rem 0;
    opacity: 0.5;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--white);
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.hero-decoration {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(40px);
}

/* Section Styles */
section {
    padding: 3rem 0;
    scroll-margin-top: 120px; /* Account for fixed navbar */
}

/* Extra top padding for sections (except hero) to account for fixed navbar */
section:not(#home) {
    padding-top: 5.5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 1rem;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.section-title-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    vertical-align: middle;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

/* Services Section */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: var(--light-color);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    flex-direction: column;
}

/* Service Header for Mobile Accordion */
.service-header-mobile {
    display: none; /* Hidden on desktop, shown on mobile */
}

.service-content {
    display: block;
}

.service-toggle {
    display: none; /* Hidden on desktop, shown on mobile */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon .material-icons {
    font-size: 3rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    text-align: center;
    line-height: 1.3;
}

/* Desktop: Keep original structure visible */
.service-card .service-icon:first-of-type {
    margin-bottom: 1rem;
}

.service-card > h3:first-of-type {
    margin-top: 0;
}

/* Ensure service-content is visible on desktop */
@media (min-width: 769px) {
    .service-header-mobile {
        display: none !important;
    }
    
    .service-content {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        padding: 0 !important;
    }
    
    .service-card {
        padding: 2rem 1.5rem !important;
    }
    
    /* Show original icon and h3 on desktop */
    .service-card > .service-icon:first-of-type {
        display: flex !important;
    }
    
    .service-card > h3:first-of-type {
        display: block !important;
    }
}

.service-card > p:first-of-type {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: center;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    text-align: left;
    margin: 1rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-subtitle {
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-size: 1rem;
}

.service-note {
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-top: 0.75rem;
    border-top: 1px solid var(--accent-color);
}

.service-divider {
    margin: 1.5rem 0 0.75rem 0;
    text-align: center;
    opacity: 0.3;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* About Section */
.about {
    background: var(--gradient);
    background-image: url('../images/banner2.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0.85;
    z-index: 0;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.2;
    z-index: 1;
}

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

.about .section-title {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about .section-title-icon {
    color: var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* About Hero Card */
.about-hero-card {
    background: var(--light-color);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    border-top: 4px solid var(--primary-color);
}

.about-profile-container {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-profile-image {
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-profile-image::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    z-index: 0;
}

.profile-logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 193, 37, 0.25);
    background: var(--white);
    padding: 12px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 0 auto;
}

.profile-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 193, 37, 0.35);
}

.about-hero-text {
    flex: 1;
}

.about-hero-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.about-hero-tagline {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.about-hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 400px));
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.about-card {
    background: var(--light-color);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.about-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card-icon .material-icons {
    font-size: 3rem;
    color: var(--primary-color);
}

.about-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    color: var(--dark-color);
    text-align: center;
    line-height: 1.3;
    font-weight: 600;
}

.about-card-content {
    flex: 1;
}

.about-card-content p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.about-card-content p:last-child {
    margin-bottom: 0;
}

.about-intro-text {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.about-emphasis-text {
    font-size: 1.2rem;
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    margin: 2rem 0;
    width: 100%;
}

.about-elements-section,
.about-outcomes-section {
    margin: 2rem 0;
}

.about-elements-section:first-of-type {
    margin-top: 0;
}

.about-section-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.about-section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-elements-list,
.about-outcomes-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.element-item,
.outcome-item {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: 0.3px;
    position: relative;
}

.element-item::after,
.outcome-item::after {
    content: '•';
    position: absolute;
    right: -0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    transform: translateX(50%);
    opacity: 0.7;
}

.element-item:last-child::after,
.outcome-item:last-child::after {
    display: none;
}

.about-card-content em {
    color: var(--primary-color);
    font-style: italic;
    font-weight: 600;
}

/* Featured Card */
.about-card-featured {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
    border: 2px solid var(--primary-color);
}

.about-card-featured:hover {
    box-shadow: 0 12px 35px rgba(255, 193, 37, 0.2);
}

.about-specialties-list {
    list-style: none;
    margin: 1.5rem 0 0 0;
    padding: 0;
}

.about-specialties-list li {
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.7;
    border-bottom: 1px solid var(--accent-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.about-specialties-list li:hover {
    padding-left: 3.5rem;
    color: var(--primary-color);
}

.specialty-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.about-specialties-list li:hover .specialty-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Quote Card */
.about-card-quote {
    text-align: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-color) 100%);
    border: 3px solid var(--primary-color);
}

.about-card-intro,
.about-card-outro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-card-outro {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.about-quote-block {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(255, 193, 37, 0.3);
    position: relative;
    border: none;
}

.about-quote-block::before,
.about-quote-block::after {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Playfair Display', serif;
    position: absolute;
    font-weight: 700;
}

.about-quote-block::before {
    top: 0.5rem;
    left: 1rem;
}

.about-quote-block::after {
    bottom: -1rem;
    right: 1rem;
}

.about-quote-block p {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Pricing Section */
.pricing {
    background: var(--white);
}

.pricing-note {
    background: var(--accent-color);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 1rem;
}

.pricing-tab {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.pricing-tab:hover {
    background: var(--accent-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
}

.pricing-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.pricing-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.pricing-tab-content.active {
    display: block;
}

/* Hide bundles tab and content */
.pricing-tab[data-tab="bundles"],
.pricing-tab-content#bundles {
    display: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pricing Carousel */
.pricing-carousel-wrapper {
    position: relative;
    margin: 2rem 0;
    padding: 0 3rem;
}

.pricing-carousel {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--accent-color);
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 1rem;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    will-change: scroll-position;
}

.pricing-carousel::-webkit-scrollbar {
    height: 8px;
}

.pricing-carousel::-webkit-scrollbar-track {
    background: var(--accent-color);
    border-radius: 10px;
}

.pricing-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.pricing-carousel::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.pricing-carousel .pricing-card {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0.9;
    backdrop-filter: blur(5px);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.carousel-btn:hover {
    background: var(--secondary-color);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn:disabled,
.carousel-btn[aria-disabled="true"] {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-btn:disabled:hover,
.carousel-btn[aria-disabled="true"]:hover {
    transform: translateY(-50%);
    background: var(--primary-color);
}

.carousel-btn-prev {
    left: -10px;
}

.carousel-btn-next {
    right: -10px;
}

@media (max-width: 768px) {
    .pricing-carousel-wrapper {
        padding: 0;
        margin: 1.5rem 0;
        position: relative;
        overflow: visible;
    }
    
    .carousel-btn {
        width: 42px;
        height: 42px;
        opacity: 0.95;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
        display: flex;
        z-index: 20;
        background: var(--white);
        border: 2px solid var(--primary-color);
    }
    
    .carousel-btn .material-icons {
        font-size: 24px;
        color: var(--primary-color);
    }
    
    .carousel-btn:hover,
    .carousel-btn:active {
        background: var(--primary-color);
        transform: translateY(-50%) scale(1.05);
    }
    
    .carousel-btn:hover .material-icons,
    .carousel-btn:active .material-icons {
        color: var(--white);
    }
    
    .carousel-btn-prev {
        left: 0.5rem;
    }
    
    .carousel-btn-next {
        right: 0.5rem;
    }
    
    .carousel-btn:disabled,
    .carousel-btn[aria-disabled="true"] {
        opacity: 0.3;
        background: var(--white);
        border-color: var(--accent-color);
    }
    
    .carousel-btn:disabled .material-icons,
    .carousel-btn[aria-disabled="true"] .material-icons {
        color: var(--accent-color);
    }
    
    .pricing-carousel {
        scroll-padding: 0;
        gap: 0;
        padding: 0.5rem 0;
        margin: 0;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        /* Hide scrollbar on mobile */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .pricing-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .pricing-carousel .pricing-card {
        flex: 0 0 calc(100% - 2rem);
        min-width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        width: calc(100% - 2rem);
        margin: 0 1rem;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        box-sizing: border-box;
    }
    
    /* Carousel Dot Indicators */
    .carousel-indicators {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1rem;
        padding: 0.5rem 0;
    }
    
    .carousel-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--accent-color);
        border: 2px solid var(--accent-color);
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
        margin: 0;
        flex-shrink: 0;
    }
    
    .carousel-indicator.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
        width: 24px;
        border-radius: 4px;
        transform: scale(1.1);
    }
    
    .carousel-indicator:hover {
        background: var(--secondary-color);
        border-color: var(--secondary-color);
    }
}

@media (max-width: 480px) {
    /* About Section - Small Mobile */
    .about-hero-card {
        padding: 1.5rem 1rem;
    }
    
    .profile-logo {
        width: 140px;
        height: 140px;
        padding: 10px;
        margin: 0 auto;
    }
    
    .about-profile-image::before {
        width: 140px;
        height: 140px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1.1);
    }
    
    .about-hero-name {
        font-size: 1.75rem;
    }
    
    .about-hero-tagline {
        font-size: 1rem;
    }
    
    .about-hero-description {
        font-size: 0.95rem;
    }
    
    .about-card {
        padding: 1.25rem 1rem;
    }
    
    .about-card-title {
        font-size: 1.4rem;
    }
    
    .about-card-content p {
        font-size: 1rem;
    }
    
    .about-intro-text {
        font-size: 1rem;
    }
    
    .about-emphasis-text {
        font-size: 1rem;
        padding: 0.875rem 1rem;
        margin: 1.25rem 0;
    }
    
    .about-divider-line {
        margin: 1.5rem 0;
    }
    
    .about-elements-section,
    .about-outcomes-section {
        margin: 1.5rem 0;
    }
    
    .about-section-label {
        font-size: 0.85rem;
        margin-bottom: 0.875rem;
    }
    
    .element-item,
    .outcome-item {
        font-size: 0.95rem;
    }
    
    .about-elements-list,
    .about-outcomes-list {
        gap: 1.25rem;
    }
    
    .element-item::after,
    .outcome-item::after {
        right: -0.625rem;
    }
    
    .about-quote-block {
        padding: 1.25rem;
    }
    
    .about-quote-block p {
        font-size: 1.15rem;
    }
    
    .about-quote-block::before,
    .about-quote-block::after {
        font-size: 2rem;
    }
    
    .about-specialties-list li {
        font-size: 0.95rem;
        padding: 0.75rem 0;
        padding-left: 2rem;
    }
    
    .specialty-icon {
        font-size: 1.2rem;
    }
    
    /* Mobile Carousel - Redesigned for proper fit */
    .pricing-carousel-wrapper {
        padding: 0;
        margin: 1.5rem 0;
        position: relative;
        overflow: visible;
    }
    
    .pricing-carousel {
        scroll-padding: 0;
        gap: 0;
        padding: 0.5rem 0;
        margin: 0;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        /* Hide scrollbar on mobile */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .pricing-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .pricing-carousel .pricing-card {
        flex: 0 0 calc(100% - 2rem);
        min-width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        width: calc(100% - 2rem);
        margin: 0 1rem;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        box-sizing: border-box;
    }
    
    .carousel-btn {
        display: flex !important;
        width: 36px;
        height: 36px;
        opacity: 0.95;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        z-index: 20;
        background: var(--white);
        border: 2px solid var(--primary-color);
    }
    
    .carousel-btn .material-icons {
        font-size: 20px;
        color: var(--primary-color);
    }
    
    .carousel-btn:hover,
    .carousel-btn:active {
        background: var(--primary-color);
        transform: translateY(-50%) scale(1.05);
    }
    
    .carousel-btn:hover .material-icons,
    .carousel-btn:active .material-icons {
        color: var(--white);
    }
    
    .carousel-btn-prev {
        left: 0.5rem;
    }
    
    .carousel-btn-next {
        right: 0.5rem;
    }
    
    .carousel-btn:disabled,
    .carousel-btn[aria-disabled="true"] {
        opacity: 0.3;
        background: var(--white);
        border-color: var(--accent-color);
    }
    
    .carousel-btn:disabled .material-icons,
    .carousel-btn[aria-disabled="true"] .material-icons {
        color: var(--accent-color);
    }
}

.carousel-btn .material-icons {
    font-size: 24px;
}

/* Hide carousel indicators on desktop */
.carousel-indicators {
    display: none;
}

.pricing-category-note {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    padding: 0 1rem;
}

.pricing-footer {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}

@media (max-width: 768px) {
    .pricing-footer {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.pricing-footer > * {
    display: flex;
    flex-direction: column;
}

.pricing-note-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.pricing-note p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.pricing-note p strong {
    color: var(--dark-color);
    font-weight: 600;
}



.pricing-cord-note {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem auto;
    max-width: 800px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pricing-cord-note p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.pricing-cord-note p:last-child {
    margin-bottom: 0;
}

.pricing-cord-note p strong {
    color: var(--dark-color);
    font-weight: 600;
}

.pricing-cord-note p em {
    color: var(--text-light);
    font-style: italic;
}


.pricing-card {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.pricing-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    font-weight: 600;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.pricing-description {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    flex-grow: 1;
}

.pricing-card-bundle {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--light-color) 0%, var(--accent-color) 100%);
}

.pricing-value {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Enhanced Pricing Value Display for Bundles */
.pricing-value-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(255, 193, 37, 0.08) 0%, rgba(218, 165, 32, 0.05) 100%);
    border-radius: 10px;
    border: 1px solid rgba(255, 193, 37, 0.2);
}

.pricing-original {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--text-light);
    font-weight: 500;
    position: relative;
}

.pricing-savings {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(255, 193, 37, 0.3);
    text-transform: uppercase;
}

.pricing-savings-no-discount {
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(218, 165, 32, 0.2) 100%);
    color: var(--text-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-transform: none;
    font-weight: 600;
}

.pricing-important-notes {
    background: var(--accent-color);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.pricing-footer .pricing-important-notes {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.pricing-important-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--dark-color);
    margin: 0 0 1rem 0;
    padding: 0;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
}

.pricing-notes-list {
    list-style: none;
    padding: 0;
    max-width: 100%;
    margin: 0;
    flex-grow: 1;
}

.pricing-notes-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 193, 37, 0.2);
}

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

.pricing-notes-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.payment-info {
    text-align: center;
    background: var(--accent-color);
    padding: 1.5rem;
    border-radius: 15px;
}

.pricing-footer .payment-info {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.payment-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin: 0 0 1rem 0;
    padding: 0;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
}

.payment-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.venmo-link {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 1rem 0;
}

.venmo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.venmo-link .material-icons {
    margin-right: 0.5rem;
    font-size: 1.3rem;
    vertical-align: middle;
}

.payment-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.btn .payment-logo {
    height: 28px;
}

.venmo-link .payment-logo {
    height: 24px;
    margin: 0;
}

.note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

/* Scheduling Section */
.scheduling {
    background: var(--light-color);
}

.scheduling-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.zoho-booking-container {
    margin: 2rem auto;
    max-width: 1000px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: var(--white);
    min-height: 750px;
}

.zoho-booking-container iframe {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
    border-radius: 15px;
}

/* Shop Section */
.shop {
    background: var(--white);
    padding: 5rem 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.shop-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.shop-message-wrapper {
    position: relative;
    z-index: 3;
}

.shop-message {
    font-size: 1.3rem;
    color: var(--text-color);
    line-height: 2;
    font-style: italic;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.shop-message-line {
    display: block;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.shop-message-line:nth-child(1) {
    animation-delay: 0.2s;
}

.shop-message-line:nth-child(2) {
    animation-delay: 0.4s;
}

.shop-coming-soon {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-top: 1rem;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

/* Floating Stars Decoration */
.shop-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.shop-star {
    position: absolute;
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.4;
    animation: floatStar 6s ease-in-out infinite;
}

.shop-star-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    font-size: 1.2rem;
}

.shop-star-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
    font-size: 1.8rem;
}

.shop-star-3 {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
    font-size: 1.4rem;
}

.shop-star-4 {
    top: 60%;
    right: 10%;
    animation-delay: 1.5s;
    font-size: 1.6rem;
}

.shop-star-5 {
    top: 80%;
    left: 20%;
    animation-delay: 0.5s;
    font-size: 1.3rem;
}

.shop-star-6 {
    top: 30%;
    right: 30%;
    animation-delay: 2.5s;
    font-size: 1.5rem;
}

/* Animated Icons */
.shop-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    position: relative;
    z-index: 3;
}

.shop-icon {
    font-size: 3rem;
    color: var(--primary-color);
    animation: rotateFloat 4s ease-in-out infinite;
    opacity: 0.7;
    filter: drop-shadow(0 0 10px rgba(255, 193, 37, 0.3));
}

.shop-icon-1 {
    animation-delay: 0s;
}

.shop-icon-2 {
    animation-delay: 1.3s;
    color: #ff6b9d;
}

.shop-icon-3 {
    animation-delay: 2.6s;
    color: var(--secondary-color);
}

/* Animated Gradient Background */
.shop-gradient-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 193, 37, 0.1) 0%, rgba(218, 165, 32, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    animation: pulseGradient 4s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

/* Animations */
@keyframes floatStar {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translate(20px, -30px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(-15px, -50px) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translate(30px, -20px) rotate(270deg);
        opacity: 0.5;
    }
}

@keyframes rotateFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotate(5deg) scale(1.1);
    }
    50% {
        transform: translateY(-20px) rotate(0deg) scale(1.15);
    }
    75% {
        transform: translateY(-10px) rotate(-5deg) scale(1.05);
    }
}

@keyframes pulseGlow {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
        text-shadow: 0 0 30px rgba(255, 193, 37, 0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        text-shadow: 0 0 20px rgba(255, 193, 37, 0.3);
    }
}

@keyframes pulseGradient {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Philosophy Section */
.philosophy {
    background: var(--accent-color);
    position: relative;
    overflow: hidden;
}

/* Philosophy Statement Card */
.philosophy-statement-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.philosophy-statement {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-family: 'Playfair Display', serif;
}

.philosophy-statement:last-child {
    margin-bottom: 0;
}

/* Philosophy Principles Grid */
.philosophy-principles-grid {
    margin-bottom: 3rem;
}

.philosophy-section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.philosophy-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.philosophy-principle-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.philosophy-principle-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.philosophy-principle-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 193, 37, 0.3);
    transition: transform 0.3s ease;
}

.philosophy-principle-card:hover .philosophy-principle-icon {
    transform: scale(1.1) rotate(5deg);
}

.philosophy-principle-icon .material-icons {
    font-size: 2.5rem;
    color: var(--white);
}

.philosophy-principle-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    letter-spacing: 0.3px;
}

/* Philosophy Core Card */
.philosophy-core-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    text-align: center;
    border: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.philosophy-core-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 37, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.philosophy-core-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-core-icon .material-icons {
    font-size: 3rem;
    color: var(--primary-color);
}

.philosophy-core-quote {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(255, 193, 37, 0.3);
    position: relative;
    border: none;
}

.philosophy-core-quote::before,
.philosophy-core-quote::after {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Playfair Display', serif;
    position: absolute;
    font-weight: 700;
}

.philosophy-core-quote::before {
    top: 0.5rem;
    left: 1rem;
}

.philosophy-core-quote::after {
    bottom: -1rem;
    right: 1rem;
}

.philosophy-core-quote p {
    font-size: 1.6rem;
    font-style: italic;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
}

.philosophy-core-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 1.5rem 0 0 0;
    position: relative;
    z-index: 1;
}

/* Philosophy Approach Card */
.philosophy-approach-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    text-align: center;
    border-left: 5px solid var(--primary-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-approach-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-approach-icon .material-icons {
    font-size: 3rem;
    color: var(--primary-color);
}

.philosophy-approach-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.philosophy-approach-content {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.philosophy-approach-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.philosophy-approach-content p:last-child {
    margin-bottom: 0;
}

/* Philosophy Final Card */
.philosophy-final-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(255, 193, 37, 0.3);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.philosophy-final-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-final-icon .material-icons {
    font-size: 3rem;
    color: var(--white);
}

.philosophy-final-text {
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.6;
    font-family: 'Playfair Display', serif;
}

/* Disclaimer Section */
.disclaimer {
    background: var(--accent-color);
    padding: 3rem 0;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.disclaimer-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--text-color);
}

.disclaimer-text strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.contact-item {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-form-container {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 2rem 0 1rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Mobile Minimal Footer */
.footer-mobile {
    display: none;
    text-align: center;
    margin-bottom: 1rem;
}

.footer-mobile-brand {
    margin-bottom: 0.75rem;
}

.footer-mobile-venmo {
    margin-bottom: 0.75rem;
}

.footer-venmo-mobile {
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

.footer-mobile-links {
    margin-top: 0.5rem;
}

.footer-mobile-link {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.footer-mobile-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.footer-section {
    text-align: left;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    display: block;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-description {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-nav a::before {
    content: '→';
    position: absolute;
    left: -1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.footer-nav a:hover {
    color: var(--primary-color);
    padding-left: 1.2rem;
}

.footer-nav a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact {
    margin-bottom: 1rem;
}

.footer-venmo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 193, 37, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.footer-venmo:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 37, 0.3);
}

.footer-icon {
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.footer-icon.material-icons {
    font-size: 1.3rem;
}

.footer-payment-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    font-style: italic;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 193, 37, 0.3), transparent);
    margin: 1.5rem 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-developer {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.footer-developer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-developer a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.footer-disclaimer-mobile {
    display: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span {
        background: var(--text-color);
    }

    .nav-brand {
        font-size: 1.2rem;
    }

    .nav-logo {
        width: 35px;
        height: 35px;
        object-position: center;
    }

    .hero-logo {
        max-width: 150px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-call {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-title-icon {
        font-size: 2rem;
    }

    /* Disable background-attachment: fixed on mobile for better performance */
    .hero {
        background-attachment: scroll;
    }

    .about {
        background-attachment: scroll;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 0;
        overflow: hidden;
    }
    
    /* Mobile: Show accordion header */
    .service-header-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem;
        cursor: pointer;
        background: var(--light-color);
        border-radius: 15px;
        transition: all 0.3s ease;
        border: none;
        gap: 1rem;
        position: relative;
        z-index: 1;
    }
    
    .service-header-mobile:hover {
        background: var(--white);
    }
    
    .service-header-mobile:focus {
        outline: none;
        border: none;
    }
    
    .service-card.active .service-header-mobile {
        border: none;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        background: var(--light-color);
    }
    
    .service-card.active .service-header-mobile:hover {
        background: var(--light-color);
    }
    
    .service-header-mobile:active {
        transform: scale(0.98);
    }
    
    .service-header-mobile .service-icon {
        margin-bottom: 0;
        flex-shrink: 0;
        font-size: 2rem;
    }
    
    .service-header-mobile .service-icon .material-icons {
        font-size: 2rem;
    }
    
    .service-header-mobile h3 {
        flex: 1;
        margin: 0;
        text-align: left;
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .service-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        color: var(--primary-color);
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 50%;
        transition: all 0.3s ease;
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .service-toggle:hover {
        background: var(--accent-color);
    }
    
    .service-toggle:focus {
        outline: none;
        border: none;
    }
    
    .service-toggle:active {
        transform: scale(0.9);
    }
    
    .service-toggle:focus-visible {
        outline: 2px solid var(--text-light);
        outline-offset: 2px;
    }
    
    .service-toggle .material-icons {
        font-size: 28px;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .service-card.active .service-toggle .material-icons {
        transform: rotate(180deg);
    }
    
    /* Mobile: Hide content by default, show when active */
    .service-content {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                    padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0 1.5rem;
        border: none;
        will-change: max-height, opacity;
    }
    
    .service-card.active .service-content {
        max-height: 3000px;
        opacity: 1;
        padding: 0 1.5rem 1.5rem 1.5rem;
        background: var(--white);
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        border: none;
    }
    
    /* Smooth transition for service cards on mobile to prevent jerk */
    .service-card {
        transition: transform 0.2s ease, margin 0.2s ease, box-shadow 0.2s ease;
    }
    
    /* Hide original icon and h3 on mobile since they're in header */
    .service-card > .service-icon:first-of-type {
        display: none;
    }
    
    .service-card > h3:first-of-type {
        display: none;
    }
    
    /* Remove any borders on active state */
    .service-card.active {
        border: none;
        box-shadow: none;
    }
    
    .service-card.active .service-header-mobile {
        box-shadow: none;
        border: none;
    }
    
    .service-card.active:hover {
        transform: none;
        box-shadow: none;
        border: none;
    }

    .pricing-note {
        padding: 2rem 1.5rem;
    }

    .pricing-note-title {
        font-size: 1.4rem;
    }

    .pricing-category-title {
        font-size: 1.6rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-card h4 {
        font-size: 1.3rem;
    }

    .price {
        font-size: 1.8rem;
    }
    
    .pricing-value-wrapper {
        padding: 0.65rem 0.85rem;
        gap: 0.65rem;
    }
    
    .pricing-savings {
        font-size: 0.7rem;
        padding: 0.35rem 0.8rem;
    }

    .pricing-tabs {
        gap: 0.5rem;
        padding-bottom: 0.75rem;
    }

    /* About Section Responsive */
    .about-hero-card {
        padding: 2rem 1.5rem;
    }
    
    .about-profile-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .profile-logo {
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }
    
    .about-profile-image::before {
        width: 160px;
        height: 160px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1.1);
    }
    
    .about-hero-name {
        font-size: 2rem;
    }
    
    .about-hero-tagline {
        font-size: 1.1rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .about-card-title {
        font-size: 1.6rem;
    }
    
    .about-intro-text {
        font-size: 0.95rem;
    }
    
    .about-emphasis-text {
        font-size: 1.1rem;
        padding: 0.875rem 1.25rem;
        margin: 1.25rem 0;
    }
    
    .about-divider-line {
        margin: 1.5rem 0;
    }
    
    .about-elements-section,
    .about-outcomes-section {
        margin: 1.5rem 0;
    }
    
    .about-section-label {
        font-size: 0.8rem;
        margin-bottom: 0.875rem;
    }
    
    .element-item,
    .outcome-item {
        font-size: 0.9rem;
    }
    
    .about-elements-list,
    .about-outcomes-list {
        gap: 1rem;
    }
    
    .element-item::after,
    .outcome-item::after {
        right: -0.5rem;
    }
    
    .about-quote-block {
        padding: 1.5rem;
    }
    
    .about-quote-block p {
        font-size: 1.3rem;
    }
    
    .about-specialties-list li {
        font-size: 1rem;
        padding: 0.875rem 0;
        padding-left: 2.5rem;
    }
    
    .specialty-icon {
        font-size: 1.3rem;
    }

    .pricing-tab {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }


    .pricing-important-notes {
        padding: 2rem 1.5rem;
    }

    .pricing-important-title {
        font-size: 1.5rem;
    }

    .pricing-cord-note {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }

    .pricing-cord-note p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-desktop {
        display: none;
    }

    .footer-mobile {
        display: block;
    }

    .footer {
        padding: 1.5rem 0 1rem 0;
    }

    .footer-bottom {
        padding-top: 1rem;
    }

    .footer-copyright {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
    }

    .footer-disclaimer-mobile {
        display: block;
    }

    .zoho-booking-container {
        margin: 1rem auto;
        border-radius: 10px;
        min-height: 600px;
    }

    .zoho-booking-container iframe {
        height: 600px;
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .shop {
        padding: 3rem 0;
        min-height: calc(100vh - 150px);
    }
    
    .shop-content {
        padding: 2rem 1.5rem;
    }
    
    .shop-message {
        font-size: 1.1rem;
    }
    
    .shop-coming-soon {
        font-size: 1.6rem;
    }
    
    .shop-icon-container {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .shop-icon {
        font-size: 2.5rem;
    }
    
    .shop-gradient-bg {
        width: 400px;
        height: 400px;
    }
    
    .shop-star {
        font-size: 1.2rem;
    }
    
    .shop-star-1 {
        font-size: 1rem;
    }
    
    .shop-star-2 {
        font-size: 1.4rem;
    }
    
    .shop-star-3 {
        font-size: 1.1rem;
    }
    
    .shop-star-4 {
        font-size: 1.3rem;
    }
    
    .shop-star-5 {
        font-size: 1rem;
    }
    
    .shop-star-6 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .shop {
        padding: 2rem 0;
        min-height: calc(100vh - 120px);
    }
    
    .shop-content {
        padding: 1.5rem 1rem;
    }
    
    .shop-message {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .shop-coming-soon {
        font-size: 1.4rem;
        margin-top: 0.75rem;
    }
    
    .shop-icon-container {
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .shop-icon {
        font-size: 2rem;
    }
    
    .shop-gradient-bg {
        width: 300px;
        height: 300px;
    }
    
    .shop-star {
        font-size: 1rem;
    }
    
    .shop-star-1 {
        font-size: 0.9rem;
    }
    
    .shop-star-2 {
        font-size: 1.2rem;
    }
    
    .shop-star-3 {
        font-size: 0.95rem;
    }
    
    .shop-star-4 {
        font-size: 1.1rem;
    }
    
    .shop-star-5 {
        font-size: 0.9rem;
    }
    
    .shop-star-6 {
        font-size: 1rem;
    }
    
    .hero-logo {
        max-width: 120px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-call {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-title-icon {
        font-size: 1.6rem;
    }

    .service-card {
        padding: 0;
    }
    
    .service-header-mobile {
        padding: 1.25rem;
    }
    
    .service-header-mobile h3 {
        font-size: 1.3rem;
    }
    
    .service-header-mobile .service-icon {
        font-size: 1.75rem;
    }
    
    .service-header-mobile .service-icon .material-icons {
        font-size: 1.75rem;
    }
    
    .service-toggle {
        width: 32px;
        height: 32px;
    }
    
    .service-toggle .material-icons {
        font-size: 24px;
    }
    
    .service-content {
        padding: 0 1.25rem;
    }
    
    .service-card.active .service-content {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }

    .pricing-card {
        padding: 1.25rem;
    }
    
    .pricing-value-wrapper {
        padding: 0.6rem 0.75rem;
        gap: 0.6rem;
        margin-top: 0.75rem;
    }
    
    .pricing-original {
        font-size: 0.85rem;
    }
    
    .pricing-savings {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
    }

    .pricing-tabs {
        gap: 0.4rem;
    }

    .pricing-tab {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .service-card h3 {
        font-size: 1.6rem;
    }

    .specialties-list {
        padding: 1.5rem;
    }

    /* Philosophy Section Responsive */
    .philosophy-statement-card {
        padding: 2rem 1.5rem;
    }
    
    .philosophy-statement {
        font-size: 1.2rem;
    }
    
    .philosophy-section-heading {
        font-size: 1.5rem;
    }
    
    .philosophy-principles {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }
    
    .philosophy-principle-card {
        padding: 1.5rem 1rem;
    }
    
    .philosophy-principle-icon {
        width: 70px;
        height: 70px;
    }
    
    .philosophy-principle-icon .material-icons {
        font-size: 2rem;
    }
    
    .philosophy-principle-title {
        font-size: 1.15rem;
    }
    
    .philosophy-core-card {
        padding: 2rem 1.5rem;
    }
    
    .philosophy-core-quote {
        padding: 1.5rem;
    }
    
    .philosophy-core-quote p {
        font-size: 1.3rem;
    }
    
    .philosophy-approach-card {
        padding: 2rem 1.5rem;
    }
    
    .philosophy-approach-title {
        font-size: 1.5rem;
    }
    
    .philosophy-approach-content p {
        font-size: 1rem;
    }
    
    .philosophy-final-card {
        padding: 2rem 1.5rem;
    }
    
    .philosophy-final-text {
        font-size: 1.2rem;
    }

    .about-subheading {
        font-size: 1.4rem;
    }

    .about-name {
        font-size: 1.2rem;
    }

    .profile-logo {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .about-profile-image::before {
        width: 150px;
        height: 150px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1.1);
    }

    .footer-logo {
        width: 50px;
        height: 50px;
        object-position: center;
    }

    .footer-title {
        font-size: 1.5rem;
    }

    /* Philosophy Section - Small Mobile */
    .philosophy-statement-card {
        padding: 1.5rem 1rem;
    }
    
    .philosophy-statement {
        font-size: 1.1rem;
    }
    
    .philosophy-section-heading {
        font-size: 1.3rem;
    }
    
    .philosophy-principles {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .philosophy-principle-card {
        padding: 1.25rem 1rem;
    }
    
    .philosophy-principle-icon {
        width: 60px;
        height: 60px;
    }
    
    .philosophy-principle-icon .material-icons {
        font-size: 1.75rem;
    }
    
    .philosophy-principle-title {
        font-size: 1.1rem;
    }
    
    .philosophy-core-card {
        padding: 1.5rem 1rem;
    }
    
    .philosophy-core-quote {
        padding: 1.25rem;
    }
    
    .philosophy-core-quote p {
        font-size: 1.15rem;
    }
    
    .philosophy-core-quote::before,
    .philosophy-core-quote::after {
        font-size: 2rem;
    }
    
    .philosophy-approach-card {
        padding: 1.5rem 1rem;
    }
    
    .philosophy-approach-title {
        font-size: 1.3rem;
    }
    
    .philosophy-approach-content p {
        font-size: 0.95rem;
    }
    
    .philosophy-final-card {
        padding: 1.5rem 1rem;
    }
    
    .philosophy-final-text {
        font-size: 1.1rem;
    }

    .disclaimer-content {
        padding: 1.5rem;
    }

    .footer {
        padding: 1.25rem 0 0.75rem 0;
    }

    .footer-title {
        font-size: 1.3rem;
    }

    .footer-venmo-mobile {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }

    .footer-mobile-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }

    .footer-disclaimer {
        font-size: 0.75rem;
    }

    .zoho-booking-container {
        min-height: 500px;
        margin: 0.5rem auto;
    }

    .zoho-booking-container iframe {
        height: 500px;
    }
}

