:root {
    --primary-color: #a89393;
    --primary-light: #bfaeae;
    --primary-dark: #827171;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --brand-color: #f4E7E7E5;
    --dark: #333333;
    --white: #ffffff;
    /* New palette additions for About page */
    --about-primary: #C2BBBB;
    --about-secondary: #F4E7E7;
    --about-accent: #b29e9e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--brand-color);


/* Fluid typography scale */
h1, .hero h1, .primary-font.hero-title {font-size:clamp(2rem, 4.8vw, 3.5rem); line-height:1.15;}
h2.primary-font {font-size:clamp(1.75rem, 3.6vw, 2.6rem); line-height:1.2;}
h3, .subhead {font-size:clamp(1.25rem, 2.4vw, 1.65rem); line-height:1.25;}
p, .lead, .section-subtitle {font-size:clamp(.95rem, 1.15vw, 1.05rem);}

@media (max-width:600px){
    p, .lead, .section-subtitle {font-size:.95rem;}
}

}

.primary-font{
    color: var(--primary-color);
    font-family: 'Dancing Script', cursive;
}

.logo-font{
    font-family: 'Dancing Script', cursive;
}

.logo-footer{
    font-family: 'Dancing Script', cursive;
    color: #f4e7e7;
    font-size: larger;
}

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

/* Navigation */
 .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--about-primary);
    padding: .35rem 0; /* even slimmer */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: stretch;
    transition: all 0.3s ease;
}

.navbar.scrolled {
        padding: 0.65rem 0;
    background: var(--about-primary);
    backdrop-filter: blur(10px);
}

/* Inner centering wrapper */
.nav-inner { 
    width:100%;
    max-width:1240px; 
    /* allow natural height; control with padding so logo can float */
    margin:0 auto; 
    display:flex; 
    align-items:center; 
    justify-content:space-between; 
    padding:0 4rem; 
    gap:2.5rem;
    position:relative;
}

@media (max-width: 992px){
    .nav-inner {padding:0 2rem;}
}

@media (max-width: 600px){
    .nav-inner {padding:0 1.25rem;}
}

.nav-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
}
.nav-brand {position:relative; display:flex; align-items:center; gap:.75rem;}
.nav-brand img {
border-radius: 50%;
    background: #f5f5f5;
    padding: 0.5rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    height: clamp(70px, 8vw, 61px);
    max-height: 99px;
    width: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    position: relative;
    top: 6px;
}



.nav-brand .logo-font {font-size:1.4rem; font-weight:600; color:#ffffff; letter-spacing:.5px;}

@media (max-width: 900px){
    .nav-inner {padding:0 2rem;}
    .nav-brand .logo-font {font-size:1.15rem;}
}
@media (max-width: 780px){
    .nav-brand img {height:70px; max-height:70px; top:0; padding:.65rem;}
    .nav-brand .logo-font {font-size:1.05rem;}
    .nav-menu {gap:1.25rem;}
}
@media (max-width: 560px){
    .nav-brand img {height:60px; max-height:60px; top:0; padding:.55rem;}
    .nav-brand .logo-font {display:none;} /* hides text for space */
    .nav-menu {gap:.75rem;}
    .nav-menu li a {padding:0.35rem .85rem; font-size:.78rem;}
}

.nav-toggle {
    display: none;
    color: var(--primary-color);
}

.nav-toggle span{
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    /* Added horizontal inner space for all pages */
    padding: 0 1.25rem;
}

 .nav-menu li a {
    color: var(--white);
    text-decoration: none;
    padding: 0.3rem 1.25rem; /* reduced again */
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-menu li a:hover {
    color: var(--about-secondary);
}

.book-now {
    background: var(--about-secondary);
    color: var(--dark) !important;
    border-radius: 25px;
    padding: 0.8rem 1.8rem !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

.book-now:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    position: relative;
}
@media (max-width: 768px) {
    .hero {
                min-height: 110vh; /* reduce excessive height */
                height:auto;
                padding-top:110px;
    }
}
@media (max-width:520px){
    .hero {padding-top:100px;}
    .hero-content {padding:0 1rem;}
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 75px;
    background: linear-gradient(to top, rgba(255,255,255,1), transparent);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero h2 {
    color: var(--primary-light);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Emphasized intro paragraph on home hero */
.hero-intro { 
        font-size: 1.45rem; 
        line-height:1.85; 
        color: var(--about-secondary); 
        font-weight:600; 
        letter-spacing:.3px; 
}
@media (max-width: 768px){
    .hero-intro {font-size:1.25rem;}
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.hero .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out forwards;
}

.hero .feature:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

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

.hero .feature i {
    color: var(--primary-color);
}

.hero .feature span {
    font-size: 0.9rem;
    font-weight: 500;
}


.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 175, 208, 0.3);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 175, 208, 0.4);
}

.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Trust Indicators */
.trust-indicators {
    padding: 3rem 0;
    background: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

/* .trust-indicators .container{
    background: var(--brand-color);
} */


.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
   
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    background: var(--brand-color);
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.trust-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Section Common Styles */
section {
    padding: 2rem 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

/* About Section */
.about {
    background: linear-gradient(to bottom, var(--light-gray) 0%, var(--white) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.about-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}



.about-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.about-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.about-item:hover::before {
    transform: scaleX(1);
}

.about-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.about-item:hover i {
    transform: scale(1.1);
}

.about-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.about-item p {

    margin-bottom: 1.5rem;
    color: #958282;
}

.feature-list {
    list-style: none;
    margin-top: 1rem;
    text-align: left;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

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

.service-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

/* .service-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
} */

.service-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-item:hover i {
    transform: scale(1.2);
    color: var(--primary-dark);
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.service-item p{
  
    color: #958282;
}

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

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--gray);
}

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

.service-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--light-gray);
    border-radius: 15px;
}

.services-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.services-cta p {
    color: var(--gray);
    margin-bottom: 2rem;
}

/* Reviews Section */
.reviews {
    background: var(--light-gray);
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--gray);
    font-size: 1.1rem;
}

.reviews-slider {
    margin-top: 3rem;
    padding: 2rem 0 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.review-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
    background: var(--white) !important;;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
}

.reviewer-location {
    color: var(--gray);
    font-size: 0.9rem;
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.review-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--brand-color);
    color: var(--primary-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.reviews-platforms {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.platform {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.platform img {
    height: 30px;
}

.rating {
    font-weight: bold;
    color: var(--dark);
}

/* Contact Page Styles */
.contact-hero {
    height: 70vh;
    background: linear-gradient(rgb(215 187 187 / 37%), rgb(133 114 114 / 82%)), url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    position: relative;
}

@media (max-width: 768px) {
    .contact-hero {
        height: 70vh;
       /* padding-top: 539px; */
    }
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.contact-hero p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

/* Contact Options Section */
.contact-options {
    padding: 5rem 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.option-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.option-icon {
    width: 80px;
    height: 80px;
    background: var(--brand-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.option-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.option-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.option-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-bottom: 1.5rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 500;
}

.contact-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 25px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-button.whatsapp {
    background: #25D366;
}

.contact-button.whatsapp:hover {
    background: #128C7E;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-features {
    margin: 2rem 0;
}

.contact-features .feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-features .feature i {
    color: var(--primary-color);
}

.office-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.office-info h3 {
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.office-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--gray);
}

.map-container {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: auto;
}


.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(227, 175, 208, 0.2);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.checkbox-label input {
    margin-top: 0.3rem;
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Inline CTA Section */
.inline-cta {
    padding: 3rem 0;
    background: var(--light-gray);
    margin-top: 2rem;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(rgb(215 187 187 / 37%), rgb(133 114 114 / 82%));
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.cta-content {
    flex: 1;
    color: var(--white);
}

.cta-content h2 {
    text-align: left;
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.inline-cta .cta-button {
    background: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 2.5rem;
    white-space: nowrap;
    font-size: 1rem;
}

.inline-cta .cta-button:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* Social Connect Section */
.social-connect {
    padding: 3rem 0;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-icon.linkedin {
    background: #0A66C2;
}

.social-icon.whatsapp {
    background: #25D366;
}

@media (max-width: 768px) {
    .cta-flex {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .cta-content h2 {
        text-align: center;
        font-size: 1.8rem;
    }

    .social-icons {
        flex-wrap: wrap;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        text-align: center;
    }

    .contact-features .feature {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1.2rem;
    }

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

    .contact-form-container {
        padding: 2rem;
    }
}


.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: var(--white);
    color: var(--dark);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-form {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 2.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: none;
    padding-top: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(227, 175, 208, 0.2);
}

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-privacy input[type="checkbox"] {
    margin-top: 0.3rem;
}

.form-privacy label {
    font-size: 0.9rem;
    color: var(--gray);
}

.form-privacy a {
    color: var(--primary-color);
    text-decoration: none;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Book Now CTA Section */
.book-cta {
    background: linear-gradient(rgb(215 187 187 / 37%), rgb(133 114 114 / 82%)), url(https://images.unsplash.com/photo-1582650625119-3a31f8fa2699?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80);
    /* linear-gradient(rgba(227, 175, 208, 0.95), rgba(227, 175, 208, 0.95)), url('https://images.unsplash.com/photo-1582650625119-3a31f8fa2699?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80'); */
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.book-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.book-cta h2 {
   color: #554848;
    margin-bottom: 1.5rem;
}

.book-cta .section-subtitle {
    color: var(--white);
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.cta-features .feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.cta-features .feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.cta-features .feature span {
    color: var(--white);
    font-weight: 700;
}

/* Booking Page Styles */
.booking-hero {
    height: 70vh;
    background: linear-gradient(rgba(152, 140, 140, 0.7), rgba(55, 47, 47, 0.7)), url('https://images.unsplash.com/photo-1582650625119-3a31f8fa2699?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.booking-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.booking-hero p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.booking-info {
    padding: 5rem 0;
    background: var(--white);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.booking-details {
    padding-right: 2rem;
}

.booking-details h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.booking-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit {
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.benefit h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.benefit p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.consultation-topics {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.consultation-topics h3 {
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.consultation-topics ul {
    list-style: none;
}

.consultation-topics li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--gray);
}

.consultation-topics li i {
    color: var(--primary-color);
}

.booking-calendar {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 2rem;
}

.calendar-container h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark);
}

.booking-faq {
    padding: 5rem 0;
    background: var(--light-gray);
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--gray);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .booking-details {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .booking-hero h1 {
        font-size: 2.5rem;
    }

    .booking-hero p {
        font-size: 1.2rem;
    }

    .booking-benefits {
        grid-template-columns: 1fr;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

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

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

.footer-logo { 
        height:80px; 
        width:80px; 
        max-height:80px; 
        aspect-ratio:1/1; 
        object-fit:cover; 
        display:block; 
        border-radius:50%; 
        background:#f5f5f5; 
        padding:.9rem; 
        box-shadow:0 6px 16px rgba(0,0,0,0.12); 
        margin-bottom:1.2rem; 
}
@media (max-width:600px){
    .footer-logo {height:70px; width:70px; padding:.75rem;}
}

.certifications {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cert-logo {
    height: 50px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-legal a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-payment img {
    height: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        cursor: pointer;
    }

    .nav-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--primary-dark);
        margin: 5px 0;
        transition: 0.3s;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        background: var(--white);
        width: 100%;
        flex-direction: column;
        padding: 2rem 0;
        transition: 0.3s;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

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

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

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .reviews-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal ul {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}


.rotate-in {
    opacity: 0;
    transform: rotateY(90deg);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
   }
   .rotate-in.visible {
    opacity: 1;
    transform: rotateY(0);
   }
/* Active nav link */
.nav-menu a.active {color: var(--about-secondary); font-weight:600; position:relative;}
.nav-menu a.active::after {content:""; position:absolute; left:0; bottom:-4px; width:100%; height:2px; background:var(--about-secondary); border-radius:2px;}
.about-page {min-height:100vh; display:flex; flex-direction:column;}
.page-main {flex:1 0 auto;}

/* ============================= */
/* About Page Redesign           */
/* ============================= */

.minimal-hero {
    background: linear-gradient(135deg, var(--about-secondary), #ffffff);
    padding: 10rem 0 5rem;
    position: relative;
}

.minimal-hero::after {
    content:"";
    position:absolute; inset:0;
    background:radial-gradient(circle at 70% 30%, rgba(255,255,255,0.6), transparent 60%);
    pointer-events:none;
}

.hero-grid {
    display:grid; 
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:3rem; align-items:center;
}

.hero-text h1 {font-size:3rem; line-height:1.15; color:var(--dark);} 
.hero-text .accent {color: var(--about-accent);} 
.hero-text .lead {font-size:1.15rem; font-weight:500; color:var(--dark);} 
.hero-text p {color:#7a6868; margin-bottom:1.2rem;}

.hero-cta {display:flex; gap:1rem; flex-wrap:wrap; margin-top:1rem;}
.cta-button.soft {background:var(--about-accent);}
.cta-button.outline {background:transparent; color:var(--about-accent); border:2px solid var(--about-accent);} 
.cta-button.outline:hover {background:var(--about-accent); color:var(--white);} 

.visual-block {position:relative;}
.image-placeholder {width:100%; aspect-ratio:4/5; border-radius:24px; background:linear-gradient(160deg,#d9d2d2,#ece7e7); box-shadow:0 15px 40px rgba(0,0,0,0.08);}
.image-placeholder img {width:100%; height:100%; object-fit:cover; border-radius:inherit; display:block;}

.story-section {background:#fff; padding:5rem 0 4rem; position:relative;}
.story-section .narrow {max-width:900px;}
.section-header.center {text-align:center; margin-bottom:2rem;}
.text-block p {font-size:1.05rem; line-height:1.75; color:#5a4f4f; margin-bottom:1.2rem;}

.about-me-section {background:linear-gradient(180deg, var(--about-secondary) 0%, #ffffff 60%); padding:5rem 0;}
.about-me-grid {display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); gap:3rem; align-items:center;}
.about-me-text h2 {margin-bottom:1rem;}
.about-me-text p {color:#5e5151; line-height:1.7; margin-bottom:1.1rem; font-size:1.02rem;}
.about-me-text .subhead {margin-top:1.5rem; font-size:1.25rem; color:var(--about-accent);}

.about-me-card {display:flex; justify-content:center;}
.portrait-frame {position:relative; width:100%; max-width:420px;}
.portrait-frame::before {content:""; position:absolute; inset:-18px -18px 18px 18px; border:4px solid var(--about-accent); border-radius:28px; opacity:.5;}
.portrait {width:100%; aspect-ratio:4/5; background:linear-gradient(145deg,#d2c9c9,#ece8e8); border-radius:24px; box-shadow:0 20px 45px rgba(0,0,0,.12); background-size:cover; background-position:center;}

.cta-panel {padding:5rem 0; background:var(--about-secondary); position:relative;}
.cta-panel .narrow {max-width:820px; text-align:center;}
.cta-panel h2 {color:var(--dark);} 
.cta-panel .lead {color:#564d4d; font-weight:500; margin-bottom:2rem;}
.contact-actions {display:flex; flex-direction:column; gap:.75rem; margin-bottom:2rem; align-items:center;}
.mini-link {color:var(--about-accent); text-decoration:none; font-weight:500;}
.mini-link:hover {text-decoration:underline;}
.closing-line {font-size:1.05rem; color:#5a4f4f;}

/* Inline What's Next block inside About Me section */
.about-next {margin-top:2rem; padding:1.5rem 1.75rem; background:#ffffff; border:1px solid #e2dada; border-radius:18px; box-shadow:0 6px 18px rgba(0,0,0,0.04);}
.about-next .whats-next {margin-top:0; margin-bottom:.75rem; font-size:1.28rem; color:var(--about-accent);} 
.about-next .next-line {margin-bottom:1rem; color:#5e5151; font-weight:500;}
.contact-inline {list-style:none; display:flex; flex-wrap:wrap; gap:1rem 1.5rem; padding:0; margin:0 0 1rem;}
.contact-inline li {font-size:.95rem; color:#5e5151;}
.contact-inline li a {text-decoration:none; color:var(--about-accent); font-weight:500;}
.contact-inline li a:hover {text-decoration:underline;}
.inline-link {color:var(--about-accent); text-decoration:none; font-weight:600;}
.inline-link:hover {text-decoration:underline;}
.closing-line.small {font-size:1rem; margin:0;}
.about-next .inline-cta-btn {margin:0 0 1rem;}

/* ============================================= */
/* Booking Confirmation Page                     */
/* ============================================= */
.confirmation-page {background:var(--brand-color); min-height:100vh; display:flex; flex-direction:column;}
.confirmation-main {flex:1 0 auto;}
.confirmation-banner {background: #f5f5f5; /* soft teal variant */ padding:14.5rem 0 3.5rem; text-align:center;}
.confirmation-banner .narrow {max-width:960px;}
.confirmation-title {font-size:2.75rem; line-height:1.15; color:#3b3f42; font-weight:600; margin-bottom:1rem;}
.confirmation-title .celebrate {font-size:2.2rem;}
.confirmation-sub {font-size:1.05rem; color:#4d5559; font-weight:500;}

.confirmation-content {padding:3rem 0 5rem;}
.confirmation-grid {display:grid; gap:3rem; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); align-items:start;}
.confirmation-card {background:#fff; padding:2.25rem 2.4rem 2.5rem; border-radius:22px; box-shadow:0 12px 32px rgba(0,0,0,0.06); position:relative;}
.confirmation-card p {color:#4f4646; line-height:1.65; margin-bottom:1rem;}
.confirmation-card .intro-line {margin-top:0;}
.next-steps-head {margin-top:1.6rem;}
.prep-list {margin:0 0 1.5rem 0; padding-left:1.1rem;}
.prep-list li {margin-bottom:.45rem; color:#5a5050;}
.mini-cta-row {display:flex; flex-wrap:wrap; gap:.85rem; margin:1.1rem 0 1.6rem;}
.small-btn {padding:.85rem 1.6rem; font-size:.9rem; letter-spacing:.5px;}
.closing-note {margin-top:1.25rem;}
.signature {font-family:'Dancing Script', cursive; font-size:1.5rem; color:var(--about-accent);}

.confirmation-photo-wrap {position:relative; display:flex; justify-content:center; align-items:flex-start;}
.photo-frame-accent {position:absolute; top:0; left:0; width:78%; height:78%; border:5px solid var(--about-accent); border-radius:18px; transform:translate(-14px,-14px); z-index:0;}
.photo-frame {position:relative; z-index:1; border-radius:18px; overflow:hidden; box-shadow:0 15px 40px rgba(0,0,0,0.12);}
.photo-frame img {display:block; width:100%; height:100%; object-fit:cover; max-width:520px; aspect-ratio:4/5;}

@media (max-width:768px){
    .confirmation-title {font-size:2.15rem;}
    .confirmation-banner {padding:6rem 0 2.5rem;}
    .photo-frame-accent {width:82%; height:82%;}
}

/* Simple fade utility */
.fade-in-up {opacity:0; transform:translateY(20px); animation:fadeUp .9s ease forwards;}
.fade-in-up.delay-1 {animation-delay:.15s;}
.fade-in-up.delay-2 {animation-delay:.3s;}
.fade-in-up.delay-3 {animation-delay:.45s;}
.fade-in-up.delay-4 {animation-delay:.6s;}
@keyframes fadeUp {to {opacity:1; transform:translateY(0);}}

@media (max-width: 768px) {
  .minimal-hero {padding:8rem 0 3.5rem;}
  .hero-text h1 {font-size:2.3rem;}
  .image-placeholder, .portrait {aspect-ratio:3/4;}
  .portrait-frame::before {inset:-12px -12px 12px 12px;}
}

/* -------------------------------------- */
/* About Page Slight Typography Upscale   */
/* (User request: increase font size a bit)*/
/* -------------------------------------- */
.about-page {font-size:17px;}
.about-page .hero-text h1 {font-size:3.2rem;}
.about-page .hero-text .lead {font-size:1.22rem;}
.about-page .hero-text p {font-size:1.08rem;}
.about-page .text-block p {font-size:1.12rem;}
.about-page .about-me-text p {font-size:1.08rem;}
.about-page .about-me-text .subhead {font-size:1.32rem;}
.about-page .cta-panel .lead {font-size:1.18rem;}
.about-page .closing-line {font-size:1.12rem;}

@media (max-width: 768px){
    .about-page .hero-text h1 {font-size:2.45rem;}
    .about-page .hero-text .lead {font-size:1.15rem;}
    .about-page .text-block p,
    .about-page .about-me-text p {font-size:1.05rem;}
    .about-page .about-me-text .subhead {font-size:1.25rem;}
}

/* ============================================= */
/* Pricing Section (Home page)                   */
/* ============================================= */
.pricing-section {background:linear-gradient(180deg,#ffffff 0%, var(--about-secondary) 100%); position:relative; overflow:hidden; padding-top:0 !important;}
.pricing-section::before {content:""; position:absolute; inset:0; background:radial-gradient(circle at 78% 22%, rgba(255,255,255,0.7), transparent 60%); pointer-events:none;}
.pricing-intro {text-align:center;}
.pricing-intro h2 {margin-bottom:.75rem;}
.pricing-grid {display:grid; gap:2.5rem; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); margin-top:3.2rem; align-items:stretch;}
.pricing-card {background:#ffffff; border:1px solid #e3dada; border-radius:26px; padding:2.4rem 2.3rem 2.8rem; position:relative; box-shadow:0 10px 28px rgba(0,0,0,0.05); display:flex; flex-direction:column; transition:.35s ease; text-align:center;}
.pricing-card:hover {transform:translateY(-8px); box-shadow:0 16px 42px rgba(0,0,0,0.08);} 
.pricing-card .card-head {margin-bottom:1.2rem;}
.plan-name {font-size:1.55rem; margin:0 0 .35rem; color:var(--primary-dark); letter-spacing:.5px;}
.plan-tagline {margin:0; color:#7a6868; font-size:.95rem; font-weight:500; letter-spacing:.3px;}
.price-block {display:flex; align-items:baseline; gap:.75rem; margin: .3rem auto 1.4rem; justify-content:center;}
.price-block .amount {font-size:2.05rem; font-weight:700; color:var(--about-accent); letter-spacing:.5px;}
.price-block .note {font-size:.8rem; text-transform:uppercase; font-weight:600; color:#857676; letter-spacing:1px;}
.plan-features {list-style:none; margin:0 0 1.8rem; padding:0; flex-grow:1; max-width:340px; margin-left:auto; margin-right:auto; text-align:left;}
.plan-features li {position:relative; padding-left:1.4rem; margin-bottom:.65rem; color:#5d5252; font-size:.93rem; line-height:1.45;}
.plan-features li::before {content:"✓"; position:absolute; left:0; top:0; color:var(--about-accent); font-weight:600;}
.plan-cta {margin-top:auto;}
.pricing-card .cta-button.small-btn {padding:.9rem 1.75rem; font-size:.8rem; letter-spacing:.8px;}
.pricing-card.featured {border:2px solid var(--about-accent); box-shadow:0 18px 48px rgba(0,0,0,0.12);}
.pricing-card.featured .amount {color:var(--primary-color);} 
.pricing-card .badge {position:absolute; top:16px; right:16px; background:var(--about-accent); color:#fff; font-size:.7rem; font-weight:700; letter-spacing:1px; padding:.45rem .65rem; border-radius:6px; text-transform:uppercase; box-shadow:0 4px 10px rgba(0,0,0,0.15);} 
.fine-print {font-size:.7rem; line-height:1.4; margin-top:.85rem; color:#6d5f5f;}
.pricing-disclaimer {margin-top:3rem; text-align:center;}
.pricing-disclaimer p {font-size:.8rem; color:#6c5d5d; max-width:760px; margin:0 auto; line-height:1.5;}

@media (max-width:620px){
    .price-block .amount {font-size:1.85rem;}
    .pricing-card {padding:2.1rem 1.9rem 2.4rem;}
    .plan-name {font-size:1.4rem;}
}

/* ============================================= */
/* Section Separator (About Me -> Pricing)       */
/* ============================================= */
.section-separator {position:relative; width:100%; margin:0; line-height:0; background:transparent;}
.section-separator svg {display:block; width:100%; height:140px;}
.section-separator .sep-back {fill: var(--about-secondary); opacity:.9;}
.section-separator .sep-front {fill:#ffffff; filter:drop-shadow(0 6px 12px rgba(0,0,0,0.05));}
@media (max-width:768px){
    .section-separator svg {height:100px;}
}

/* Vertical rhythm adjustments */
@media (max-width:820px){
    .pricing-section {padding-top:1.5rem !important;}
    .mini-services-section {padding:3rem 0 4.2rem;}
    .why-me-section {padding:4rem 0 3.8rem;}
}
@media (max-width:600px){
    .pricing-section {padding-top:1rem !important;}
    .mini-services-section {padding:2.75rem 0 3.75rem;}
    .why-me-section {padding:3.5rem 0 3.3rem;}
    .mini-cta-inner h3 {font-size:1.6rem;}
}
@media (max-width:480px){
    .pricing-section {padding-top:.5rem !important;}
    .mini-services-section {padding:2.4rem 0 3.2rem;}
    .why-me-section {padding:3.1rem 0 2.9rem;}
}

/* ============================================= */
/* Mini Services Section                         */
/* ============================================= */
.mini-services-section {background:linear-gradient(180deg, var(--about-secondary) 0%, #fff 85%); padding:3.5rem 0 5rem; position:relative;}
.mini-services-section::before {content:""; position:absolute; top:0; left:50%; transform:translateX(-50%); width:160px; height:5px; border-radius:4px; background:linear-gradient(90deg, rgba(178,158,158,0), rgba(178,158,158,.5), rgba(178,158,158,0)); opacity:.6;}
.mini-head h2 {font-size:2.2rem; letter-spacing:.5px;}
.mini-head .section-subtitle {font-size:1.05rem; line-height:1.55;}
.mini-head h2 {margin-bottom:.6rem;}
.mini-head .section-subtitle {margin-bottom:2.5rem;}
.mini-services-grid {display:grid; gap:2rem; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); justify-items:center;}
.mini-service-item {background:#ffffff; border:1px solid #e7dede; border-radius:20px; padding:1.85rem 1.8rem 2.1rem; display:flex; flex-direction:column; position:relative; box-shadow:0 8px 24px rgba(0,0,0,0.05); transition:.3s ease; text-align:center;}
.mini-service-item:hover {transform:translateY(-6px); box-shadow:0 14px 40px rgba(0,0,0,0.08);} 
.mini-title {font-size:1.05rem; margin:0 0 .55rem; color:var(--primary-dark); letter-spacing:.3px;}
.mini-desc {font-size:.9rem; line-height:1.5; color:#6b5e5e; margin:0 0 1rem; flex-grow:1;}
.mini-price {font-size:.85rem; font-weight:600; letter-spacing:.8px; display:flex; align-items:baseline; justify-content:center; gap:.4rem; color:#5d5050; text-transform:uppercase; width:100%;}
.mini-price .amount {font-size:1.05rem; font-weight:700; color:var(--about-accent); letter-spacing:.5px;}
.mini-price .unit {font-weight:600; font-size:.7rem;}
.mini-footer-note {margin-top:2.8rem; text-align:center;}
.mini-footer-note .fine-print {font-size:.7rem; color:#6d5f5f; max-width:760px; margin:0 auto; line-height:1.45;}

@media (min-width:1100px){
    .mini-services-grid {grid-template-columns:repeat(4,1fr);} /* denser on large screens */
}

/* ============================================= */
/* Why Work With Me Section                      */
/* ============================================= */
.why-me-section {background:#ffffff; padding:5rem 0 4.5rem; position:relative;}
.why-top {text-align:center; max-width:860px; margin:0 auto 3rem;}
.why-top h2 {margin-bottom:.6rem;}
.why-top .lead {color:#6b5e5e; font-weight:500; font-size:1.05rem;}
.why-card-grid {display:grid; gap:2rem; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); justify-items:center;}
.why-card {background:#fff; border:1px solid #e7dede; border-radius:24px; padding:2.2rem 1.8rem 2.3rem; position:relative; box-shadow:0 10px 28px rgba(0,0,0,0.05); display:flex; flex-direction:column; align-items:center; transition:.35s ease; overflow:hidden; text-align:center;}
.why-card::before {content:""; position:absolute; inset:0; background:radial-gradient(circle at 80% 15%, rgba(244,231,231,0.5), transparent 70%); opacity:0; transition:.5s ease;}
.why-card:hover {transform:translateY(-8px); box-shadow:0 18px 46px rgba(0,0,0,0.09);}
.why-card:hover::before {opacity:1;}
.why-icon {width:52px; height:52px; border-radius:16px; background:var(--about-secondary); display:flex; align-items:center; justify-content:center; margin-bottom:1.05rem; color:var(--about-accent); font-size:1.35rem; box-shadow:0 4px 10px rgba(0,0,0,0.08);} 
.why-title {font-size:1.05rem; margin:0 0 .55rem; letter-spacing:.4px; color:var(--primary-dark);} 
.why-text {font-size:.9rem; line-height:1.55; color:#645858; margin:0;}

/* Responsive grid tightening */
@media (max-width:960px){
    .pricing-grid {gap:2rem;}
    .mini-services-grid {gap:1.6rem;}
    .why-card-grid {gap:1.75rem;}
}
@media (max-width:720px){
    .pricing-grid {grid-template-columns:1fr;}
    .mini-services-grid {grid-template-columns:repeat(auto-fit,minmax(200px,1fr));}
    .why-card-grid {grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width:520px){
    .mini-services-grid, .why-card-grid {grid-template-columns:1fr;}
    .pricing-section .pricing-intro p.section-subtitle {font-size:.9rem;}
    .mini-cta-inner {padding:2.1rem 1.5rem 2.3rem;}
}

/* Mini Services CTA & Separator */
.mini-cta-separator {display:flex; align-items:center; justify-content:center; gap:.65rem; padding:.4rem 0 0;}
.mini-cta-separator .line {flex:1; height:1px; background:linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);} 
.mini-cta-separator .icon {font-size:.7rem; color:rgba(0,0,0,0.25); letter-spacing:2px;}
.mini-services-cta {padding:2.2rem 0 3.5rem; background:linear-gradient(180deg,#ffffff 0%, var(--about-secondary) 130%);}
.mini-cta-inner {max-width:760px; margin:0 auto; text-align:center; background:#ffffff; border:1px solid #e7dede; padding:2.4rem 2.2rem 2.7rem; border-radius:28px; box-shadow:0 12px 34px rgba(0,0,0,0.06);}
.mini-cta-inner h3 {margin:0 0 .75rem; font-size:1.9rem;}
.mini-cta-text {color:#6a5d5d; font-size:.98rem; line-height:1.6; margin:0 0 1.6rem;}
.mini-cta-inner .small-btn {padding:.95rem 2.1rem; font-size:.8rem; letter-spacing:1px;}