
/* Logo Styles */
.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b6b;
    text-decoration: none;
}

.footer-section .logo {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* Login Button Styles */
.login-btn {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
}

.login-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3) !important;
    background: linear-gradient(135deg, #ff5252, #ff6b6b) !important;
}

/* Logo Image Styles */
.nav-brand img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Responsive Logo */
@media (max-width: 768px) {
    .nav-brand img {
        height: 40px;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .nav-brand img {
        height: 35px;
        max-width: 100px;
    }
}

@media (max-width: 320px) {
    .nav-brand img {
        height: 30px;
        max-width: 80px;
    }
}

/* Responsive Design for All Sections */

/* Hero Section Responsive */
@media (max-width: 1024px) {
    .hero-content {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 50px 0;
        text-align: center;
        min-height: 60vh;
        display: flex;
        align-items: center;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 25px;
    }
    
    .hero-text h1 i {
        font-size: 1.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-top: 30px;
    }
    
    .hero-buttons .btn {
        width: 200px;
        text-align: center;
        padding: 15px 25px;
        font-size: 14px;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 40px 0;
        min-height: 50vh;
    }
    
    .hero-text h1 {
        font-size: 1.4rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .hero-text h1 i {
        font-size: 1.2rem;
    }
    
    .hero-buttons .btn {
        width: 180px;
        padding: 12px 20px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 1.2rem;
        line-height: 1.6;
    }
    
    .hero-buttons .btn {
        width: 160px;
        padding: 10px 18px;
        font-size: 12px;
    }
}

/* Achievements Section Responsive */
@media (max-width: 1024px) {
    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .achievement-item {
        padding: 20px;
    }
    
    .achievement-item h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .achievement-item {
        padding: 15px;
        text-align: center;
    }
    
    .achievement-item h3 {
        font-size: 1.5rem;
    }
}

/* Services Section Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        flex-direction: column;
        height: auto;
    }
    
    .service-card img {
        width: 100%;
        height: 250px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-tags {
        flex-wrap: wrap;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .service-card img {
        height: 200px;
    }
    
    .service-content {
        padding: 15px;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-content p {
        font-size: 14px;
    }
    
    .tag {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* Salon Section Responsive */
@media (max-width: 1024px) {
    .salon-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .salon-text {
        flex: 1;
    }
    
    .salon-image {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .salon-content {
        gap: 30px;
    }
    
    .salon-text h2 {
        font-size: 2rem;
    }
    
    .salon-text p {
        font-size: 16px;
    }
    
    .salon-image img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .salon-text h2 {
        font-size: 1.5rem;
    }
    
    .salon-features {
        padding-left: 20px;
    }
    
    .salon-features li {
        margin-bottom: 8px;
        font-size: 14px;
    }
    
    .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* Media Coverage Section Responsive */
@media (max-width: 1024px) {
    .cont {
        flex-direction: column;
        gap: 40px;
        padding: 0 15px;
    }
    
    .main-content {
        flex: 1;
        width: 100%;
    }
    
    .sidebar {
        flex: 1;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .media-coverage {
        padding: 60px 0;
    }
    
    .main-content h2,
    .sidebar h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .article {
        margin-bottom: 25px;
        display: flex;
        flex-direction: column;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .article img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .article .text {
        padding: 20px;
    }
    
    .article h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .article p {
        font-size: 14px;
        line-height: 1.6;
        color: #666;
    }
    
    .sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .ad {
        margin-bottom: 0;
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .ad img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }
    
    .ad h3 {
        font-size: 1.1rem;
        padding: 15px;
        margin: 0;
        background: #f8f9fa;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .media-coverage {
        padding: 40px 0;
    }
    
    .main-content h2,
    .sidebar h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .article {
        margin-bottom: 20px;
    }
    
    .article img {
        height: 150px;
    }
    
    .article .text {
        padding: 15px;
    }
    
    .article h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .article p {
        font-size: 13px;
    }
    
    .sidebar {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ad img {
        height: 120px;
    }
    
    .ad h3 {
        font-size: 1rem;
        padding: 12px;
    }
}

@media (max-width: 360px) {
    .article img {
        height: 120px;
    }
    
    .article h3 {
        font-size: 1.1rem;
    }
    
    .article p {
        font-size: 12px;
    }
    
    .ad img {
        height: 100px;
    }
    
    .ad h3 {
        font-size: 0.9rem;
        padding: 10px;
    }
}

/* Testimonial Section Responsive */
@media (max-width: 1024px) {
    .testimonial-block {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .testimonial-section h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-block {
        padding: 15px;
    }
    
    .testimonial-block .text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .info-box {
        margin-top: 15px;
    }
    
    .info-box .thumb {
        width: 50px;
        height: 50px;
    }
    
    .info-box .name {
        font-size: 1rem;
    }
    
    .info-box .designation {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .testimonial-section h2 {
        font-size: 1.5rem;
    }
    
    .testimonial-block {
        padding: 10px;
    }
    
    .testimonial-block .text {
        font-size: 13px;
    }
    
    .info-box {
        margin-top: 10px;
        text-align: center;
    }
}

/* App Download Section Responsive */
@media (max-width: 1024px) {
    .app-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .app-text {
        flex: 1;
    }
    
    .app-content img {
        flex: 1;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .app-content {
        gap: 30px;
    }
    
    .app-text h2 {
        font-size: 2rem;
    }
    
    .app-text p {
        font-size: 16px;
    }
    
    .app-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .app-store-btn,
    .google-play-btn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .app-text h2 {
        font-size: 1.5rem;
    }
    
    .app-text p {
        font-size: 14px;
    }
    
    .mobile-input {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .share-btn {
        width: 100%;
    }
    
    .app-content img {
        max-width: 250px;
    }
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-section img {
        max-width: 140px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
    
    .footer-section img {
        max-width: 120px;
        margin: 0 auto 20px;
        display: block;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        color: #ff6b6b;
    }
    
    .footer-section p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
        color: #666;
    }
    
    .footer-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-section ul li {
        margin-bottom: 12px;
        font-size: 14px;
    }
    
    .footer-section ul li a {
        color: #666;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .footer-section ul li a:hover {
        color: #ff6b6b;
    }
    
    .footer-section ul li i {
        margin-right: 8px;
        color: #ff6b6b;
        font-size: 12px;
    }
    
    .social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        background: #ff6b6b;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        text-decoration: none;
        transition: all 0.3s;
    }
    
    .social-links a:hover {
        background: #ff5252;
        transform: translateY(-3px);
    }
    
    .footer-bottom {
        text-align: center;
        padding: 20px 0;
        border-top: 1px solid #eee;
        margin-top: 40px;
    }
    
    .footer-bottom p {
        font-size: 13px;
        color: #999;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-section img {
        max-width: 100px;
        margin-bottom: 15px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .footer-section ul li {
        margin-bottom: 10px;
        font-size: 13px;
    }
    
    .social-links {
        gap: 12px;
        margin-top: 15px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 15px 0;
        margin-top: 30px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .footer-section img {
        max-width: 80px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 12px;
    }
    
    .footer-section ul li {
        font-size: 12px;
    }
    
    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: transparent;
    border: none;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
    display: block;
}

.hamburger:hover span {
    background: #ff6b6b;
}

/* Sidebar Backdrop Overlay */
.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar Menu Styles */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    box-shadow: 2px 0 15px rgba(0,0,0,0.3);
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.sidebar-menu.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.sidebar-brand img {
    height: 40px;
    width: auto;
    max-width: 150px;
}

.close-sidebar {
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-sidebar span {
    width: 20px;
    height: 2px;
    background: white;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.close-sidebar span:first-child {
    transform: rotate(45deg);
    position: relative;
    top: -2px;
}

.close-sidebar span:last-child {
    transform: rotate(-45deg);
    position: relative;
    top: 2px;
}

.close-sidebar:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.sidebar-content {
    padding: 20px;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 5px;
}

.sidebar-link {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.sidebar-link:hover {
    background: rgba(255,255,255,0.1);
    border-left-color: white;
    transform: translateX(5px);
}

.sidebar-link.active {
    background: rgba(255,255,255,0.2);
    border-left-color: white;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Navigation Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
}

@media (max-width: 480px) {
    .sidebar-menu {
        width: 250px;
    }
    
    .sidebar-header {
        padding: 15px;
    }
    
    .sidebar-brand img {
        height: 35px;
        max-width: 120px;
    }
    
    .sidebar-content {
        padding: 15px;
    }
    
    .sidebar-link {
        padding: 12px 15px;
        font-size: 14px;
    }
}

/* Container Responsive */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
}

/* Section Title Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
}

/* Button Responsive */
@media (max-width: 768px) {
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .btn-primary,
    .btn-secondary {
        max-width: 200px;
    }
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles - Transparent at top, white when scrolled */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: background 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Navigation link colors for different header states */
.nav-link {
    text-decoration: none;
    color: #000 !important;
    font-weight: 700;
    transition: color 0.3s ease;
}

.header.scrolled .nav-link {
    color: #000 !important;
}

.nav-link:hover {
    color: #ff6b6b !important;
}

/* Download button styles */
.download-btn {
    background: #000;
    color: white !important;
    padding: 10px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #000;
}

.download-btn:hover {
    background: #333;
    border-color: #333;
    transform: translateY(-2px);
}

.header.scrolled .download-btn {
    background: #ff6b6b;
    border-color: #ff6b6b;
}

.header.scrolled .download-btn:hover {
    background: #ff5252;
    border-color: #ff5252;
}

/* Hamburger menu colors */
.hamburger span {
    background: #333;
    transition: background 0.3s ease;
}

.header.scrolled .hamburger span {
    background: #333;
}

.hamburger:hover span {
    background: #ff6b6b !important;
}

.navbar {
    padding: 15px 0;
}

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

.nav-brand .logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    margin-top: 0;
    padding: 120px 0 80px;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: -1;
}

.hero-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    min-height: 60vh;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 40px;
    line-height: 1.2;
    font-weight: 700;
    max-width: 800px;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #ff6b6b;
    color: white;
}

.btn-primary:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: black;
}


/* Achievements Section */
.achievements {
    padding: 80px 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
}

.achievement-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.achievement-item .icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(to bottom, #FFEBF2, #FFF);
    border-radius: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-item .icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.2);
}

.achievement-item .icon i {
    font-size: 2.5rem;
    transition: color 0.3s ease;
}

.achievement-item .icon:hover i {
    color: #ff5252;
}

.achievement-item h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.achievement-item h3 i {
    font-size: 1rem;
    color: #ffc107;
    margin-left: 5px;
}

.achievement-item p {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    line-height: 1.4;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff9f7 0%, #FFF 100%);
    position: relative;
    overflow: hidden;
}

.services::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"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="3" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="2" fill="white" opacity="0.1"/></svg>') repeat;
    background-size: 100px 100px;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100px, -100px); }
}

.services .section-title {
    position: relative;
    z-index: 2;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
    border: none;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.service-card:hover::before {
    animation: shimmer 0.6s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.service-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.service-card img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    margin: 0 auto 25px;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
    border: none;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1/1;
}

.service-card:hover img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
    border-radius: 10px;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: #ff6b6b;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-content p {
    color: #555;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.tag {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #666;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.service-card:hover .tag {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.service-card.active {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.service-card.active img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
    border-radius: 10px;
}

.service-card.active .service-content h3 {
    color: #ff6b6b;
}

.service-card.active .tag {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
    border-radius: 2px;
}

/* Salon Section */
.salon-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.salon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.salon-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.salon-text p {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.8;
}

.salon-features {
    list-style: none;
    margin-bottom: 30px;
}

.salon-features li {
    padding: 10px 0;
    color: #666;
    position: relative;
    padding-left: 30px;
}

.salon-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.salon-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Media Coverage Section */
.media-coverage {
    padding: 60px 0;
    background: white;
}

.media-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.media-logos img {
    max-width: 150px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.media-logos img:hover {
    opacity: 1;
}

/* Celebrities Section */
.celebrities {
    padding: 80px 0;
    background: #f8f9fa;
}

.celebrities-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.celebrity-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.celebrity-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.celebrity-card p {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.celebrity-card h4 {
    color: #333;
    font-weight: 600;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: white;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.review-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
}

.review-card h4 {
    color: #333;
    font-weight: 600;
}

/* App Download Section */
.app-download {
    padding: 80px 0;
    background: #ffeef5;
    position: relative;
    overflow: hidden;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.app-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.app-text > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.mobile-input-section {
    margin-bottom: 40px;
}

.input-group {
    display: flex;
    gap: 15px;
    max-width: 400px;
}

.mobile-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.mobile-input:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.share-btn {
    padding: 15px 25px;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.share-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.download-options {
    margin-bottom: 30px;
}

.download-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-store-btn,
.google-play-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
}

.app-store-btn {
    background: #000;
    color: white;
}

.app-store-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.google-play-btn {
    background: #000;
    color: white;
}

.google-play-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.app-store-btn i,
.google-play-btn i {
    font-size: 1.5rem;
}

.app-store-btn span,
.google-play-btn span {
    font-size: 0.85rem;
    line-height: 1.2;
}

.website-access-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.website-link {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.website-link:hover {
    color: #ff5252;
    text-decoration: underline;
}

.app-image {
    text-align: center;
}

.app-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #f1f0f5;
    color: black;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #000;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: black;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff6b6b;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #000;
}

.footer-section ul li i {
    margin-right: 10px;
    color: #000;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        color: #000 !important;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: left;
        justify-content: flex-start;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        text-align: left;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .achievement-item .icon {
        width: 80px;
        height: 80px;
        border-radius: 60px;
    }

    .achievement-item .icon i {
        font-size: 2rem;
    }

    .achievement-item h3 {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-card img {
        width: 200px;
        height: 200px;
        border-radius: 10px;
        max-width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .service-content p {
        font-size: 0.85rem;
    }

    .tag {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .salon-content {
        grid-template-columns: 1fr;
    }

    .celebrities-carousel {
        grid-template-columns: 1fr;
    }

    .reviews-carousel {
        grid-template-columns: 1fr;
    }

    .app-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .app-text h2 {
        font-size: 2rem;
    }

    .input-group {
        max-width: 100%;
        flex-direction: column;
    }

    .mobile-input,
    .share-btn {
        width: 100%;
    }

    .app-buttons {
        justify-content: center;
    }

    .app-store-btn,
    .google-play-btn {
        min-width: 140px;
        padding: 10px 15px;
    }

    .app-store-btn i,
    .google-play-btn i {
        font-size: 1.3rem;
    }

    .app-store-btn span,
    .google-play-btn span {
        font-size: 0.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        justify-content: flex-start;
        text-align: left;
    }

    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 30px;
        text-align: left;
    }

    .hero-buttons {
        justify-content: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card img {
        width: 200px;
        height: 200px;
        border-radius: 10px;
        max-width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }

    .service-content p {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .tag {
        font-size: 0.65rem;
        padding: 4px 8px;
    }

    .service-tags {
        gap: 6px;
    }

    .achievement-item h3 {
        font-size: 2rem;
    }

    .salon-text h2,
    .app-text h2 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.celebrity-card,
.review-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ff6b6b;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff5252;
}


/*** 

====================================================================
		Testimonial Section
====================================================================

***/

.large-container {
  position: static;
  max-width: 1580px;
  padding: 0px 30px;
  margin: 0 auto;
}

.testimonial-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 210px;
  overflow: hidden;
  &:before {
    position: absolute;
    left: -200px;
    top: 22%;
    background-image: url(http://t.commonsupport.com/adro/images/icons/ring-circle.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 701px;
    height: 756px;
    content: "";
    -webkit-animation: fa-spin 25s infinite alternate;
    -moz-animation: fa-spin 25s infinite alternate;
    -ms-animation: fa-spin 25s infinite alternate;
    -o-animation: fa-spin 25s infinite alternate;
    animation: fa-spin 25s infinite alternate;
  }
  .sec-title {
    position: relative;
    margin-bottom: 115px;
    .title {
      margin-bottom: 20px;
    }
  }
  .testimonial-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 -50px;
  }
}

.testimonial-block {
  position: relative;
  padding: 50px;
  .inner-box {
    padding: 80px 105px;
    background-color: #ffffff;
    box-shadow: 0 0 50px rgba(226, 222, 232, 0.75);
  }
  .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 32px;
    color: #282331;
    font-weight: 400;
    margin-bottom: 50px;
    font-family: "Muli", sans-serif;
  }
  .info-box {
    position: relative;
    padding-left: 115px;
    padding-top: 10px;
    .thumb {
      position: absolute;
      left: 0;
      top: 0;
      height: 82px;
      width: 82px;
      img {
        border: 6px solid #e5e6fa;
        border-radius: 50%;
        overflow: hidden;
        display: block;
        width: 100%;
        box-shadow: 0 45px 45px rgba(147, 147, 147, 0.35);
      }
    }
    .name {
      position: relative;
      display: block;
      font-size: 21px;
      line-height: 1.2em;
      color: #382c4d;
      font-weight: 700;
      margin-bottom: 10px;
      font-family: "Niramit", sans-serif;
    }
    .designation {
      position: relative;
      display: block;
      font-size: 16px;
      line-height: 24px;
      color: #8053f7;
      font-weight: 400;
      font-family: "Muli", sans-serif;
    }
  }
}

.testimonial-carousel {
  .owl-nav {
    position: absolute;
    right: 75px;
    bottom: 70px;
  }
  .owl-next, .owl-prev {
    position: relative;
    display: inline-block;
    height: 75px;
    width: 75px;
    line-height: 75px;
    text-align: center;
    border-radius: 50%;
    background-color: #ffffff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .owl-next:hover, .owl-prev:hover {
    background-color: #00df97;
    box-shadow: 0 24px 24px rgba(187, 187, 187, 0.75);
  }
}

.arrow-right, .arrow-left {
  position: relative;
  display: inline-block;
  height: 9px;
  width: 43px;
  background-image: url(http://t.commonsupport.com/adro/images/icons/arrow-left-2.png);
  background-repeat: no-repeat;
  background-position: center;
}

.arrow-right {
  background-image: url(http://t.commonsupport.com/adro/images/icons/arrow-right-2.png);
}

.testimonial-section .thumb-layer {
  position: absolute;
  right: 30px;
  top: 120px;
  .image {
    position: relative;
    margin-right: 0;
    img {
      display: inline-block;
      max-width: 100%;
      height: auto;
    }
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-section .sec-title {
    margin-bottom: 50px;
  }
  .testimonial-block {
    padding: 0;
    .inner-box {
      box-shadow: none;
      border: 2px solid #f1f1f1;
    }
  }
  .testimonial-carousel {
    .owl-nav {
      position: relative;
      left: 0;
      bottom: 0;
      margin-top: 20px;
      text-align: center;
    }
    .owl-next, .owl-prev {
      border: 2px solid #f1f1f1;
    }
  }
}

@media only screen and (max-width: 1366px) {
  .large-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}




.cont {
    display: flex;
    max-width: 1200px;
    width: 100%;
    margin: 20px;
    gap: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.main-content {
    flex: 3;
    padding: 15px;
    border-right: 1px solid #ccc; /* Garis pembatas seperti kolom koran */
}

.main-content h2, .sidebar h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #333; /* Garis bawah untuk kesan judul */
    padding-bottom: 5px;
}

/* Gaya umum untuk artikel */
.main-content a {
  text-decoration: none;
  
}
.main-content .article {
    display: flex;
    max-height: 150px;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd; /* Garis pemisah antar artikel */
}

/* Gambar artikel */
.main-content .article img {
    flex: 0 0 150px; /* Ukuran tetap untuk gambar */
    max-width: 150px;
    height: auto;
    border: 1px solid #ccc; /* Bingkai tipis untuk gambar */
    border-radius: 5px; /* Sudut melengkung pada gambar */
    object-fit: cover; /* Memastikan gambar proporsional */
}

/* Teks artikel */
.main-content .article .text {
    flex: 1;
    display: flex;
    flex-direction: column; /* Susunan vertikal */
}

/* Judul artikel */
.main-content .article h3 {
    font-size: 1.1rem;
    line-height: 1.2;
    margin: 0 0px; /* Jarak bawah sebelum garis */
    color: #222;
    text-align: justify; /* Rata kanan-kiri */
    overflow: hidden;
    text-overflow: ellipsis; /* Tampilkan "..." jika terlalu panjang */
    white-space: normal;
    display: -webkit-box; /* Untuk multi-line ellipsis */
    -webkit-box-orient: vertical;
}

/* Garis pemisah di bawah judul */
.main-content .article .divider {
    height: 1px;
    background-color: #ddd; /* Warna garis */
    margin-bottom: 10px; /* Jarak antara garis dan deskripsi */
}

/* Deskripsi artikel */
.main-content .article p {
    font-size: 1rem;
    line-height: 1.2;
    color: #555;
    text-align: justify; /* Rata kanan-kiri */
    overflow: hidden;
    text-overflow: ellipsis; /* Tampilkan "..." jika terlalu panjang */
    white-space: normal;
    display: -webkit-box; /* Untuk multi-line ellipsis */
    -webkit-box-orient: vertical;
}

.sidebar {
    flex: 1;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 1px solid #ccc; /* Garis pembatas sidebar */
    max-height: 100vh; /* Batasi tinggi maksimal sidebar sesuai viewport */
    overflow-y: auto; /* Aktifkan scrolling secara vertikal jika konten melebihi tinggi */
    scrollbar-width: thin; /* Untuk browser modern, membuat scrollbar lebih tipis */
    scrollbar-color: #ccc #f9f9f9; /* Warna scrollbar */
}

/* Styling scrollbar khusus untuk browser berbasis WebKit (Chrome, Safari, Edge) */
.sidebar::-webkit-scrollbar {
    width: 8px; /* Lebar scrollbar */
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #ccc; /* Warna scrollbar */
    border-radius: 4px; /* Sudut melengkung */
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background-color: #aaa; /* Warna scrollbar saat dihover */
}

.sidebar::-webkit-scrollbar-track {
    background-color: #f9f9f9; /* Latar belakang track scrollbar */
}

.sidebar .ad {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
    background-color: #fff;
    font-size: 1rem;
    font-style: italic; /* Gaya tulisan seperti pengumuman koran */
    color: #444;
}

.sidebar .ad h3{
  display: none; /* Mengilangkan Judul Iklan*/
}

.sidebar .ad img {
    max-width: 100%;
    height: auto;
    margin-top: 0px;
    border: 1px solid #ccc;
}

/* Responsiveness */

/* Tablet: Layar lebih kecil dari 768px */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Ubah layout ke kolom */
    }

    .main-content {
        flex: none;
        border-right: none;
        border-bottom: 1px solid #ccc; /* Tambahkan pembatas di bawah */
        padding-bottom: 20px;
    }

    .sidebar {
        flex: none;
        padding-top: 20px;
        border-left: none;
    }

    .main-content .article {
        flex-direction: column; /* Susunan gambar di atas teks */
        max-height: none;
    }

    .main-content .article img {
        max-width: 100%; /* Gambar memenuhi lebar layar */
        max-height: 300px;
        margin-bottom: 10px;
    }

    .main-content .article .text {
        text-align: center; /* Pusatkan teks */
    }

    .main-content .article h3 {
        font-size: 1rem; /* Perkecil ukuran font judul */
    }

    .main-content .article p {
        font-size: 0.9rem; /* Perkecil ukuran font deskripsi */
    }
}

/* Ponsel: Layar lebih kecil dari 480px */
@media (max-width: 360px) {
    .container {
        margin: 10px;
        padding: 10px;
    }

    .main-content h2 {
        font-size: 1.5rem; /* Perkecil ukuran font heading */
        text-align: center;
    }

    .main-content .article img {
        flex: none;
        max-width: 100%; /* Gambar memenuhi layar */
        height: auto;
        border-radius: 0; /* Hilangkan sudut melengkung */
    }

    .sidebar .ad {
        font-size: 0.9rem; /* Perkecil ukuran teks iklan */
    }

    .main-content .article h3 {
        font-size: 0.9rem; /* Lebih kecil untuk judul */
    }

    .main-content .article p {
        font-size: 0.8rem; /* Lebih kecil untuk deskripsi */
    }
}

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    .header {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
    }
    
    .navbar .container {
        padding: 0 15px;
    }
    
    .nav-brand img {
        height: 40px;
        max-width: 120px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .sidebar-menu {
        width: 280px;
        left: -280px;
    }
    
    .sidebar-menu.active {
        left: 0;
    }
    
    .sidebar-header {
        padding: 15px;
    }
    
    .sidebar-brand img {
        height: 35px;
        max-width: 120px;
    }
    
    .sidebar-content {
        padding: 15px;
    }
    
    .sidebar-link {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 0;
    }
    
    .navbar .container {
        padding: 0 10px;
    }
    
    .nav-brand img {
        height: 35px;
        max-width: 100px;
    }
    
    .sidebar-menu {
        width: 250px;
        left: -250px;
    }
    
    .sidebar-header {
        padding: 12px;
    }
    
    .sidebar-brand img {
        height: 30px;
        max-width: 100px;
    }
    
    .sidebar-content {
        padding: 12px;
    }
    
    .sidebar-link {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
    }
}

@media (max-width: 320px) {
    .nav-brand img {
        height: 30px;
        max-width: 80px;
    }
    
    .sidebar-menu {
        width: 100%;
        left: -100%;
    }
}