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

:root {
    --primary-color: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --secondary-color: #8b5cf6;
    --accent-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-dark: #f1f5f9;
    --bg-darker: #e2e8f0;
    --bg-card: #ffffff;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #10b981 0%, #34d399 50%, #8b5cf6 100%);
    --border-color: #cbd5e1;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.2);
    --section-padding: clamp(3rem, 6vw, 5rem);
    --navbar-height: 70px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #1e293b;
    background: #f8fafc;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* Modern Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 9999;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.02em;
    margin-right: auto;
    z-index: 10001;
    flex-shrink: 0;
    position: relative;
}

.logo-icon {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}

.logo-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    flex: 1;
    margin-left: 2rem;
    margin: 0;
    padding: 0;
}

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

.nav-menu li.nav-social-mobile {
    display: none;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    flex-shrink: 0;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--bg-gradient);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-light);
}

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

.facebook-btn {
    background: linear-gradient(135deg, #1877F2 0%, #0d5fcc 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
    white-space: nowrap;
}

.facebook-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.facebook-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.tiktok-btn {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.tiktok-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.tiktok-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    white-space: nowrap;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
    position: relative;
    flex-shrink: 0;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #475569;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section with Video */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    z-index: 1;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play button overlay for hero video (shows when autoplay is blocked) */
.hero-play {
    position: absolute;
    left: 50%;
    bottom: 22%;
    transform: translateX(-50%);
    z-index: 4;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    border: none;
    box-shadow: 0 8px 30px rgba(16,185,129,0.12);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.hero-play:hover { transform: translateX(-50%) scale(1.05); box-shadow: 0 12px 40px rgba(16,185,129,0.16); }


/* Background image replacement for hero video */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateZ(0);
    will-change: transform, background-position;
    filter: saturate(1.05) contrast(1.02);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(30, 41, 59, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--bg-gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(45, 134, 89, 0.4);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(45, 134, 89, 0.5);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-4px) scale(1.05);
}


.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 32px;
    height: 52px;
    border: 2.5px solid white;
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scroll 2s infinite;
}

/* Showcase Section */
.showcase {
    padding: var(--section-padding) 0;
    background: #ffffff;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 1rem;
}
.showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    border: 3px solid transparent;
}

.showcase-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.5s ease;
}

.showcase-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(2px);
}

.showcase-label h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.showcase-label p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.showcase-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.showcase-item:hover img {
    transform: scale(1.15);
    filter: brightness(0.7) saturate(1.3);
}

/* Service Highlights */
.service-highlights {
    padding: var(--section-padding) 0;
    background: #f1f5f9;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: #64748b;
    line-height: 1.7;
}

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

.highlight-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.highlight-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.highlight-card:hover .highlight-image img {
    transform: scale(1.2);
}

.highlight-content {
    padding: 1.75rem;
    text-align: center;
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.highlight-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.highlight-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: var(--section-padding) 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}

.service-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.service-content {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.service-content h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-content p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* Action Image Section */
.action-section {
    padding: 8rem 0;
    /* background image removed per request; use plain background or a video element inside the section */
    background: linear-gradient(180deg, rgba(248,250,252,1) 0%, rgba(241,245,249,1) 100%);
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.action-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(30, 41, 59, 0.4) 100%);
    z-index: 1;
}

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

.action-section .section-header {
    text-align: center;
}

.action-section .section-title {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.action-section .section-subtitle {
    color: #f1f5f9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.content-video {
    width: 100%;
    height: auto;
    display: block;
    min-height: 400px;
    max-height: 600px;
    object-fit: contain;
    background: #000;
    border: none;
    outline: none;
    cursor: pointer;
}

.content-video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.5);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 20px;
    min-height: 400px;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* About Section */
.about {
    padding: var(--section-padding) 0;
    background: #f1f5f9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image-main:hover img {
    transform: scale(1.1);
}

.about-image-secondary {
    width: 80%;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-left: auto;
    margin-top: -80px;
    position: relative;
    z-index: 1;
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image-secondary:hover img {
    transform: scale(1.1);
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--primary-color);
    margin: 1rem 0;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.feature-icon {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.feature:hover .feature-icon {
    color: white;
}

/* Gallery Section */
.gallery {
    padding: var(--section-padding) 0;
    background: #f1f5f9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    border: 3px solid transparent;
    transition: all 0.4s ease;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.gallery-item.before-after {
    aspect-ratio: auto;
}

.before-after-slider {
    width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
}

.slider-image-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 20px;
    cursor: col-resize;
}

.slider-image {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-image.before-image {
    left: 0;
    z-index: 1;
}

.slider-image.after-image {
    left: 0;
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.1s ease;
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-divider {
    position: absolute;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    z-index: 10;
    cursor: col-resize;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.divider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    box-shadow: 0 2px 15px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-handle::before,
.divider-handle::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.divider-handle::before {
    left: 8px;
    border-width: 6px 8px 6px 0;
    border-color: transparent var(--primary-color) transparent transparent;
}

.divider-handle::after {
    right: 8px;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent var(--primary-color);
}

.gallery-label {
    padding: 1.5rem;
    text-align: center;
    background: #ffffff;
    border-radius: 0 0 20px 20px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.gallery-label h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.gallery-label p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

.gallery-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
    transform: translateY(-5px);
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding) 0;
    background: #ffffff;
}

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

.testimonial-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid var(--primary-color);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-content span {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    padding: var(--section-padding) 0;
    background: #f1f5f9;
}

/* Map Section */
.map-section {
    padding: var(--section-padding) 0;
    background: #ffffff;
}

.map-container {
    width: 100%;
    margin-top: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-image {
    width: 100%;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--primary-light);
    transform: translateX(8px);
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-item p {
    color: #64748b;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.125rem 1.25rem;
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    color: #1e293b;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1), var(--shadow);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(226, 232, 240, 0.1);
}

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

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
    color: #cbd5e1;
    font-size: 1rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--primary-light);
    transform: translateX(6px);
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.social-link:hover {
    color: var(--primary-light);
    background: rgba(16, 185, 129, 0.1);
    transform: translateX(6px);
}

.social-icon {
    font-size: 1.5rem;
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(226, 232, 240, 0.1);
    color: #94a3b8;
    font-size: 0.95rem;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(24px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 180px);
    }
    
    .showcase-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 2rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .nav-buttons {
        gap: 0.5rem;
    }

    .facebook-btn,
    .tiktok-btn,
    .whatsapp-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-images {
        order: -1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .showcase-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .video-container {
        margin-top: 2rem;
    }
    
    .content-video {
        max-height: 500px;
    }
}

/* Prevent background scrolling when nav is open */
body.nav-open {
    overflow: hidden;
}

/* Reapply the decorative negative logo offset only on wide screens */
@media (min-width: 1261px) {
    .logo {
        margin-left: calc(-1 * clamp(1.5rem, 4vw, 3rem));
    }
    
    .nav-menu {
        display: flex;
        margin-left: 2rem;
    }
    
    .nav-buttons {
        display: flex;
    }
    
    .hamburger {
        display: none;
    }
}

@media (max-width: 1260px) {
    /* Backdrop overlay for mobile menu */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 9998;
        pointer-events: none;
    }

    .nav-menu.active::before {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Mobile navigation: off-canvas via transform for reliable hiding */
    .nav-menu {
        position: fixed;
        top: var(--navbar-height);
        left: -100%;
        right: auto;
        bottom: 0;
        width: 85%;
        max-width: 320px;
        flex-direction: column;
        background: #ffffff;
        box-sizing: border-box;
        padding: 1.5rem 1.25rem;
        padding-top: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        gap: 0;
        border-top: 1px solid rgba(226, 232, 240, 0.8);
        border-radius: 0;
        pointer-events: none;
        z-index: 10000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        height: calc(100vh - var(--navbar-height));
    }
    
    .nav-menu li:not(.nav-social-mobile) {
        display: block !important;
    }

    .nav-menu.active {
        left: 0 !important;
        pointer-events: auto !important;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(226, 232, 240, 0.5);
        list-style: none;
        margin: 0;
        padding: 0;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative;
        z-index: 1;
    }

    .nav-menu li:first-child {
        margin-top: 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu li.nav-social-mobile {
        border-bottom: none;
        padding: 0;
        margin-top: 0.75rem;
        padding-top: 1.25rem;
        border-top: 1px solid rgba(226, 232, 240, 0.8);
        display: flex !important;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .nav-menu li.nav-social-mobile a {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        background: rgba(71, 85, 105, 0.05);
        color: #475569 !important;
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s ease;
        font-weight: 600;
        font-size: 0.85rem;
        width: 100%;
        border: none;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-menu li.nav-social-mobile a span {
        font-size: 1.2rem;
    }

    .nav-menu li.nav-social-mobile a:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }

    .nav-menu li.nav-social-mobile a svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
        flex-shrink: 0;
    }

    .nav-link {
        display: block !important;
        padding: 0.875rem 0;
        font-size: 0.95rem;
        width: 100%;
        color: #1e293b !important;
        text-decoration: none;
        font-weight: 500;
        opacity: 1 !important;
        visibility: visible !important;
        transition: color 0.3s ease;
    }

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

    .nav-link::after {
        display: none !important;
    }

    .hamburger {
        display: flex;
        order: 3;
    }

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

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

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

    .nav-buttons {
        display: none;
    }



    .nav-wrapper {
        padding-left: clamp(1.5rem, 4vw, 3rem);
        padding-right: clamp(1.5rem, 4vw, 3rem);
        overflow: visible;
    }

    .navbar .container {
        padding: 0;
        overflow: visible;
    }

    .navbar {
        overflow: visible;
    }

    .logo {
        margin-left: 0;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-item.large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 65px;
    }

    .nav-wrapper {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-icon img {
        width: 40px;
        height: 40px;
    }

    .nav-menu {
        top: var(--navbar-height);
        padding: 2rem 1.5rem;
    }

    .nav-link {
        font-size: 1rem;
        padding: 1rem 0;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 3rem 0;
        --navbar-height: 60px;
    }
    
    .navbar {
        padding: 0;
    }

    .nav-wrapper {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 1.1rem;
        gap: 0.4rem;
    }

    .logo-icon img {
        width: 35px;
        height: 35px;
    }

    .hamburger {
        padding: 0.4rem;
    }

    .hamburger span {
        width: 24px;
        height: 2.5px;
    }

    .nav-menu {
        top: var(--navbar-height);
        padding: 1.5rem 1rem;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.875rem 0;
    }

    .nav-social-link-mobile {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .video-container {
        border-radius: 15px;
        margin-top: 1.5rem;
    }
    
    .content-video {
        max-height: 300px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .services-grid,
    .gallery-grid,
    .highlights-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-image-container {
        height: 300px;
    }
    
    .divider-handle {
        width: 40px;
        height: 40px;
    }
}
