/* ========================================
   Caring Hospitality - Main Stylesheet
   ======================================== */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --royal-gold: #D4AF37;
    --soft-beige: #F5F1E8;
    --deep-blue: #1a365d;
    --dark-blue: #2d4a7c;
    --light-gold: #E8D5A3;
    --white: #ffffff;
    --dark-gray: #333333;
    --light-gray: #f8f8f8;
    --text-gray: #666666;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Lato', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO STYLES ===== */
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 250px;
    overflow: hidden;
}

.logo a {
    display: flex;
    align-items: center;
    max-width: 100%;
}

.logo img {
    height: 55px !important;
    width: auto !important;
    max-width: 240px !important;
    max-height: 55px !important;
    object-fit: contain !important;
    object-position: left center;
    transition: all 0.3s ease;
    display: block;
}

.logo span {
    color: var(--royal-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--royal-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--dark-gray);
}

.dropdown-menu a:hover {
    background: var(--soft-beige);
    color: var(--deep-blue);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--deep-blue);
    transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--royal-gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--deep-blue);
    border: 2px solid var(--deep-blue);
}

.btn-secondary:hover {
    background: var(--deep-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 120px 2rem 80px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="150" height="150" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="premium-grid" x="0" y="0" width="150" height="150" patternUnits="userSpaceOnUse"><circle cx="75" cy="75" r="3" fill="rgba(212,175,55,0.12)"/><circle cx="25" cy="25" r="2" fill="rgba(212,175,55,0.1)"/><circle cx="125" cy="125" r="2" fill="rgba(212,175,55,0.1)"/><path d="M0 75 Q37.5 37.5 75 75 T150 75" stroke="rgba(212,175,55,0.1)" fill="none" stroke-width="1.5"/><path d="M75 0 Q37.5 37.5 75 75 T75 150" stroke="rgba(212,175,55,0.1)" fill="none" stroke-width="1.5"/></pattern></defs><rect width="150" height="150" fill="url(%23premium-grid)"/></svg>');
    opacity: 0.7;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-content::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero .tagline {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--royal-gold);
    font-weight: 600;
}

.hero .subtext {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--royal-gold);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card img {
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s ease;
    opacity: 0;
}

.service-card:hover::after {
    opacity: 1;
    transform: scale(1.5);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--soft-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--royal-gold);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--royal-gold);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    background: var(--soft-beige);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    color: var(--royal-gold);
    margin-bottom: 1rem;
}

.feature-card h4 {
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--light-gray);
    position: relative;
}

.testimonials .container {
    position: relative;
    z-index: 10;
}

.testimonials .services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    overflow: hidden;
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.testimonial-stars {
    color: var(--royal-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--deep-blue);
}

.testimonial-role {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--royal-gold);
    background: var(--white);
    color: var(--royal-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: var(--royal-gold);
    color: var(--white);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--royal-gold);
    transform: scale(1.3);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--deep-blue);
    color: var(--white);
    padding: 60px 2rem 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--royal-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: var(--white);
    margin-bottom: 0.75rem;
    display: block;
}

.footer-section a:hover {
    color: var(--royal-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--royal-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white) !important;
}

.footer-bottom p {
    color: var(--white) !important;
}

.footer-bottom a {
    color: var(--white) !important;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--royal-gold) !important;
}

/* ===== WHATSAPP WIDGET ===== */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--white);
    font-size: 2rem;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--dark-blue) 100%);
    padding: 150px 2rem 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="120" height="120" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="premium-banner" x="0" y="0" width="120" height="120" patternUnits="userSpaceOnUse"><circle cx="60" cy="60" r="4" fill="rgba(212,175,55,0.15)"/><circle cx="20" cy="20" r="2" fill="rgba(212,175,55,0.12)"/><circle cx="100" cy="100" r="2" fill="rgba(212,175,55,0.12)"/><path d="M0 60 Q30 30 60 60 T120 60" stroke="rgba(212,175,55,0.1)" fill="none" stroke-width="1.5"/><path d="M60 0 Q30 30 60 60 T60 120" stroke="rgba(212,175,55,0.1)" fill="none" stroke-width="1.5"/><path d="M0 0 L120 120 M120 0 L0 120" stroke="rgba(212,175,55,0.08)" stroke-width="0.5"/></pattern></defs><rect width="120" height="120" fill="url(%23premium-banner)"/></svg>');
    opacity: 0.5;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.page-banner h1 {
    position: relative;
    z-index: 2;
    color: var(--white) !important;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.page-banner p {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.2rem;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-vision {
    background: var(--soft-beige);
    margin: 4rem 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mv-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.mv-icon {
    font-size: 3.5rem;
    color: var(--royal-gold);
    margin-bottom: 1.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-photo {
    width: 100%;
    height: 300px;
    background: var(--soft-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--royal-gold);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.team-info {
    padding: 2rem;
}

.team-info h3 {
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
}

.team-role {
    color: var(--royal-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--soft-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--deep-blue);
}

.team-social a:hover {
    background: var(--royal-gold);
    color: var(--white);
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    background: var(--soft-beige);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 2rem;
}

/* ===== CONTACT FORM ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--soft-beige);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--royal-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info {
    background: var(--soft-beige);
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--royal-gold);
    margin-top: 0.25rem;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
}

.contact-details p,
.contact-details a {
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}

.map-container {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===== SERVICE PAGE ===== */
.service-banner {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--dark-blue) 100%);
    padding: 150px 2rem 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="premium-pattern" x="0" y="0" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="100" cy="100" r="2" fill="rgba(212,175,55,0.1)"/><circle cx="50" cy="50" r="1.5" fill="rgba(212,175,55,0.15)"/><circle cx="150" cy="150" r="1.5" fill="rgba(212,175,55,0.15)"/><path d="M0 100 Q50 50 100 100 T200 100" stroke="rgba(212,175,55,0.08)" fill="none" stroke-width="1"/><path d="M0 0 L200 200 M200 0 L0 200" stroke="rgba(212,175,55,0.05)" stroke-width="1"/></pattern></defs><rect width="200" height="200" fill="url(%23premium-pattern)"/></svg>');
    opacity: 0.6;
}

.service-banner h1 {
    color: var(--white) !important;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.service-banner p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.service-content {
    max-width: 900px;
    margin: 3rem auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

.service-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

.service-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.service-content li {
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.service-cta {
    text-align: center;
    margin: 3rem 0;
    padding: 3rem;
    background: var(--soft-beige);
    border-radius: 12px;
}

/* ===== PREMIUM DECORATIVE ELEMENTS ===== */
.premium-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.deco-circle {
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.deco-square {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transform: rotate(45deg);
    animation: rotate 20s linear infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.premium-icon-bg {
    position: absolute;
    font-size: 200px;
    opacity: 0.03;
    color: var(--royal-gold);
    z-index: 0;
    pointer-events: none;
}

.section {
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 54, 93, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Force testimonials to be visible immediately */
.testimonials .testimonial-card {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    display: block !important;
}

.testimonials .testimonial-card.scroll-reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    display: block !important;
}

.testimonials .services-grid {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 1rem;
        align-items: stretch;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        display: block;
    }
    
    .nav-menu a {
        width: 100%;
        display: block;
        padding: 0.75rem 1rem;
        text-align: left;
    }
    
    .dropdown > a {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        background: var(--soft-beige);
        margin-top: 0;
        padding: 0;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        margin-top: 0.5rem;
        padding: 1rem 0;
    }
    
    .dropdown > a .fa-chevron-down {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active > a .fa-chevron-down {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        width: 100%;
    }
    
    .dropdown-menu a {
        width: 100%;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1.1rem;
    }

    .section {
        padding: 60px 1.5rem;
    }

    .services-grid,
    .features-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    /* Logo responsive styles */
    .logo img {
        height: 50px !important;
        max-width: 220px !important;
        max-height: 50px !important;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero {
        padding: 100px 1rem 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .page-banner h1 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Logo responsive styles */
    .logo img {
        height: 38px !important;
        max-width: 170px !important;
        max-height: 38px !important;
    }
    
    .logo {
        max-width: 180px;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
    }
}

