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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

a{
    text-decoration: none;
}

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

/* Header & Navigation */
header {
    background: rgba(8, 61, 89, 0.95);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 0.1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 90px;
    width: auto;
    display: block;
}

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

nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffd700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

/* Hero Section */
#home {
    background: #00BCD4;
    padding: 35px 60px 30px;
    margin-top: 90px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    min-height: 100vh;
    align-items: stretch;
}

/* LEFT: slider side */
.hero-slider-side {
    display: flex;
    flex-direction: column;
    background: #00BCD4;
    padding: 40px 30px 0;
    overflow: hidden;
}

.transform-text-block {
    text-align: center;
    padding: 0 0 25px;
}

.transform-text-block h1 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.transform-text-block .appointment-badge {
    margin: 18px auto 14px;
    display: inline-block;
}

.transform-text-block .cta-btn {
    display: inline-block;
    margin-top: 4px;
}

/* Slick slider inside hero */
.ba-slider {
    flex: 1;
    min-width: 0;
}

.ba-slide {
    padding: 0 8px;
}

.ba-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.ba-img-wrap {
    position: relative;
}

.ba-img-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.ba-tag {
    position: absolute;
    top: 10px;
    padding: 0px 2px;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 4px;
    letter-spacing: 1px;
}

.ba-tag.before {
    left: 8px;
    background: #ffffff;
    color: #000000;
}

.ba-tag.after {
    right: 8px;
    background: #ffffff;
    color: #000000;
}

.ba-label {
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 0 20px;
    letter-spacing: 1px;
}

/* Slick arrow/dot overrides */
.ba-slider .slick-prev,
.ba-slider .slick-next {
    z-index: 10;
}

.ba-slider .slick-prev { left: 5px; }
.ba-slider .slick-next { right: 5px; }

.ba-slider .slick-prev:before,
.ba-slider .slick-next:before {
    font-size: 30px;
    color: #fff;
}

.ba-slider .slick-dots li button:before {
    color: #fff;
    font-size: 10px;
}

.ba-slider .slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1;
}

/* RIGHT: form side */
.enquiry-form {
    background: rgba(255,255,255,0.97);
    padding: 50px 40px;
    border-radius: 0;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.enquiry-form h3 {
    color: #083D59;
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero-slider-side {
        padding: 30px 20px 0;
    }
    .transform-text-block h1 {
        font-size: 1.8rem;
    }
    .ba-img-wrap img {
        height: 220px;
    }
    .enquiry-form {
        padding: 35px 25px;
        box-shadow: none;
    }
}

@media (max-width: 480px) {
    .transform-text-block h1 {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    .ba-img-wrap img {
        height: 160px;
    }
}

.cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 4px 10px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

/*.cta-btn:hover {*/
/*    transform: translateY(-3px);*/
/*    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);*/
/*    background: #ffffff;*/
/*}*/

.appointment-badge {
    background: #ffffff;
    color: #000000;
    padding: 4px 10px;
    border-radius: 50px;
    margin: 20px 0;
    display: inline-block;
    font-weight: 600;
    /*animation: pulse 2s infinite;*/
}

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

/* Enquiry Form */
.enquiry-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.enquiry-form h3 {
    color: #083D59;
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #083D59;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    background: #083D59;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #0a4d73;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(8, 61, 89, 0.3);
}

/* Section Styles */
section {
    padding: 80px 20px;
}

section:nth-child(even) {
    background: #f9f9f9;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #083D59;
    font-family: 'Playfair Display', serif;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #ffd700;
    margin: 15px auto;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 15px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    object-fit: cover;
    max-height: 600px;
}

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

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    color: #083D59;
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
}

.service-subtitle {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.service-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 8px 0;
    color: #333;
    font-size: 0.95rem;
}

.service-features li i {
    color: #25D366;
    margin-right: 10px;
}

.service-btn {
    display: inline-block;
    background: #083D59;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s;
}

.service-btn:hover {
    background: #ffd700;
    color: #083D59;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(8, 61, 89, 0.3);
}

.service-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.quality-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.badge {
    background: #083D59;
    color: #ffd700;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

/* Who Can Benefit Section */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid #083D59;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(8, 61, 89, 0.2);
}

.benefit-icon {
    font-size: 3.5rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #083D59;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.benefit-card p {
    color: #555;
    line-height: 1.6;
}

/* Why Choose Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #083D59;
}

.feature h3 {
    color: #083D59;
    font-weight: 600;
}

/* Before/After Section */
.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 10px;
}

.before-after-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.before-after-container img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.before-label, .after-label {
    position: absolute;
    top: 10px;
    padding: 0px 2px;
    font-weight: 600;
    border-radius: 5px;
    font-size: 0.9rem;
}

.before-label {
    left: 10px;
    background: #ffffff;
    color: #000000;
}

.after-label {
    right: 10px;
    background: #ffffff;
    color: #000000;
}

.gallery-caption {
    padding: 15px;
    text-align: center;
    color: #083D59;
    font-weight: 600;
}

/* Testimonials */
.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 10px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: #083D59;
}

.testimonial-rating {
    color: #ffd700;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    background: #083D59;
    color: #fff;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
footer {
    background: #083D59;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p,
.footer-section ul {
    line-height: 1.8;
    color: #e0e0e0;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li i {
    color: #ffd700;
    margin-right: 10px;
    width: 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 15px;
    display: block;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #ffd700;
    color: #083D59;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #e0e0e0;
    font-size: 0.9rem;
}

/* Owl Carousel Custom */
.owl-theme .owl-nav {
    margin-top: 20px;
}

.owl-theme .owl-nav [class*='owl-'] {
    background: #083D59;
    color: #fff;
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 50px;
    margin: 5px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: #ffd700;
    color: #083D59;
}

.owl-theme .owl-dots .owl-dot span {
    background: #083D59;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #ffd700;
}

/* WhatsApp Sticky Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-sticky a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    animation: bounce 2s infinite;
}

.whatsapp-sticky a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Mobile Action Buttons */
.mobile-actions {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #083D59;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 998;
    gap: 10px;
}

.mobile-actions a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.mobile-call {
    background: #ffd700;
    color: #083D59;
}

.mobile-whatsapp {
    background: #25D366;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav ul {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background: #083D59;
        flex-direction: column;
        padding: 30px;
        gap: 1.5rem;
        transition: right 0.3s;
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    }
    
    nav ul.active {
        right: 0;
    }
    
    .hero-slider-side {
        padding: 20px 15px 0;
    }
    
    .services-grid,
    .benefit-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .before-after-container img {
        height: 250px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .whatsapp-sticky {
        display: none;
    }
    
    .mobile-actions {
        display: flex;
    }
    
    section {
        padding: 60px 20px 80px;
    }
}

@media (max-width: 480px) {
    #home h1 {
        font-size: 1.5rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .service-icon,
    .benefit-icon,
    .feature-icon {
        font-size: 2.5rem;
    }
}
