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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fefdf8 0%, #fffbeb 100%);
    min-height: 100vh;
}

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

/* Header Styles */
header {
    background: rgba(45, 45, 45, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fef9e7;
    text-decoration: none;
}

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

nav a {
    color: #fef9e7;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

nav a:hover,
nav a.active {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.15);
}

/* ------------------------------------------------------- */

/* WhatsApp Floating Pill Button */
.whatsapp-pill {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f1f1f;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.whatsapp-pill img {
    width: 22px;
    height: 22px;
}

.whatsapp-pill:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

/* ----------------------------------------------------------------------------- */

/* Main Content */
.main-content {
    margin-top: 100px;
    padding: 2rem 0;
}

.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-content {
    padding: 2rem;
}

.section-title {
    font-size: 2.5rem;
    color: #272733;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #eab308 50%, #ca8a04 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-content {
    color: #272733;
    font-size: 1.1rem;
    line-height: 1.8;
}

.section-content p {
    margin-bottom: 1rem;
}

/* Image Slideshow Styles */
.image-content {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-fallback {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: white;
    background: linear-gradient(135deg, #f59e0b 0%, #eab308 50%, #ca8a04 100%);
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(235, 228, 228, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.control-dot.active {
    background: #ebe4e4;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(39, 39, 51, 0.1);
    border-radius: 20px;
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.contact-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-title {
    font-size: 2.5rem;
    color: #272733;
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.2rem;
    color: #272733;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #eab308 50%, #ca8a04 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

/* Footer */
footer {
    background: rgba(39, 39, 51, 0.9);
    color: #fef9e7;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

@keyframes twinkle {
    0%   { opacity: 0.4; transform: scale(0.9); }
    50%  { opacity: 1;   transform: scale(1.1); }
    100% { opacity: 0.5; transform: scale(1); }
}
