/*
Theme Name: Dr Mika
Author: Antigravity
Description: Custom theme for Dr Mika based on the provided maquette.
Version: 1.0
*/

/* CSS Reset and Variables */
:root {
    --primary-color: rgba(219, 17, 111, 1);
    --text-color: #333333;
    --bg-color: #ffffff;
    --light-bg: #f9f9f9;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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


html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

p:last-child {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul,
ol {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

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

.has-bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .has-bg-image {
        background-position: left center;
    }
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: top 0.3s;
}

/* Admin Bar Adjustment */
.admin-bar header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar header {
        top: 46px;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.5px;
}

nav {
    display: flex;
    align-items: center;
}

nav ul,
ol {
    margin: 0;
    padding: 0;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
    /* Vertical alignment */
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

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

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

/* Dropdown */
.dropdown,
.menu-item-has-children {
    position: relative;
}

.dropdown-content,
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
    padding: 10px 0;
    border-top: 2px solid var(--primary-color);
    list-style-type: none;
}

.dropdown-content li,
.sub-menu li {
    width: 100%;
}

.dropdown-content a,
.sub-menu a {
    text-transform: none !important;
    font-size: 0.9rem !important;
    padding: 10px 20px !important;
    display: block !important;
    width: auto !important;
    letter-spacing: 0 !important;
}

.dropdown-content a::after,
.sub-menu a::after {
    display: none !important;
}

.dropdown-content a:hover,
.sub-menu a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.dropdown:hover .dropdown-content,
.menu-item-has-children:hover .sub-menu {
    display: block;
}

.lang-switch {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: 10px;
    height: 100%;
}

.lang-switch a {
    cursor: pointer;
    padding: 0 8px;
    color: var(--text-color);
    transition: var(--transition);
}

.lang-switch a::after {
    display: none !important;
}

.lang-switch a.current-lang {
    color: var(--primary-color);
}

.lang-switch a:hover {
    color: var(--primary-color);
}

/* Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease-in-out;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    padding: 120px 5% 80px 35%;
    /* Specific homepage layout */
    text-align: left;
}

@keyframes hueflow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-content {
    padding: 0 5%;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
    color: var(--white);
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    display: block;
    font-weight: 500;
    color: var(--white);
    opacity: 0.8;
}

.btn-animated {
    display: inline-block;
    padding: 15px 40px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    background: linear-gradient(-45deg, var(--primary-color), #ff7bb4, #e91e63, #ff8dad);
    background-size: 400% 400%;
    border-radius: 50px;
    transition: var(--transition);
    animation: liquidFlow 8s ease infinite;
    border: none;
    box-shadow: 0 10px 20px rgba(219, 17, 111, 0.2);
    position: relative;
    z-index: 1;
}

.btn-animated:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(219, 17, 111, 0.3);
    color: var(--white);
}


/* S1 - About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    /* Back to vertical center */
}

/* Ensure sections contain their content and grow with it */
.section-padding {
    padding: 100px 0;
    position: relative;
    clear: both;
    /* Safety */
}

.about-img {
    position: relative;
}

.about-img img {
    border-radius: 2px;
    box-shadow: 20px 20px 0 var(--light-bg);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.quote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    margin: 20px 0;
}

/* Services Summary */
.services-summary {
    background-color: var(--white);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 80px;
    background: transparent;
    border: none;
    flex-direction: row-reverse;
    /* Start with image on the right */
    transition: var(--transition);
}

.service-card:nth-child(even) {
    flex-direction: row;
    /* Second item: image on the left */
}

.service-img-wrapper {
    flex: 0.8;
    /* Narrower for vertical images */
    height: 600px;
    /* Taller for vertical images */
    overflow: hidden;
    position: relative;
}

.service-card:nth-child(odd) .service-img-wrapper {
    box-shadow: -20px 20px 0 var(--light-bg);
    /* Shadow for image on right */
}

.service-card:nth-child(even) .service-img-wrapper {
    box-shadow: 20px 20px 0 var(--light-bg);
    /* Shadow for image on left */
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.05);
}

.service-card-content {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.service-card:nth-child(even) .service-card-content {
    align-items: flex-start;
    text-align: left;
}

.service-card h3 {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.service-card p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn-outline {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--dark-bg);
    border-color: var(--dark-bg);
    color: var(--white);
}

/* S2 - Experience */
.experience {
    background-color: var(--light-bg);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience-content {
    order: 1;
}

.experience-img {
    order: 2;
    position: relative;
}

.experience-img::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    z-index: 1;
}

.experience-img img {
    position: relative;
    z-index: 2;
}

/* S3 - Why Choose Me */
.why-choose {
    background-color: var(--white);
}

.why-header {
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    padding: 30px;
    background: var(--light-bg);
    border-radius: 4px;
    transition: var(--transition);
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.gallery-scroller {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.gallery-scroller img {
    height: 600px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(20%);
}

.gallery-scroller img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.cta-banner {
    margin-top: 60px;
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.brand-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 2px !important;
    font-size: 1.5rem !important;
    text-transform: uppercase;
}

.footer-tagline {
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    margin-bottom: 20px !important;
}

.footer-reviews {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.stars {
    color: #ffcc00;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.review-link {
    font-size: 0.85rem !important;
    color: var(--white) !important;
    text-decoration: underline !important;
    margin-top: 0px;
}

.review-link:hover {
    color: var(--primary-color) !important;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col a,
.footer-links li a {
    display: block;
    margin-bottom: 10px;
    color: #aaa;
    transition: var(--transition);
}

.footer-insta-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    text-decoration: none !important;
}

.insta-logo-top {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    opacity: 0.2;
    transition: var(--transition);
    color: var(--white);
}

.footer-insta-card:hover .insta-logo-top {
    opacity: 1;
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.footer-insta-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.insta-pp {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--primary-color);
}

.insta-pp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 45px;
    /* Space to avoid overlap with top-right logo */
}

.insta-handle {
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
}

.insta-tagline {
    color: #aaa;
    font-size: 0.75rem;
    line-height: 1.2;
    margin-top: 3px;
}

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

.footer-col a:hover,
.footer-links li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    }

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

    .nav-links li {
        margin: 16px 0;
        width: 100%;
        /* Full width for mobile items */
    }

    /* Make dropdown content visible in mobile menu */
    .dropdown .dropdown-content,
    .menu-item-has-children .sub-menu {
        display: block;
        position: static;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 5px 0;
        border-top: none;
        width: 100%;
    }

    .dropdown .dropdown-content li,
    .menu-item-has-children .sub-menu li {
        margin: 8px 0;
    }

    .dropdown .dropdown-content a,
    .menu-item-has-children .sub-menu a {
        font-size: 0.8rem;
        color: #666;
        padding: 5px 0;
    }

    .lang-switch {
        justify-content: center;
        margin-top: 0;
    }

    .about-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        gap: 60px;
    }

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column !important;
        gap: 30px;
    }

    .service-img-wrapper {
        height: 400px;
        width: 100%;
        flex: none;
    }

    .service-img-wrapper img {
        object-position: top;
    }

    .service-card:nth-child(odd) .service-img-wrapper,
    .service-card:nth-child(even) .service-img-wrapper {
        box-shadow: 10px 10px 0 var(--light-bg);
    }

    .experience-content {
        order: 2;
    }

    .experience-img {
        order: 1;
    }

    .hero {
        height: 100vh;
        padding: 0 20px;
        justify-content: center;
        text-align: center;
        background-attachment: scroll !important;
        background-position: 20% center !important;
        /* Precise horizontal crop to see the face */
        background-size: cover;
    }

    .hero-content {
        padding: 0;
    }

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

    .gallery-scroller {
        grid-template-columns: 1fr;
    }
}

/* Skincare Specific Styles */
/* Skincare Specific Styles */
.skincare-hero {
    min-height: 50vh !important;
    height: auto !important;
    /* Allow growing */
    padding: 120px 0 80px !important;
    /* Space for content and header */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-attachment: scroll !important;
    background-position: center !important;
    overflow: visible !important;
    /* Don't clip content */
}

.skincare-hero .hero-content {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    text-align: left !important;
}

.price-card {
    border: 1px solid #eee;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    background: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.price {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin: 20px 0;
    font-weight: 700;
}

.price-features {
    margin: 30px 0;
    text-align: left;
}

.price-features li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
    color: #555;
}

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

.booking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

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

.btn-price {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    /* Visible text color */
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    transition: var(--transition);
    margin-top: 20px;
}

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

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card::before {
    content: '“';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.star-rating {
    color: #FFD700;
    margin-bottom: 10px;
}


/* Gutenberg Editor Fixes */
.wp-block-drmika-service-item .service-card {
    display: flex !important;
    gap: 40px !important;
    margin-bottom: 40px;
}

.wp-block-drmika-service-item .service-img-wrapper {
    flex: 1 !important;
    min-width: 300px;
    height: 400px !important;
    /* Smaller height for editor comfort */
}

.wp-block-drmika-service-item .image-button {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    border: none !important;
    background: #f0f0f0 !important;
}

.wp-block-drmika-service-item .image-button img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.wp-block-drmika-service-item .service-card-content {
    flex: 1.2 !important;
}

/* Additional Editor fixes for alignment */
.wp-block-drmika-service-item .service-card.img-left {
    flex-direction: row !important;
}

.wp-block-drmika-service-item .service-card.img-right {
    flex-direction: row-reverse !important;
}

/* Background Helpers */
.bg-light {
    background-color: var(--light-bg) !important;
}

/* Portfolio Styles */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Editor Fix */
.portfolio-grid-editor>.block-editor-inner-blocks>.block-editor-block-list__layout {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}

.portfolio-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    background: #f0f0f0;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* Lightbox Wrapper */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 1100px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    font-family: var(--font-primary);
    padding: 0 20px;
}

/* Editor Specific Portfolio Fixes */
.portfolio-grid-editor .block-editor-block-list__block {
    margin: 0 !important;
}

.portfolio-thumb-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animated Gradient Button */
.btn-gradient-animated {
    display: inline-block;
    padding: 15px 40px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    background: linear-gradient(-45deg, var(--primary-color), #ff7bb4, #e91e63, #ff8dad);
    background-size: 400% 400%;
    border-radius: 50px;
    transition: var(--transition);
    animation: liquidFlow 8s ease infinite;
    border: none;
    box-shadow: 0 10px 20px rgba(219, 17, 111, 0.2);
    line-height: 1.4;
    text-align: center;
}

/* Modern Light Button */
.btn-modern-light {
    display: inline-block;
    padding: 15px 40px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    line-height: 1.4;
    text-align: center;
}

.btn-modern-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    background: #fdfdfd;
    color: var(--primary-color);
}

@keyframes liquidFlow {
    0% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 50% 100%;
    }

    50% {
        background-position: 100% 50%;
    }

    75% {
        background-position: 50% 0%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.btn-gradient-animated:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

/* Contact Page Styles */
.contact-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/images/hero.jpg');
    /* Fallback image, should be dynamic in real WP */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Contact Info Column */
.contact-info {
    padding: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-item .icon {
    font-size: 2rem;
    margin-right: 20px;
    width: 50px;
    text-align: center;
    filter: grayscale(1);
    /* Optional sleek look */
}

.info-item .details {
    display: flex;
    flex-direction: column;
}

.info-item .details strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
}

.info-item a:hover {
    color: var(--primary-color);
}

/* Contact Form Column */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.booking-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.booking-form .form-group {
    margin-bottom: 20px;
    width: 100%;
}

.booking-form .half {
    width: 50%;
}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #555;
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form textarea {
    width: 100%;
    max-width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    box-sizing: border-box;
    /* Force border-box for iOS */
    -webkit-appearance: none;
    /* Reset native iOS styles */
    appearance: none;
    min-height: 45px;
    /* Fix for empty date inputs on iOS */
}

.booking-form input:focus,
.booking-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(219, 17, 111, 0.1);
}

/* Service Buttons Custom Radio */
.service-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-option {
    cursor: pointer;
}

.service-option input {
    display: none;
}

.service-option span {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 50px;
    background: #f9f9f9;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-option input:checked+span {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(219, 17, 111, 0.2);
}

.service-option:hover span {
    border-color: var(--primary-color);
}

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

    .booking-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .booking-form .half {
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Success/Error messages for contact form */
.msg-status {
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

.msg-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.msg-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}