/* Add version marker for cache busting */
/* Version: 1.1.3 */

:root {
    --primary-color: #EEC9D2; /* Dusty Pink / Blush */
    --secondary-color: #D6CFCB; /* Soft Taupe */
    --accent-color: #D4AF7F; /* Rose Gold */
    --light-bg: #F5EDE4; /* Warm Beige */
    --white: #FFFFFF;
    --text-color: #4A4A4A;
    --shadow-color: rgba(0, 0, 0, 0.08);
    --vh: 1vh; /* Custom viewport height for mobile fix */
}

/* Add font fallbacks */
@font-face {
    font-family: 'Poppins Fallback';
    font-style: normal;
    font-weight: 400;
    src: local('Arial');
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Poppins Fallback', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 100%; /* Base font size for better responsive scaling */
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    font-weight: 300;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Prevent inline image gaps */
    object-fit: cover; /* Maintain aspect ratio while filling container */
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 40px; /* Height of the announcement bar */
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px var(--shadow-color);
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 10px;
}

.logo-text span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

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

.nav-links li a:hover {
    color: var(--accent-color);
}

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

.nav-cta {
    background-color: var(--accent-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-color);
    background-color: var(--accent-color);
}

.nav-cta::after {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

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

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

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

.header {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('img/hero_image.jpg');
    background-size: cover;
    background-position: center;
    height: 75vh; /* Reduced from 100vh */
    height: calc(var(--vh, 1vh) * 75); /* Mobile viewport height fix - reduced to 75% */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    margin-top: 110px; /* navbar height + announcement bar height */
    position: relative;
    overflow: hidden;
}

/* Header video styles */
.header-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end; /* Align to the right */
    padding: 0 20px;
    max-width: 65%; /* Limit width to allow space for video */
    margin-left: auto; /* Push to the right */
}

.header-content h1 {
    text-align: right;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    letter-spacing: 1px;
    animation: fadeInRight 1s ease-out;
}

.header-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    animation: expandWidth 1.2s ease-out forwards;
}

.header-content p {
    text-align: right;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInRight 1.3s ease-out;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.header-content .cta-button {
    animation: fadeInUp 1.5s ease-out;
    align-self: flex-end;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.header-video-container {
    position: absolute;
    top: 50%;
    left: 20px; 
    width: 300px;
    height: 500px;
    overflow: hidden;
    z-index: 1;
    border-radius: 0 10px 10px 0;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%);
    background-color: var(--light-bg);
    transition: all 0.3s ease;
    animation: fadeInLeft 1.2s ease-out;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-left: none;
}

.header-video-container:hover {
    transform: translateY(-50%) scale(1.02);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.25);
}

.header-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.header-video:hover {
    opacity: 1;
}

.header-video-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    z-index: 2;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate(-30px, -50%);
    }
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

/* Add decorative element to video container */
.header-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

/* Responsive adjustments for header video */
@media (max-width: 992px) {
    .header-video-container {
        width: 250px;
        height: 400px;
    }
    
    .header-content {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .header {
        height: 70vh;
        height: calc(var(--vh, 1vh) * 70);
        margin-top: 95px;
    }
    
    .header-video-container {
        width: 200px;
        height: 320px;
        margin: 10px 0;
        left: 15px; /* Less padding on smaller screens */
    }
    
    .header-content {
        max-width: 60%;
    }
    
    .header-content h1 {
        font-size: 1.8rem;
    }
    
    .header-content h1::after {
        width: 60px;
        bottom: -8px;
    }
}

@media (max-width: 576px) {
    .header {
        height: 65vh;
        height: calc(var(--vh, 1vh) * 65);
    }
    
    .header-video-container {
        width: 150px;
        height: 260px;
        margin: 5px 0;
        left: 10px; /* Even less padding on mobile */
    }
    
    .header-content {
        max-width: 65%;
    }
    
    .header-content h1 {
        font-size: 1.6rem;
    }
    
    .header-content h1::after {
        width: 50px;
        bottom: -5px;
    }
}

@media (max-width: 390px) {
    .header-video-container {
        width: 120px;
        height: 200px;
        left: 5px; /* Minimal padding on very small screens */
    }
    
    .header-content {
        max-width: 65%;
    }
}

.header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 600;
    letter-spacing: 1px;
}

.header p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease-in;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    max-width: 700px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    animation: fadeIn 2s ease-in;
    border: 2px solid var(--accent-color);
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background-color: transparent;
    color: var(--white);
}

section {
    padding: 100px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.about-section {
    background-color: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-content h2 {
    color: var(--text-color);
    margin-bottom: 30px;
}

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

/* Work link in about section */
.work-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-top: 25px;
}

.work-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

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

.work-link:hover i {
    transform: translateX(4px);
}

/* Responsive adjustments for work link */
@media (max-width: 768px) {
    .work-link {
        padding: 8px 18px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .work-link {
        padding: 8px 16px;
        font-size: 0.9rem;
        margin-top: 20px;
    }
}

/* Founder Section Styles */
.founder-section {
    background-color: var(--light-bg);
    padding: 120px 0;
}

.founder-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.founder-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px var(--shadow-color);
    border: 5px solid var(--white);
    transition: all 0.3s ease;
}

.founder-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.founder-info {
    flex: 1.5;
    min-width: 300px;
}

.founder-info h3 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.founder-title {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
    opacity: 0.8;
}

.founder-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.founder-info p:nth-child(4) {
    font-style: italic;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    margin: 30px 0;
}

.founder-credentials {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.credential i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .founder-content {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .founder-info p:nth-child(4) {
        border-left: none;
        border-top: 3px solid var(--primary-color);
        border-bottom: 3px solid var(--primary-color);
        padding: 20px 0;
        margin: 30px auto;
        max-width: 90%;
    }
    
    .founder-credentials {
        align-items: center;
    }
}

.services {
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.service-img {
    margin-bottom: 20px;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--light-bg); /* Show background while image loads */
}

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

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card .button-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.service-card .learn-more {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.service-card .learn-more:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.testimonials {
    background-color: var(--white);
}

.testimonial-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0 5px 15px var(--shadow-color);
    border: none;
    position: relative;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.testimonial-card h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.gallery-section {
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: var(--white);
}

.gallery-slider {
    padding-bottom: 50px; /* Space for pagination */
}

.gallery-item {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    border: none;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.why-choose-us {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-color);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(transparent, rgba(238, 201, 210, 0.1));
    transition: height 0.3s ease;
}

.feature-card:hover::after {
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.feature-card i {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* Google Reviews Section */
.google-reviews {
    background-color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.google-rating {
    max-width: 500px;
    margin: 0 auto 50px;
}

.rating-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-logo img {
    max-width: 120px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.google-logo span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
}

.rating-stars {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
}

.stars {
    margin: 10px 0;
}

.stars i {
    color: #FFCC00;
    font-size: 1.5rem;
    margin: 0 2px;
}

.total-reviews {
    font-size: 1rem;
    opacity: 0.8;
}

.reviews-slider {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px;
}

.review-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 20px var(--shadow-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-left: 4px solid var(--accent-color);
}

.reviewer-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: flex-start;
}

.reviewer-name h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

.review-date {
    font-size: 0.85rem;
    opacity: 0.7;
}

.review-rating i {
    color: #FFCC00;
    font-size: 0.9rem;
}

.review-text {
    flex-grow: 1;
    line-height: 1.7;
}

.review-text p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.review-text p:last-child {
    margin-bottom: 0;
}

.reviews-cta {
    margin-top: 60px;
    padding: 30px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    color: var(--white);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-cta p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.reviews-cta .cta-button {
    background-color: var(--white);
    color: var(--accent-color);
    border: 2px solid var(--white);
}

.reviews-cta .cta-button:hover {
    background-color: transparent;
    color: var(--white);
}

.reviews-slider .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.reviews-slider .swiper-button-next,
.reviews-slider .swiper-button-prev {
    color: var(--accent-color);
    width: 44px;
    height: 44px;
    margin-top: -22px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 10px var(--shadow-color);
    transition: all 0.3s ease;
}

.reviews-slider .swiper-button-next:hover,
.reviews-slider .swiper-button-prev:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: scale(1.1);
}

.reviews-slider .swiper-button-next::after,
.reviews-slider .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

/* Add testimonials slider button styles */
.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev {
    color: var(--accent-color);
    width: 44px;
    height: 44px;
    margin-top: -22px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 10px var(--shadow-color);
    transition: all 0.3s ease;
}

.testimonial-slider .swiper-button-next:hover,
.testimonial-slider .swiper-button-prev:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: scale(1.1);
}

.testimonial-slider .swiper-button-next::after,
.testimonial-slider .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .review-card {
        padding: 20px;
    }
    
    .reviewer-info {
        flex-direction: column;
    }
    
    .review-rating {
        margin-top: 10px;
    }
    
    .reviews-cta {
        padding: 20px;
    }
    
    /* Mobile styles for navigation buttons */
    .reviews-slider .swiper-button-next,
    .reviews-slider .swiper-button-prev,
    .testimonial-slider .swiper-button-next,
    .testimonial-slider .swiper-button-prev {
        width: 36px;
        height: 36px;
        margin-top: -18px;
    }
    
    .reviews-slider .swiper-button-next::after,
    .reviews-slider .swiper-button-prev::after,
    .testimonial-slider .swiper-button-next::after,
    .testimonial-slider .swiper-button-prev::after {
        font-size: 14px;
    }
}

.contact-section {
    background-color: var(--light-bg);
    padding: 100px 0;
}

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

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px var(--shadow-color);
    border: none;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 127, 0.1);
}

.whatsapp-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    margin-top: 30px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    border: none;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.location-section {
    background-color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.map-container {
    max-width: 1000px;
    margin: 40px auto 0;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px var(--shadow-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-button {
    padding: 15px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: all 0.3s ease;
}

.floating-button i {
    font-size: 1.5rem;
}

.floating-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.floating-button span {
    position: absolute;
    white-space: nowrap;
    right: 70px;
    padding: 5px 15px;
    background: var(--white);
    color: var(--text-color);
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 2px 10px var(--shadow-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-button:hover span {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

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

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }
    
    .header p {
        font-size: 1.2rem;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        box-shadow: 5px 0 15px var(--shadow-color);
        z-index: 1000;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button {
        width: 50px;
        height: 50px;
    }
    
    section h2 {
        font-size: 2rem;
    }
}

/* Enhanced Media Queries */
@media (max-width: 1200px) {
    html {
        font-size: 95%;
    }
    
    .container {
        max-width: 95%;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    html {
        font-size: 90%;
    }
    
    section {
        padding: 70px 0;
    }
    
    .header h1 {
        font-size: 3rem;
    }
    
    .header p {
        font-size: 1.3rem;
        max-width: 90%;
    }
    
    .founder-content,
    .services-grid,
    .features-grid {
        gap: 25px;
    }
    
    .service-img {
        height: 160px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .review-card {
        padding: 25px;
    }
    
    .floating-cta {
        bottom: 25px;
        right: 25px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 85%;
    }
    
    section {
        padding: 60px 0;
    }
    
    .header {
        height: 90vh;
        margin-top: 95px;
    }
    
    .header h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .header p {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 12px 25px;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        box-shadow: 5px 0 15px var(--shadow-color);
        z-index: 1000;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .service-img {
        height: 140px;
    }
    
    .service-card .button-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button {
        width: 50px;
        height: 50px;
    }
    
    .floating-button i {
        font-size: 1.2rem;
    }
    
    .map-container {
        height: 350px;
    }
    
    .reviews-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 80%;
    }
    
    section {
        padding: 50px 0;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .navbar-container {
        padding: 0 15px;
    }
    
    .header {
        height: 85vh;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .header p {
        font-size: 1.1rem;
    }
    
    .founder-image img {
        max-width: 250px;
    }
    
    .service-card,
    .feature-card,
    .review-card {
        padding: 20px 15px;
    }
    
    .service-img {
        height: 130px;
        margin-bottom: 15px;
    }
    
    .service-card i,
    .feature-card i {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px;
    }
    
    .rating-number {
        font-size: 2.5rem;
    }
    
    .stars i {
        font-size: 1.2rem;
    }
    
    .review-text p {
        font-size: 0.95rem;
    }
    
    .floating-cta {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .floating-button {
        width: 45px;
        height: 45px;
    }
    
    .floating-button span {
        display: none;
    }
    
    /* Smaller button styles for mobile */
    .reviews-slider .swiper-button-next,
    .reviews-slider .swiper-button-prev,
    .testimonial-slider .swiper-button-next,
    .testimonial-slider .swiper-button-prev {
        width: 32px;
        height: 32px;
        margin-top: -16px;
    }
    
    .reviews-slider .swiper-button-next::after,
    .reviews-slider .swiper-button-prev::after,
    .testimonial-slider .swiper-button-next::after,
    .testimonial-slider .swiper-button-prev::after {
        font-size: 12px;
    }
}

/* Samsung S24 and other modern smartphones specific adjustments */
@media (max-width: 412px) {
    html {
        font-size: 75%;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .header {
        height: 80vh;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .header p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    section h2 {
        font-size: 1.7rem;
    }
    
    section h2::after {
        width: 60px;
    }
    
    .founder-content {
        flex-direction: column;
    }
    
    .founder-image img {
        max-width: 200px;
    }
    
    .founder-info h3 {
        font-size: 1.5rem;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .feature-card,
    .review-card {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .service-img {
        height: 120px;
    }
    
    .reviews-cta {
        padding: 15px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .map-container {
        height: 250px;
    }
    
    .floating-cta {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-button {
        width: 40px;
        height: 40px;
    }
    
    .floating-button i {
        font-size: 1rem;
    }
    
    .services-grid {
        gap: 15px;
    }
    
    .nav-links.active {
        width: 85%;
    }
    
    .cta-button, 
    .nav-cta {
        padding: 8px 16px;
        font-size: 0.85rem;
        border-radius: 25px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .testimonial-slider .swiper-slide {
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 15px;
        margin: 10px 0;
    }
    
    .review-card {
        padding: 15px;
    }
    
    .review-text p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .service-card .button-group {
        flex-direction: column;
        gap: 8px;
    }
    
    /* Extra small navigation buttons */
    .reviews-slider .swiper-button-next,
    .reviews-slider .swiper-button-prev,
    .testimonial-slider .swiper-button-next,
    .testimonial-slider .swiper-button-prev {
        width: 28px;
        height: 28px;
        margin-top: -14px;
    }
    
    .reviews-slider .swiper-button-next::after,
    .reviews-slider .swiper-button-prev::after,
    .testimonial-slider .swiper-button-next::after,
    .testimonial-slider .swiper-button-prev::after {
        font-size: 10px;
    }
}

/* Specific fixes for very tall displays like Samsung S24 and similar */
@media (max-height: 900px) and (max-width: 412px) {
    .header {
        height: 70vh;
    }
    
    section {
        padding: 30px 0;
    }
    
    .founder-section {
        padding: 50px 0;
    }
    
    .google-reviews {
        padding: 50px 0;
    }
}

/* Fix for S24 Ultra and larger phones */
@media (min-width: 390px) and (max-width: 500px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .header p {
        font-size: 1.1rem;
    }
}

/* Fix for extremely narrow devices and fold phones */
@media (max-width: 350px) {
    html {
        font-size: 70%;
    }
    
    .header h1 {
        font-size: 1.5rem;
    }
    
    .floating-cta {
        right: 5px;
        bottom: 5px;
    }
    
    .floating-button {
        width: 35px;
        height: 35px;
    }
    
    .service-card .button-group {
        flex-direction: column;
        gap: 8px;
    }
}

/* Fix for devices with notches and cutouts including Samsung S24 series */
@supports (padding: max(0px)) {
    .navbar, 
    .floating-cta {
        padding-left: max(10px, env(safe-area-inset-left));
        padding-right: max(10px, env(safe-area-inset-right));
    }
    
    .floating-cta {
        bottom: max(10px, env(safe-area-inset-bottom));
        right: max(10px, env(safe-area-inset-right));
    }
}

/* Touch optimization for all mobile devices */
@media (hover: none) and (pointer: coarse) {
    /* Optimize touch interactions */
    input, select, textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .cta-button:active,
    .floating-button:active {
        transform: scale(0.97);
    }
    
    /* Fix mobile tap issues */
    .nav-links li a,
    .service-card .cta-button,
    .floating-button {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Touch device optimizations */
.touch-device .service-card:hover,
.touch-device .feature-card:hover,
.touch-device .founder-image img:hover,
.touch-device .gallery-item:hover img,
.touch-device .floating-button:hover {
    transform: none; /* Disable hover effects on touch devices */
}

.touch-device .floating-button:hover span {
    opacity: 0;
    visibility: hidden;
}

/* Announcement Bar Styles */
.announcement-bar {
    background: linear-gradient(to right, var(--accent-color), var(--primary-color));
    color: var(--white);
    padding: 10px 20px;
    text-align: center;
    font-size: 0.95rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.announcement-content i {
    font-size: 1.1rem;
}

.promo-code {
    background-color: rgba(255, 255, 255, 0.25);
    padding: 2px 8px;
    border-radius: 4px;
    margin: 0 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.announcement-close {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1rem;
    padding: 0 10px;
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s ease;
}

.announcement-close:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Responsive adjustments for announcement bar */
@media (max-width: 768px) {
    .announcement-bar {
        padding: 8px 40px 8px 20px;
        font-size: 0.85rem;
    }
    
    .navbar {
        top: 35px; /* Slightly smaller on mobile */
    }
    
    .header {
        margin-top: 95px;
    }
}

@media (max-width: 576px) {
    .announcement-content p {
        line-height: 1.4;
    }
    
    .announcement-close {
        padding: 8px;
    }
}

@media (max-width: 412px) {
    .announcement-bar {
        padding: 8px 35px 8px 15px;
        font-size: 0.8rem;
    }
}

/* Fix responsive issues */

/* Improve image control for all devices */
img {
    max-width: 100%;
    height: auto;
    display: block; /* Prevent inline image gaps */
    object-fit: cover; /* Maintain aspect ratio while filling container */
}

/* Ensure proper image sizing in service cards */
.service-img {
    margin-bottom: 20px;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--light-bg); /* Show background while image loads */
}

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

/* Ensure all mobile devices display properly */
@media screen and (max-width: 767px) {
    /* Fix service cards layout */
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 25px;
    }
    
    /* Control image sizes */
    .service-img {
        height: 160px;
        margin: 0 auto 15px;
    }
    
    /* Fix founder image size */
    .founder-image img {
        max-width: 250px;
        height: auto;
        margin: 0 auto;
    }
    
    /* Fix testimonial card issues */
    .testimonial-card, .review-card {
        margin: 10px 5px;
        padding: 20px 15px;
    }
    
    /* Fix button alignment in service cards */
    .service-card .button-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .service-card .button-group a {
        width: 100%;
    }
    
    /* Improve announcement bar on mobile */
    .announcement-bar {
        padding: 8px 35px 8px 15px;
        font-size: 0.85rem;
    }
    
    /* Fix header content for mobile */
    .header h1 {
        font-size: 2.2rem;
        padding: 0 15px;
    }
    
    .header p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

/* Specific fixes for small phones */
@media screen and (max-width: 375px) {
    html {
        font-size: 14px; /* Base font size adjustment for very small screens */
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .service-img {
        height: 140px;
    }
    
    /* Fix review cards layout */
    .review-card {
        padding: 15px 12px;
    }
    
    .reviewer-name h4 {
        font-size: 1rem;
    }
    
    .review-text p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Fix for Samsung Galaxy Fold and other narrow devices */
@media screen and (max-width: 320px) {
    html {
        font-size: 13px;
    }
    
    .header h1 {
        font-size: 1.5rem;
    }
    
    .service-img {
        height: 130px;
    }
    
    .announcement-content p {
        font-size: 0.75rem;
    }
}

/* Fix for notched iPhones and Samsung S series */
@supports (padding: env(safe-area-inset-top)) {
    .announcement-bar,
    .navbar-container,
    .container {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .floating-cta {
        bottom: max(15px, env(safe-area-inset-bottom));
        right: max(15px, env(safe-area-inset-right));
    }
}

/* Fix for menu open state - prevent background scrolling */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Fix iOS keyboard issue */
body.ios-keyboard-open {
    position: relative;
}

/* Improve nav menu display on mobile */
@media (max-width: 767px) {
    .nav-links.active {
        width: 100%;
        overflow-y: auto;
        padding-top: 70px; /* Space for navbar */
        padding-bottom: 50px;
    }
    
    .nav-links li a {
        padding: 12px 0;
        display: inline-block;
        width: 80%;
        text-align: center;
    }
    
    .nav-links li .nav-cta {
        margin-top: 15px;
        padding: 12px 30px;
        display: inline-block;
    }
}

/* Fix swiper lazy loading images */
.swiper-lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swiper-lazy-loaded {
    opacity: 1;
}

/* Updated Gallery Section for uniform image size */
.gallery-item.before-after-single {
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 450px; /* Fixed height for all slides */
    width: 100%;
    background-color: var(--light-bg);
}

.gallery-item.before-after-single img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Show the full image without cropping */
    border-radius: 10px;
    padding: 10px; /* Add padding around the image */
}

/* Improved navigation buttons with custom styling */
.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
    color: transparent;
    background-color: rgba(255, 255, 255, 0.8);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.gallery-slider .swiper-button-next:hover,
.gallery-slider .swiper-button-prev:hover {
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-slider .swiper-button-next::after,
.gallery-slider .swiper-button-prev::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 18px;
    color: var(--accent-color);
}

.gallery-slider .swiper-button-next::after {
    content: '\f054'; /* fa-chevron-right */
}

.gallery-slider .swiper-button-prev::after {
    content: '\f053'; /* fa-chevron-left */
}

/* Mobile adjustments for gallery */
@media (max-width: 768px) {
    .gallery-item.before-after-single {
        height: 350px; /* Smaller height on tablets */
    }
    
    .gallery-slider .swiper-button-next,
    .gallery-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .gallery-slider .swiper-button-next::after,
    .gallery-slider .swiper-button-prev::after {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .gallery-item.before-after-single {
        height: 280px; /* Smaller height on mobile */
    }
    
    .gallery-slider .swiper-button-next,
    .gallery-slider .swiper-button-prev {
        width: 36px;
        height: 36px;
    }
    
    .gallery-slider .swiper-button-next::after,
    .gallery-slider .swiper-button-prev::after {
        font-size: 14px;
    }
}

/* Updated Gallery Section styling */
.section-description {
    text-align: center;
    max-width: 800px;
    margin: -20px auto 30px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.gallery-item.before-after-single:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.gallery-slider .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

/* Video play button for when autoplay is blocked */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--accent-color);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.video-play-button:hover {
    background-color: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive adjustments for video play button */
@media (max-width: 768px) {
    .video-play-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .video-play-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Video tag styles */
.video-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-tag i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.video-tag:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.video-tag:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .video-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 576px) {
    .video-tag {
        padding: 5px 10px;
        font-size: 0.75rem;
        bottom: 8px;
        right: 8px;
    }
}

/* Service Page Styles */
.service-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 70px; /* Account for navbar */
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.service-details {
    padding: 100px 0;
    background-color: var(--white);
}

.service-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.service-info {
    flex: 2;
}

.service-info h2 {
    color: var(--text-color);
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

.service-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-type {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow-color);
    transition: all 0.3s ease;
}

.service-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.service-type h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-type h3 i {
    font-size: 1.3rem;
}

.service-type p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.service-image {
    flex: 1;
    text-align: center;
}

.service-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.3s ease;
}

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

.service-benefits {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.service-benefits h2 {
    text-align: center;
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 600;
    position: relative;
}

.service-benefits h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

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

.benefit-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-color);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--shadow-color);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.appointment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    text-align: center;
}

.appointment-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.appointment-card h2 {
    color: var(--text-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.appointment-card p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.appointment-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.appointment-buttons .whatsapp-button {
    background-color: #25D366;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid #25D366;
}

.appointment-buttons .whatsapp-button:hover {
    background-color: transparent;
    color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.appointment-buttons .call-button {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.appointment-buttons .call-button:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 127, 0.3);
}

.service-footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.service-footer p {
    margin: 0 0 10px 0;
    font-size: 0.9rem;
}

.service-footer a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* Responsive styles for service pages */
@media (max-width: 992px) {
    .service-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-hero p {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 80px;
    }
    
    .service-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-hero p {
        font-size: 1rem;
    }
    
    .service-details,
    .service-benefits,
    .appointment-section {
        padding: 60px 0;
    }
    
    .service-types {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .appointment-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .appointment-buttons .whatsapp-button,
    .appointment-buttons .call-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .appointment-card {
        padding: 35px 25px;
        margin: 0 20px;
    }
}

@media (max-width: 576px) {
    .service-hero {
        padding: 100px 0 60px;
    }
    
    .service-hero h1 {
        font-size: 1.8rem;
    }
    
    .service-info h2 {
        font-size: 1.8rem;
    }
    
    .service-benefits h2 {
        font-size: 2rem;
    }
    
    .appointment-card h2 {
        font-size: 1.8rem;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .service-type {
        padding: 20px;
    }
} 