/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1E1B39;
    background-color: #fff;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 107, 157, 0.1);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.99) 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(25px);
    transform: translateY(0);
}

.navbar.scrolled-bg {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #ff6b9d;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b9d, #f093fb);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 90%;
}

.logo:hover {
    transform: scale(1.02);
    color: #e0558a;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    text-decoration: none;
    color: #1E1B39;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b9d, #f093fb);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
    opacity: 1;
}

.nav-menu li a:hover {
    color: #ff6b9d;
}

.nav-menu li a.active {
    color: #ff6b9d;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b9d 0%, #f093fb 100%);
    color: #fff !important;
    padding: 10px 10px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 90%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    background: linear-gradient(135deg, #ff5a8d 0%, #e083eb 100%);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 107, 157, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
}

.fab > i {
    font-size: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    line-height: 0;
    transition: transform 0.3s ease;
}

.fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#scrollToTop:hover > i {
    transform: translateY(-2px);
}

.whatsapp-fab {
    background: rgba(37, 211, 102, 0.9);
}

.whatsapp-fab:hover > i {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .floating-buttons {
        right: 15px;
        bottom: 15px;
        gap: 12px;
    }

    .fab {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Ensure the hamburger button is above other elements and clickable on mobile */
.menu-toggle {
    z-index: 1200;
    pointer-events: auto;
}

.menu-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 90%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 107, 157, 0.2), rgba(240, 147, 251, 0.2));
    transition: left 0.4s ease;
}

.menu-toggle:hover::before {
    left: 0;
}

.menu-toggle:hover {
    background: rgba(255, 107, 157, 0.2);
    transform: scale(1.05);
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b9d, #f093fb);
    margin: 2px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
    position: relative;
    z-index: 1;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
    background: #ff6b9d;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #ff6b9d;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 1150;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 100px 30px 30px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 107, 157, 0.2);
}

.mobile-menu-logo {
    font-size: 24px;
    font-weight: 800;
    color: #ff6b9d;
    margin-bottom: 10px;
}

.mobile-menu-subtitle {
    color: #666;
    font-size: 14px;
}

.mobile-menu nav ul {
    list-style: none;
    padding: 0;
}

.mobile-menu nav ul li {
    margin-bottom: 10px;
}

.mobile-menu nav ul li a {
    display: block;
    padding: 15px 20px;
    color: #1E1B39;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-menu nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 90%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 107, 157, 0.1), rgba(240, 147, 251, 0.1));
    transition: left 0.4s ease;
    z-index: -1;
}

.mobile-menu nav ul li a:hover::before {
    left: 0;
}

.mobile-menu nav ul li a:hover {
    color: #ff6b9d;
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.2);
}

.mobile-menu nav ul li a.active {
    color: #ff6b9d;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(240, 147, 251, 0.1));
}

.mobile-menu .btn-primary {
    display: block;
    width: 90%;
    margin-top: 30px;
    text-align: center;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-close:hover {
    background: rgba(255, 107, 157, 0.2);
    transform: rotate(90deg);
}

.mobile-menu-close::before,
.mobile-menu-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #ff6b9d;
    border-radius: 1px;
}

.mobile-menu-close::before {
    transform: rotate(45deg);
}

.mobile-menu-close::after {
    transform: rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #FFF6F1 0%, #FFF9F5 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1E1B39;
    margin: 24px 0;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 32px;
    max-width: 480px;
}

.stats-card {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.stat-item img {
    width: 24px;
    height: 24px;
}

.stat-item span {
    font-size: 20px;
    font-weight: 600;
    color: #1E1B39;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 110%;
    max-width: 900px;
    height: auto;
    display: block;
    border-radius: 0;
    transform: scale(1.03);
}

.arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow {
    transform: translateX(4px);
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #007bff;
}

    .nav-menu li a.active {
        color: #FF6B2C;
        font-weight: 600;
    }
/* Main Content */
.main-content {
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .main-content section {
        padding: 120px 0 80px;
    }

    .subtitle {
        color: #FF6B2C;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 16px;
        display: block;
    }

    margin-top: 70px;
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 32px;
        margin-top: 48px;
    }

    .service-card {
        background: #fff;
        padding: 32px;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-8px);
    }

    min-height: calc(100vh - 70px);
    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }

    .contact-form form {
        background: #fff;
        padding: 40px;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    }

    .form-group {
        margin-bottom: 24px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
        width: 90%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-family: inherit;
    }

}
    .pages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 32px;
        margin-top: 48px;
    }

    .page-card {
        background: #fff;
        padding: 32px;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
    }

    .page-card:hover {
        transform: translateY(-8px);
    }

    .btn-secondary {
        display: inline-block;
        color: #FF6B2C;
        text-decoration: none;
        font-weight: 600;
        margin-top: 16px;
        transition: color 0.3s ease;
    }

    .btn-secondary:hover {
        color: #ff5712;
    }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #f093fb 100%);
    color: white;
    padding: 80px 20px 120px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::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 1000 1000"><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="50" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 120px;
    align-items: center;
    width: 95%;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    color: #ffd700;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero .highlight {
    background: linear-gradient(45deg, #ffd700, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 15px 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: #333;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.hero-image-container {
    position: relative;
    border-radius: 0;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    max-width: none;
    transform: scale(1.02);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 8px 12px;
    border-radius: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.75rem;
    color: #333;
    animation: float 3s ease-in-out infinite;
    border: 2px solid rgba(255, 107, 157, 0.1);
    backdrop-filter: blur(10px);
}

.floating-card i {
    color: #ff6b9d;
    font-size: 0.8rem;
}

.floating-card span {
    white-space: nowrap;
}

.card-1 {
    top: 35px;
    right: 5px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 35px;
    left: 5px;
    animation-delay: 1s;
}

.card-3 {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    animation-delay: 2s;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #ff6b9d, #f093fb);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    background: linear-gradient(135deg, #ff5a8d, #e083eb);
}

.btn-secondary {
    display: inline-block;
    padding: 10px 16px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 2px solid white;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-secondary:hover {
    background: white;
    color: #ff6b9d;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    text-align: center;
    color: #333;
    font-weight: 700;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #667eea);
    border-radius: 2px;
}

.section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    padding: 20px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #007bff;
    position: relative;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #667eea);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 90%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr; /* Ubah ke 1 kolom pada layar kecil */
        gap: 30px; /* Kurangi gap untuk ruang lebih efisien */
    }

    .about-text {
        padding: 15px; /* Kurangi padding untuk mobile */
        text-align: center; /* Pusatkan teks pada mobile */
    }

    .about-text h3 {
        font-size: 1.5rem; /* Kurangi ukuran font judul */
    }

    .about-text h3::after {
        width: 40px; /* Kurangi lebar garis bawah */
    }

    .about-text p {
        font-size: 0.9rem; /* Kurangi ukuran font paragraf */
        line-height: 1.6; /* Sesuaikan line-height */
    }

    .about-image img {
        width: 100%; /* Buat gambar full width pada mobile */
    }
}

@media (max-width: 480px) {
    .about-content {
        gap: 20px; /* Gap lebih kecil untuk layar sangat kecil */
    }

    .about-text h3 {
        font-size: 1.3rem; /* Font lebih kecil untuk mobile kecil */
    }

    .about-text p {
        font-size: 0.85rem; /* Font paragraf lebih kecil */
    }
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-post {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post img {
    width: 90%;
    height: 200px;
    object-fit: cover;
}

.blog-post-content {
    padding: 20px;
}

.blog-post h3 {
    margin-bottom: 10px;
    color: #333;
}

.blog-post p {
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 90%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 123, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Contact Section */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 90%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

/* Featured Categories */
.featured-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.section-header p {
    font-size: 1.2rem;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.category-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.category-image img {
    width: 90%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px;
    color: white;
}

.category-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.category-overlay span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Why Choose Us */
.why-choose-us {
    background: white;
    padding: 120px 20px;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-text h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #333;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b9d, #f093fb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
}

.why-image {
    position: relative;
}

.why-image img {
    width: 90%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-stars {
    color: #ffd700;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 20px 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b9d, #f093fb);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ff6b9d;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-links a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    line-height: 1;
    width: auto;
    height: auto;
}

.social-links a:hover {
    background: linear-gradient(135deg, #ff6b9d, #f093fb);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 107, 157, 0.25);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li i {
    color: #ff6b9d;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
}

/* Additional Styles for Services and Values */
.services-grid, .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-item, .value-item {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before, .value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #667eea);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-item:hover::before, .value-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover, .value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-item h3, .value-item h3 {
    color: #007bff;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.service-item p, .value-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    color: #007bff;
    margin-bottom: 5px;
}

.contact-form h3 {
    margin-bottom: 20px;
    color: #333;
}

/* Responsive Design */

/* Large Desktop */
@media (max-width: 1400px) {
    .hero-content {
        max-width: 1600px;
        gap: 80px;
        grid-template-columns: 1fr 1.3fr;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .hero-content {
        gap: 60px;
        grid-template-columns: 1fr 1.2fr;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    /* Removed hover effects for hero image */
}

/* Tablet */
@media (max-width: 1024px) {
    .hero {
        padding: 60px 20px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
        position: relative;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .floating-card {
        position: absolute;
    }

    .card-1 {
        top: 10px;
        right: -20px;
    }

    .card-2 {
        bottom: 10px;
        left: -20px;
    }

    .card-3 {
        top: 50%;
        right: -25px;
        transform: translateY(-50%);
    }

    .section {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .why-features {
        max-width: 600px;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        position: relative;
    }

    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .logo {
        font-size: 24px;
        font-weight: 800;
    }

    /* Hide FAB on mobile for better UX */
    .fab {
        display: none;
    }

    .hero {
        padding: 50px 20px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 70%;
    }

    .btn-primary, .btn-secondary {
        width: 70%;
        max-width: 300px;
        margin: 0 auto;
    }

    .section {
        padding: 40px 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .category-image {
        height: 250px;
    }

    .why-content {
        gap: 30px;
    }

    .why-text h2 {
        font-size: 2rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .feature-icon {
        align-self: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .social-links {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .nav-container {
        padding: 12px 15px;
        height: 70px;
    }

    .nav-menu {
        gap: 6px;
        margin-top: 12px;
    }

    .nav-menu li {
        min-width: 100px;
    }

    .nav-menu a {
        padding: 8px 12px;
        font-size: 13px;
        font-weight: 600;
        border-radius: 20px;
    }

    .logo {
        font-size: 22px;
    }

    .btn-primary {
        padding: 10px 16px;
        font-size: 12px;
        min-width: 120px;
        margin-top: 8px;
    }

    .hero {
        padding: 50px 15px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 90%;
    }

    .btn-primary, .btn-secondary {
        width: 90%;
        max-width: 280px;
        margin: 0 auto;
        padding: 14px 20px;
        font-size: 14px;
    }

    .section {
        padding: 40px 15px;
    }

    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .section-header p {
        font-size: 1rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-image {
        height: 220px;
    }

    .why-content {
        gap: 30px;
    }

    .why-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .feature-item {
        text-align: center;
        gap: 15px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .feature-content h4 {
        font-size: 1.2rem;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-content p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .testimonial-author {
        gap: 12px;
    }

    .testimonial-author img {
        width: 45px;
        height: 45px;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info span {
        font-size: 0.85rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .footer {
        padding: 50px 15px 30px;
    }

    .footer-content {
        gap: 35px;
    }

    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .footer-section ul li {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .social-links {
        gap: 12px;
    }

    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .footer-bottom {
        margin-top: 25px;
        padding-top: 15px;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero {
        padding: 40px 10px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-buttons {
        width: 95%;
    }

    .btn-primary, .btn-secondary {
        width: 95%;
        max-width: 250px;
        padding: 12px 18px;
        font-size: 13px;
    }

    .section {
        padding: 30px 10px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .categories-grid {
        gap: 15px;
    }

    .category-image {
        height: 200px;
    }

    .why-text h2 {
        font-size: 1.8rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .testimonial-card {
        padding: 15px;
    }

    .testimonial-content p {
        font-size: 0.95rem;
    }

    .testimonial-author img {
        width: 40px;
        height: 40px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .footer {
        padding: 40px 10px 25px;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}