* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #e91e63;
            --primary-dark: #c2185b;
            --secondary: #333333;
            --bg-white: #ffffff;
            --bg-light: #f8f9fa;
            --text-color: #444444;
            --border-radius: 8px;
            --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 12px 20px rgba(0, 0, 0, 0.12);
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            background-color: var(--bg-white);
            line-height: 1.5;
            scroll-behavior: smooth;
            font-size: 18px;
        }

        /* container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* typography */
        h1, h2, h3, h4 {
            color: var(--secondary);
            font-weight: 700;
            line-height: 1.2;
        }
        h1{
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            text-align: center;
        }
.content-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}
        .section-title {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .section-title h2 {
            margin-bottom: 0.5rem;
        }
        .section-title p {
            color: #777;
            max-width: 600px;
            margin: 0 auto;
        }

        /* buttons & links */
        a {
            text-decoration: none;
            transition: var(--transition);
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--primary);
            color: white;
            padding: 10px 24px;
            border-radius: var(--border-radius);
            font-weight: 600;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }
        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        /* ---------- HEADER (STICKY + HAMBURGER) ---------- */
        .header {
            position: sticky;
            top: 0;
            width: 100%;
            background: var(--bg-white);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            padding: 16px 0;
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--secondary);
            letter-spacing: -0.5px;
        }
        .logo span {
            color: var(--primary);
        }
        /* desktop nav */
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .nav-links a {
            color: var(--secondary);
            font-weight: 500;
            font-size: 1rem;
        }
        .nav-links a:hover, .nav-links a.active {
            color: var(--primary);
        }
        /* hamburger icon - hidden on desktop */
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--secondary);
        }
        /* mobile nav container */
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 75px;
                left: -100%;
                width: 80%;
                background: var(--bg-white);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 2rem;
                gap: 0.2rem;
                box-shadow: 2px 0 20px rgba(0,0,0,0.1);
                transition: left 0.3s ease;
                z-index: 999;
            }
            .nav-links.active {
                left: 0;
            }
            .nav-links li {
                width: 100%;
                text-align: left;
            }
            .nav-links a {
                display: block;
                padding: 12px;
                font-size: 1.2rem;
            }
        }

        /* ---------- HERO (VIDEO BACKGROUND) ---------- */
        .hero {
            position: relative;
            height: 400px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.55);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            max-width: 800px;
            padding: 0 20px;
        }
        .hero-content .h1 {
            font-size: 3rem;
            color: white;
            margin-bottom: 1rem;
        }
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .hero-content .btn {
            background: var(--primary);
            font-size: 1rem;
            padding: 12px 32px;
        }
.content-body {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #333;
}

/* Headings */
.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

/* Paragraph */
.content-body p {
    margin-bottom: 15px;
    text-align: justify;
}

/* UL Styling */
.content-body ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

/* LI Styling */
.content-body ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 10px;
}

/* Custom Bullet Style */
.content-body ul li::marker {
    color: #ff4d4d;
    font-size: 18px;
}

/* Optional: Custom Icon Bullet */
.content-body ul.custom-list {
    list-style: none;
    padding-left: 0;
}

.content-body ul.custom-list li {
    padding-left: 25px;
}

.content-body ul.custom-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: green;
    font-weight: bold;
}

/* Links */
.content-body a {
    color: #007bff;
    text-decoration: none;
}

.content-body a:hover {
    text-decoration: underline;
}

/* Strong / Bold */
.content-body strong {
    font-weight: 600;
}

        /* ---------- GRID SYSTEM (Categories & Profiles) ---------- */
        .grid-categories, .grid-profiles {
            display: grid;
            gap: 30px;
            grid-template-columns: 1fr;
            margin: 2rem 0;
        }
        /* tablet */
        @media (min-width: 768px) {
            .grid-categories, .grid-profiles {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        /* desktop */
        @media (min-width: 1200px) {
            .grid-categories, .grid-profiles {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* category card */
        .category-card {
            background: var(--bg-white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            text-align: center;
            padding-bottom: 1.2rem;
        }
        .category-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }
        .category-img {
            width: 100%;
            height: 180px;
            background-size: cover;
            background-position: top;
            transition: transform 0.4s;
        }
        .category-card:hover .category-img {
            transform: scale(1.02);
        }
        .category-card h3 {
            margin: 1rem 0 0.5rem;
            font-size: 1.3rem;
        }
        .category-card a {
            color: var(--primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 8px;
        }
        .category-card a:hover {
            text-decoration: underline;
        }

        /* locations (tag cloud) */
        .locations-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            margin: 2rem 0;
        }
        .location-tag {
            background: var(--bg-light);
            padding: 8px 20px;
            border-radius: 40px;
            font-weight: 500;
            color: var(--secondary);
            transition: var(--transition);
            border: 1px solid #eee;
        }
        .location-tag:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        /* services section icons */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin: 2rem 0 3rem;
        }
        .service-item {
            text-align: center;
            padding: 2rem 1rem;
            background: var(--bg-light);
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .service-item:hover {
            transform: translateY(-5px);
            background: white;
            box-shadow: var(--shadow-sm);
        }
        .service-item i {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .service-item h4 {
            margin-bottom: 0.5rem;
        }
        .service-item p {
            font-size: 0.9rem;
        }

        /* section spacing */
        section {
            padding: 4rem 0;
        }
        .bg-light {
            background-color: var(--bg-light);
        }

        /* testimonial */
        .testimonial-card {
            background: var(--bg-white);
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
            margin-bottom: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 4px solid var(--primary);
        }
        .testimonial-text {
            font-style: italic;
            color: #666;
            margin-bottom: 1rem;
        }
        .testimonial-author {
            font-weight: 600;
            color: var(--secondary);
        }

        /* faq */
        .faq-item {
            background: var(--bg-white);
            margin-bottom: 1rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
        }
        .faq-question {
            width: 100%;
            background: transparent;
            border: none;
            text-align: left;
            padding: 1.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        .faq-answer p{
            margin-bottom: 1rem;
        }
        .faq-item.active .faq-answer {
            max-height: 200px; /* Adjust as needed */
        }

        /* footer */
        .footer {
            background: #1e1e1e;
            color: #ccc;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 2rem;
        }
        .footer-col {
            flex: 1;
            min-width: 200px;
        }
        .footer-col h4, .footer-col .h4 {
            color: var(--bg-light);
            margin-bottom: 15px;
            font-size: 1.5rem;
            font-weight: 600;
            display:block;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col li {
            margin-bottom: 8px;
        }
        .footer-col a {
            color: #bbb;
        }
        .footer-col a:hover {
            color: var(--primary);
        }
        .social-icons i {
            font-size: 1.5rem;
            margin-right: 15px;
            transition: 0.2s;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
        }

        /* responsiveness extras */
        @media (max-width: 480px) {
            .hero-content .h1 {
                font-size: 2rem;
            }
            section .container, footer .container {
                padding:16px;
            }
            
            header .container {
                padding:0 16px;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
/* Hero Section (Inner Page) */
        .page-hero {
            background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
            padding: 4rem 0;
            text-align: center;
            color: white;
            position: relative;
        }
        .page-hero h1 {
            color: white;
            font-size: 2.8rem;
        }
        .page-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }
        /* Contact Grid Layout */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin: 3rem 0;
        }
        /* Contact Info Cards */
        .info-card {
            background: var(--bg-white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
            padding: 2rem;
            margin-bottom: 1.5rem;
            transition: var(--transition);
            border: 1px solid #eee;
        }
        .info-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .info-icon {
            width: 100%;
            height: 60px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: flex-start;
            justify-content: left;
            float:left;
        }
        .info-icon i {
            font-size: 2rem;
            color: var(--primary);
            padding-right:20px;
        }
        .info-card h3 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
        }
        .contact-detail {
            margin-top: 1rem;
        }
        .contact-detail p {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .contact-detail i {
            width: 24px;
        }
        .whatsapp-btn {
            background: #25D366;
        }
        .whatsapp-btn:hover {
            background: #128C7E;
        }
        .call-btn {
            background: var(--primary);
        }

        /* Contact Form */
        .contact-form-wrapper {
            background: var(--bg-white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
            padding: 2rem;
            border: 1px solid #eee;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--secondary);
        }
        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
        }
        .submit-btn {
            width: 100%;
            justify-content: center;
            background: var(--primary);
            font-size: 1.1rem;
            padding: 14px;
        }

        /* Map Section */
        .map-section {
            padding: 2rem 0 4rem;
        }
        .map-container {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            height: 350px;
        }
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Availability Banner */
        .availability-banner {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            text-align: center;
            margin: 2rem 0;
        }
        .availability-banner h3 {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }
        .availability-banner p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-overlay h3 {
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.gallery-item-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}
