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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #F7F6F2;
    opacity: 1 !important;
    visibility: visible !important;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    color: #2563eb;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-logo img {
    height: 60px;
    width: auto;
    border-radius: 10px;
    object-fit: contain;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Lighter Gradient Overlay for Background Image */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: none;
    position: relative;
    color: white;
    padding: 0 0 0 0;
    overflow: hidden;
    z-index: 1;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/Background.jpeg') center/cover no-repeat;
    opacity: 1;
    z-index: 1;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    opacity: 1;
    z-index: 2;
    pointer-events: none;
}
.hero .container {
    position: relative;
    z-index: 3;
}
.hero-wave {
    display: none !important;
}
@keyframes heroGradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* Calling Animation for Phone Number */
@keyframes calling {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(217, 119, 6, 0);
    }
}

/* Test Animation for WhatsApp */
@keyframes testAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-3px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(3px);
    }
}
.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 24px rgba(0,0,0,0.15);
    letter-spacing: -1px;
    color: #fff;
}
.hero-content h1 .accent {
    color: #fbbf24;
    font-weight: 900;
}
.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
    color: #fff;
    font-weight: 700;
}
.hero-content p.service-areas {
    color: #FFFF00;
    font-weight: 700;
    font-size: 1.8rem;
}
.hero-content .contact-info p.contact-number {
    color: #FFFF00;
    font-weight: 700;
    font-size: 1.3rem;
}
.hero-content .contact-info p.whatsapp-label {
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline;
}
.hero-content .contact-info p.whatsapp-booking {
    background: linear-gradient(135deg, #00FF00 0%, #FF8C00 50%, #00FF00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.3rem;
    display: inline;
    margin-left: 0.5em;
    animation: testAnimation 2s ease-in-out infinite;
}
.hero-contact-number {
    background: rgba(251, 191, 36, 0.3); /* transparent yellow */
    padding: 0.2rem 0.7rem;
    border-radius: 6px;
}
.hero-whatsapp {
    background: rgba(5, 150, 105, 0.18); /* transparent green */
    padding: 0.2rem 0.7rem;
    border-radius: 6px;
}
.cta-button {
    display: inline-block;
    background: #fbbf24;
    color: #1f2937;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}
.cta-button:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}
.hero-image {
    flex: 1;
    text-align: center;
}
.hero-image img {
    height: 60px;
    width: auto;
    border-radius: 10px;
    object-fit: contain;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
/* Services Section */
.services {
    padding: 0 0;
    background: #f8fafc;
}
.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.service-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}
.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}
.service-card p {
    color: #6b7280;
}

/* Prices Section */
.prices {
    padding: 0 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.prices::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}
.prices h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    position: relative;
    z-index: 2;
}
.prices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}
.price-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 2.5rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #eab308);
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.5);
}
.price-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.price-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}
.price-card:hover::after {
    opacity: 1;
}
.price-card i {
    font-size: 3rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    transition: all 0.3s ease;
}
.price-card:hover i {
    transform: scale(1.1);
    text-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
}
.price-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.price-card p {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
    padding: 0.8rem 1.2rem;
    border-radius: 15px;
    border: 2px solid rgba(251, 191, 36, 0.3);
    display: inline-block;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.2);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.price-card:hover p {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(245, 158, 11, 0.3));
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 0 0;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 0;
}
.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}
.about-text p {
    margin-bottom: 0.8rem;
    color: #6b7280;
    font-size: 1.1rem;
}
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.stat {
    text-align: center;
}
.stat h3 {
    font-size: 2.5rem;
    color: #2563eb;
    font-weight: 700;
}
.stat p {
    color: #6b7280;
    font-weight: 500;
}
.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
/* Gallery Section */
.gallery {
    padding: 0 0;
    background: #f8fafc;
}
.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.gallery-item {
    aspect-ratio: 16/9;
    height: auto;
    min-height: 220px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-item:hover {
    transform: scale(1.05);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    max-width: 100%;
}
/* Video Section */
.video-section {
    padding: 0 0;
}
.video-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}
.video-container {
    max-width: 800px;
    margin: 0 auto;
}
.video-container video {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
/* Contact Section */
.contact {
    padding: 0 0;
    background: #f8fafc;
}
.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1f2937;
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
.contact-item i {
    font-size: 1.5rem;
    color: #2563eb;
    margin-right: 1rem;
    width: 30px;
}
.social-links {
    margin-top: 2rem;
}
.social-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}
.submit-btn {
    background: #2563eb;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.submit-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}
/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 10px 0 10px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fbbf24;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 0.5rem;
}
.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-section ul li a:hover {
    color: #fbbf24;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}
/* Testimonial Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-content: center;
}
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.testimonial-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.modal-content {
    margin: 0 auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

/* Specific styling for feedback-5 to focus on left side */
.modal-content[src*="feedback-5"] {
    object-fit: cover;
    object-position: left center;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
}

#modalCaption {
    margin: 20px auto 0;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: white;
    padding: 10px 0;
    font-size: 1.2rem;
    font-weight: 500;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    .nav-menu.active {
        left: 0;
    }
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .prices-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .price-card {
        padding: 2rem 1.5rem;
    }
    .price-card i {
        font-size: 2.5rem;
    }
    .price-card h3 {
        font-size: 1.2rem;
    }
    .price-card p {
        font-size: 1rem;
        padding: 0.7rem 1rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .testimonial-card {
        max-width: 100%;
    }
    .testimonial-card img {
        height: 250px;
    }
    .gallery-item img {
        max-width: 100%;
        height: 180px;
    }
    .nav-logo img, .hero-image img {
        height: 40px;
    }
    .hero-wave svg {
        height: 40px;
    }
    .brand-title {
        font-size: 1.3rem;
    }
    .brand-main, .brand-xpert {
        font-size: 1.3rem;
    }
    .brand-sub {
        font-size: 1rem;
    }
    .hero-content h1 .brand-main, .hero-content h1 .brand-xpert {
        font-size: 1.5rem;
    }
    .hero-content h1 .brand-sub {
        font-size: 1.1rem;
    }
}
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .container {
        padding: 0 15px;
    }
    .service-card,
    .gallery-item {
        margin: 0 10px;
    }
}
/* Brand Title Styles for Navbar and Hero - Logo Colors */
.brand-title {
    display: inline-block;
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
}
.brand-main {
    color: #188893;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18), 0 1px 0 #fff;
}
.brand-xpert {
    color: #F15A29;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 8px rgba(241,90,41,0.08);
}
.brand-sub {
    color: #188893;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin-left: 0.3em;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18), 0 1px 0 #fff;
}
.hero-content h1 .brand-main {
    font-size: 3.2rem;
    color: #188893;
    font-weight: 900;
    display: inline-block;
    vertical-align: middle;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18), 0 1px 0 #fff;
}
.hero-content h1 .brand-xpert {
    font-size: 3.2rem;
    color: #F15A29;
    font-weight: 900;
    display: inline-block;
    vertical-align: middle;
}
.hero-content h1 .brand-sub {
    font-size: 2rem;
    color: #188893;
    font-weight: 700;
    margin-left: 0.3em;
    display: inline-block;
    vertical-align: middle;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18), 0 1px 0 #fff;
}
.hero-languages {
    color: #111;
    background: rgba(251, 191, 36, 0.3); /* more transparent yellow */
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 2rem;
}
.hero-area-highlight {
    background: rgba(37, 99, 235, 0.18); /* transparent blue */
    color: #fff;
    padding: 0.3rem 1rem;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 1.2rem;
} 