* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 🎨 ANIMATION KEYFRAMES - DESIGN ENHANCEMENTS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleInCenter {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navbar */
navbar {
    background: linear-gradient(135deg, #1a472a 0%, #27ae60 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 2rem;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Tablets & Medium Screens */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
}

/* Small Tablets & Phones */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
}

/* Extra Small Phones */
@media (max-width: 480px) {
    .logo {
        font-size: 1rem;
    }
    
    .logo-icon {
        font-size: 1.3rem;
    }
}

/* Hero Section - ENHANCED */
.hero {
    background: linear-gradient(rgba(26, 71, 42, 0.85), rgba(39, 174, 96, 0.85)), 
                url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1400&h=700&fit=crop') center/cover;
    color: white;
    padding: 120px 2rem;
    text-align: center;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    animation: scan 8s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
    animation: fadeInDown 0.8s ease-out;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 750px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.6;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    font-size: 1.05rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    display: inline-block;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #e74c3c 0%, #d63328 100%);
    color: white;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d63328 0%, #c0392b 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: #27ae60;
    border: 2px solid #27ae60;
}

.btn-secondary:hover {
    background: #27ae60;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.btn-inquiry {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    border: none;
}

.btn-inquiry:hover {
    background: linear-gradient(135deg, #229954 0%, #1e8449 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.btn-inquiry:active {
    transform: translateY(-1px);
}

/* Large Desktops (1920px and above) */
@media (min-width: 1920px) {
    .hero {
        padding: 150px 2rem;
        min-height: 700px;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero p {
        font-size: 1.6rem;
    }
}

/* Standard Desktops */
@media (max-width: 1200px) and (min-width: 1024px) {
    .hero {
        padding: 100px 2rem;
        min-height: 550px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
}

/* Tablets & Medium Screens */
@media (max-width: 1024px) {
    .hero {
        padding: 80px 1.5rem;
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .btn {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
}

/* Small Tablets & Large Phones */
@media (max-width: 768px) {
    .hero {
        padding: 60px 1rem;
        min-height: 450px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 90%;
        max-width: 350px;
        padding: 14px 30px;
        font-size: 0.95rem;
    }
}

/* Phones (480px to 768px) */
@media (max-width: 600px) {
    .hero {
        padding: 50px 1rem;
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: 1.7rem;
        margin-bottom: 0.8rem;
        letter-spacing: 0;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .btn {
        width: 100%;
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Extra Small Phones (Below 480px) */
@media (max-width: 480px) {
    .hero {
        padding: 40px 0.75rem;
        min-height: 350px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    
    .hero p {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    
    .cta-buttons {
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        padding: 11px 20px;
        font-size: 0.85rem;
        letter-spacing: 0;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styling */
section {
    padding: 80px 2rem;
}

section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    text-align: center;
    font-weight: 700;
}

/* Large Desktops */
@media (min-width: 1920px) {
    section {
        padding: 100px 2rem;
    }
    
    section h2 {
        font-size: 3.2rem;
        margin-bottom: 4rem;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    section {
        padding: 60px 1.5rem;
    }
    
    section h2 {
        font-size: 2.3rem;
        margin-bottom: 2.5rem;
    }
}

/* Small Tablets & Large Phones */
@media (max-width: 768px) {
    section {
        padding: 50px 1rem;
    }
    
    section h2 {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }
}

/* Phones */
@media (max-width: 600px) {
    section {
        padding: 40px 0.75rem;
    }
    
    section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
}

/* Extra Small Phones */
@media (max-width: 480px) {
    section {
        padding: 30px 0.75rem;
    }
    
    section h2 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
}

/* About Doctor Section */
.about-doctor {
    background: #f0fdf4;
    padding: 80px 2rem;
}

.about-doctor h2 {
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-image img {
    width: 100%;
    max-width: 380px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-text h3 {
    font-size: 1.9rem;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.points {
    list-style: none;
}

.points li {
    padding: 1rem 0;
    padding-left: 40px;
    position: relative;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.4rem;
}

/* Tablets */
@media (max-width: 1024px) {
    .about-content {
        gap: 2.5rem;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .about-text p {
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }
    
    .points li {
        padding: 0.8rem 0;
        padding-left: 35px;
        font-size: 1rem;
    }
}

/* Small Tablets & Large Phones */
@media (max-width: 768px) {
    .about-doctor {
        padding: 50px 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image img {
        max-width: 280px;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        margin-bottom: 1.2rem;
        font-size: 0.95rem;
    }
    
    .points li {
        padding: 0.7rem 0;
        padding-left: 30px;
        font-size: 0.95rem;
    }
}

/* Phones */
@media (max-width: 600px) {
    .about-doctor {
        padding: 40px 0.75rem;
    }
    
    .about-image img {
        max-width: 220px;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .about-text p {
        margin-bottom: 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .points li {
        padding: 0.6rem 0;
        padding-left: 28px;
        font-size: 0.9rem;
    }
    
    .points li:before {
        font-size: 1.2rem;
    }
}

/* Extra Small Phones */
@media (max-width: 480px) {
    .about-doctor {
        padding: 30px 0.75rem;
    }
    
    .about-image img {
        max-width: 180px;
    }
    
    .about-text h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .about-text p {
        margin-bottom: 0.8rem;
        font-size: 0.85rem;
    }
    
    .points li {
        padding: 0.5rem 0;
        padding-left: 25px;
        font-size: 0.85rem;
    }
}

/* Services Section - ENHANCED WITH GRADIENTS */
.services {
    background: linear-gradient(135deg, 
        #f0fdf4 0%, 
        #e8f5e9 50%, 
        #f0fdf4 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 30%, rgba(39, 174, 96, 0.1) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(39, 174, 96, 0.1) 50%, transparent 70%);
    background-size: 60px 60px;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 5px solid transparent;
    border-image: linear-gradient(180deg, #27ae60, #1abc9c) 1;
    box-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #1abc9c, #3498db);
    animation: shimmer 2s infinite;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 40px rgba(39, 174, 96, 0.25),
        inset 0 0 20px rgba(39, 174, 96, 0.1);
    border-image: linear-gradient(180deg, #e74c3c, #27ae60) 1;
}

.service-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #27ae60 0%, #1a472a 100%);
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

.service-card:hover .service-icon {
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.5);
    transform: scale(1.1) rotateZ(-5deg);
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.learn-more-btn {
    display: inline-block;
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 1.5rem;
    border: 2px solid #27ae60;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.learn-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #27ae60;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.learn-more-btn:hover {
    color: white;
    border-color: #27ae60;
    left: 0;
}

.learn-more-btn:hover::before {
    left: 0;
}

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

@media (max-width: 768px) {
    .services {
        padding: 50px 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        border-left: 4px solid transparent;
        border-image: linear-gradient(180deg, #3498db, #1abc9c) 1;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        width: 70px;
        height: 70px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .services {
        padding: 40px 0.75rem;
    }
    
    .services-grid {
        gap: 1.2rem;
    }
    
    .service-card {
        padding: 1.5rem 1.2rem;
    }
    
    .service-icon {
        font-size: 2.2rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1.2rem 1rem;
    }
    
    .service-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
    }
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #27ae60 0%, #1a472a 100%);
    color: white;
    padding: 80px 2rem;
}

.testimonials h2 {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 5px solid transparent;
    border-image: linear-gradient(180deg, #1abc9c, #e74c3c) 1;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.testimonial-stars {
    font-size: 1.3rem;
    color: #ffc107;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #f39c12 0%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.author-info p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.85;
}

/* Testimonials Section - Responsive */
@media (max-width: 1024px) {
    .testimonials {
        padding: 60px 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 50px 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-stars {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .author-avatar {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
    }
    
    .author-info p {
        font-size: 0.8rem;
    }
}

@media (max-width: 600px) {
    .testimonials {
        padding: 40px 0.75rem;
    }
    
    .testimonials-grid {
        gap: 1.2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem 1.2rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.2rem 1rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    .author-avatar {
        width: 42px;
        height: 42px;
    }
}

/* Contact Section */
.contact {
    background: #f0fdf4;
    padding: 80px 2rem;
}

.contact h2 {
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s;
}

.contact-info:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.contact-info h3 {
    color: #3498db;
    margin-bottom: 2.5rem;
    font-size: 1.6rem;
}

.contact-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #ecf0f1;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

.contact-item a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item a:hover {
    color: #c0392b;
}

.contact-item p {
    color: #666;
    line-height: 1.7;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.contact-buttons a {
    flex: 1;
    min-width: 160px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Section - Responsive (CRITICAL FOR CONVERSION) */
@media (max-width: 1024px) {
    .contact {
        padding: 60px 1.5rem;
    }
    
    .contact-content {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 50px 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        padding: 2rem 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .contact-item strong {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-item a {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.95rem;
    }
    
    .contact-buttons {
        gap: 0.8rem;
    }
    
    .contact-buttons a {
        min-width: 140px;
        padding: 14px 25px;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 600px) {
    .contact {
        padding: 40px 0.75rem;
    }
    
    .contact-info {
        padding: 1.5rem 1.2rem;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-item {
        margin-bottom: 1.2rem;
        padding-bottom: 1.2rem;
    }
    
    .contact-item strong {
        font-size: 0.95rem;
    }
    
    .contact-item a {
        font-size: 0.95rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .contact-buttons a {
        width: 100%;
        min-width: auto;
        padding: 13px 20px;
        font-size: 0.9rem;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 30px 0.75rem;
    }
    
    .contact-info {
        padding: 1.2rem 1rem;
    }
    
    .contact-info h3 {
        font-size: 1.2rem;
    }
    
    .contact-item {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    
    .contact-item strong {
        font-size: 0.9rem;
    }
    
    .contact-buttons a {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
    
    .map-container {
        height: 250px;
    }
}

/* Footer - Responsive */
@media (max-width: 768px) {
    footer {
        padding: 1.5rem 1rem;
    }
    
    footer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 1rem 0.75rem;
    }
    
    footer p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

/* Floating WhatsApp Button - Responsive & Touch-Friendly */
@media (max-width: 768px) {
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        bottom: 25px;
        right: 25px;
    }
}

@media (max-width: 600px) {
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        bottom: 15px;
        right: 15px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 3rem;
}

/* CTA Buttons within sections */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 90%;
        max-width: 350px;
    }
}

@media (max-width: 600px) {
    .cta-buttons .btn {
        width: 100%;
        max-width: none;
    }
}

/* Inquiry Form Section */
.inquiry-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 80px 2rem;
}

.inquiry-section h2 {
    color: #2c3e50;
}

.inquiry-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.inquiry-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.inquiry-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.25);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.form-group.checkbox input {
    width: auto;
    margin: 0;
}

.form-group.checkbox label {
    margin: 0;
    font-weight: normal;
}

.btn-large {
    width: 100%;
    padding: 16px 30px;
    font-size: 1.05rem;
}

.inquiry-info {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    height: fit-content;
}

.inquiry-info h3 {
    color: #3498db;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.inquiry-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.inquiry-benefits li {
    padding: 0.8rem 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.inquiry-benefits li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: bold;
    margin-right: 0.5rem;
}

.inquiry-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 8px;
    color: #856404;
    font-size: 0.95rem;
}

.inquiry-note a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.inquiry-note a:hover {
    color: #c0392b;
}

/* Emergency Badge Enhancement */
.emergency-badge {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border: 2px solid #ff6b6b;
    border-left: 4px solid #ff6b6b;
    padding: 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.emergency-icon {
    font-size: 2.5rem;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: float 2.5s ease-in-out infinite;
}

.emergency-content {
    color: white;
    flex: 1;
}

.emergency-content h4 {
    font-size: 1.3rem;
    color: white;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.emergency-content p {
    margin: 0.3rem 0 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.emergency-phone {
    display: inline;
    color: #1abc9c;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0;
    background: none;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.emergency-phone:hover {
    color: #00d4aa;
    text-shadow: 0 0 15px rgba(26, 188, 156, 0.8);
}

/* Responsive Emergency Badge */
@media (max-width: 768px) {
    .emergency-badge {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .emergency-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .emergency-content h4 {
        font-size: 1.1rem;
    }
    
    .emergency-phone {
        font-size: 1.1rem;
        padding: 0.7rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .emergency-badge {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .emergency-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        min-width: 45px;
    }
    
    .emergency-content h4 {
        font-size: 1rem;
    }
    
    .emergency-content p {
        font-size: 0.85rem;
    }
    
    .emergency-phone {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .inquiry-section {
        padding: 60px 1.5rem;
    }
    
    .inquiry-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .inquiry-form {
        padding: 2.5rem;
    }
    
    .inquiry-info {
        padding: 2rem;
    }
}

/* Small Tablets & Large Phones */
@media (max-width: 768px) {
    .inquiry-section {
        padding: 50px 1rem;
    }
    
    .inquiry-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .inquiry-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px 12px;
        font-size: 0.95rem;
    }
    
    .inquiry-info {
        padding: 1.8rem 1.5rem;
    }
}

/* Phones */
@media (max-width: 600px) {
    .inquiry-section {
        padding: 40px 0.75rem;
    }
    
    .inquiry-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .inquiry-form {
        padding: 1.5rem 1rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 10px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .inquiry-info {
        padding: 1.5rem 1rem;
    }
    
    .inquiry-info h3 {
        font-size: 1.2rem;
    }
}

/* Extra Small Phones */
@media (max-width: 480px) {
    .inquiry-section {
        padding: 30px 0.75rem;
    }
    
    .inquiry-form {
        padding: 1.2rem 0.8rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 9px 8px;
        font-size: 0.85rem;
    }
}

/* ============================================
   FORUM PAGE STYLES
   ============================================ */

/* Forum Hero Section */
.forum-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.forum-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.forum-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.forum-hero .btn {
    margin-top: 1rem;
    font-size: 1rem;
    padding: 0.8rem 2rem;
}

/* Forum Main Container */
.forum-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Forum Sidebar */
.forum-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.forum-widget {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.forum-widget h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0.8rem;
}

.category-list a {
    color: #555;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.category-list a:hover {
    background: #f0f0f0;
    color: #667eea;
}

.category-list a.category-active {
    background: #667eea;
    color: white;
    font-weight: bold;
}

.badge {
    background: #667eea;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.tips-list {
    list-style: none;
}

.tips-list li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0.5rem;
}

.tips-list strong {
    color: #667eea;
}

.forum-widget p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Forum Main Content */
.forum-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Forum Search */
.forum-search {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.forum-search input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.forum-search input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.forum-search button {
    padding: 0.8rem 1.5rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.forum-search button:hover {
    background: #5568d3;
}

/* Forum Threads */
.forum-threads {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.forum-thread {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.forum-thread:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.forum-thread.pinned {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid #667eea;
}

.thread-avatar {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.thread-body {
    flex: 1;
}

.thread-body h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.thread-body h3 a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.thread-body h3 a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.thread-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.thread-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.thread-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.thread-tag {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.tag.cold {
    background: #ffebee;
    color: #c62828;
}

.tag.diabetes {
    background: #f3e5f5;
    color: #6a1b9a;
}

.tag.bp {
    background: #e3f2fd;
    color: #1565c0;
}

.tag.headache {
    background: #fff3e0;
    color: #e65100;
}

.tag.digestion {
    background: #e8f5e9;
    color: #2e7d32;
}

.thread-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    padding: 0.5rem 1rem;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.action-btn:hover {
    background: #5568d3;
}

.thread-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pinned-badge {
    background: #ffa726;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    white-space: nowrap;
}

.thread-status {
    flex-shrink: 0;
    text-align: right;
}

.popular {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: #ffeb3b;
    color: #333;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
}

.very-popular {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: #ff5722;
    color: white;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 2rem;
}

.load-more-container .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

/* New Thread Section */
.new-thread-section {
    background: #f9f9f9;
    padding: 3rem 2rem;
    margin: 2rem 0;
}

.new-thread-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #888;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.new-thread-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 2rem;
    max-width: 800px;
}

.new-thread-form .form-group {
    margin-bottom: 1.5rem;
}

.new-thread-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.new-thread-form small {
    display: block;
    color: #888;
    margin-top: 0.3rem;
    font-size: 0.85rem;
}

.new-thread-form input,
.new-thread-form select,
.new-thread-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.new-thread-form input:focus,
.new-thread-form select:focus,
.new-thread-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.new-thread-form textarea {
    resize: vertical;
}

.new-thread-form .checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.new-thread-form .checkbox input {
    width: auto;
    margin: 0;
}

.new-thread-form .checkbox label {
    margin: 0;
    font-weight: 400;
}

.form-info {
    background: #e3f2fd;
    border-left: 4px solid #1976d2;
    padding: 1.5rem;
    border-radius: 4px;
    max-width: 800px;
}

.form-info h3 {
    color: #1565c0;
    margin-bottom: 0.5rem;
}

.form-info p {
    color: #333;
    line-height: 1.6;
}

.form-info a {
    color: #1565c0;
    font-weight: bold;
    text-decoration: none;
}

.form-info a:hover {
    text-decoration: underline;
}

/* Responsive Design for Forum */
@media (max-width: 1024px) {
    .forum-container {
        grid-template-columns: 250px 1fr;
        gap: 1.5rem;
    }
    
    .forum-thread {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .thread-meta {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .forum-hero h1 {
        font-size: 2rem;
    }
    
    .forum-hero p {
        font-size: 1rem;
    }
    
    .forum-container {
        grid-template-columns: 1fr;
    }
    
    .forum-sidebar {
        order: 2;
    }
    
    .forum-content {
        order: 1;
    }
    
    .forum-search {
        flex-direction: column;
    }
    
    .forum-search button {
        width: 100%;
    }
    
    .forum-thread {
        flex-direction: column;
        gap: 1rem;
    }
    
    .thread-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .thread-status {
        text-align: left;
    }
    
    .thread-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .thread-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .new-thread-form {
        padding: 1.5rem;
    }
    
    .forum-hero .btn {
        width: 100%;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .forum-hero {
        padding: 2rem 1rem;
    }
    
    .forum-hero h1 {
        font-size: 1.5rem;
    }
    
    .forum-hero p {
        font-size: 0.95rem;
    }
    
    .forum-widget {
        padding: 1rem;
    }
    
    .forum-widget h3 {
        font-size: 1rem;
    }
    
    .category-list a {
        font-size: 0.9rem;
    }
    
    .badge {
        padding: 0.2rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .forum-thread {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .thread-body h3 {
        font-size: 1rem;
    }
    
    .thread-excerpt {
        font-size: 0.9rem;
    }
    
    .thread-meta {
        font-size: 0.8rem;
    }
    
    .forum-search input {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .forum-search button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .new-thread-form {
        padding: 1rem;
    }
    
    .new-thread-form input,
    .new-thread-form select,
    .new-thread-form textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   GALLERY SECTION STYLES
   ============================================ */

.gallery {
    background: #f0fdf4;
    padding: 3rem 2rem;
    margin: 2rem 0;
}

.gallery h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.gallery-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    animation: scaleInCenter 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.gallery-item:hover {
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.25);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
    filter: brightness(1);
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.1) saturate(1.2);
}

.gallery-caption {
    padding: 1.5rem;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.8), 
        transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.gallery-caption p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Infographic Card Enhancements */
.infographic-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f7ea 0%, #b2dfdb 100%);
}

.infographic-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2.5rem;
    opacity: 0.9;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.infographic-card .gallery-caption {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    position: absolute;
    bottom: 0;
    top: 0;
    transform: translateX(0) translateY(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.infographic-card:hover .gallery-caption {
    transform: translateX(0) translateY(0);
}

.infographic-badge {
    margin-top: 1rem;
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.5s ease 0.2s both;
}

.infographic-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(0.95) contrast(1.05);
}

.infographic-card:hover img {
    transform: scale(1.05) rotate(-1deg);
    filter: brightness(1) contrast(1.1);
}

/* Responsive Gallery Grid */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.2rem;
    }
    
    .infographic-icon {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .gallery h2 {
        font-size: 1.5rem;
    }
    
    .infographic-card img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    
    .infographic-icon {
        font-size: 1.5rem;
        top: 10px;
        right: 10px;
    }
    
    .infographic-card img {
        height: 150px;
    }
    
    .gallery-caption h4 {
        font-size: 1rem;
    }
    
    .gallery-caption p {
        font-size: 0.85rem;
    }
    
    .infographic-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* ============================================
   FAQ SECTION STYLES
   ============================================ */

.faq {
    padding: 3rem 2rem;
    background: #f0fdf4;
}

.faq .container {
    max-width: 900px;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.faq-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #3498db;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
    background: linear-gradient(90deg, #f8f9fa 0%, #ffffff 100%);
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.faq-item.active .faq-question {
    background: linear-gradient(90deg, #e6f2ff 0%, #f0f8ff 100%);
    border-bottom-color: #3498db;
}

.faq-question h4 {
    color: #2c3e50;
    font-size: 1rem;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-toggle {
    color: #3498db;
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    display: inline-block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #e74c3c;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Service Detail Pages Styles */
.service-hero {
    color: white;
    padding: 100px 2rem;
    text-align: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.service-hero p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    max-width: 600px;
}

.service-details {
    padding: 4rem 2rem;
    background: #f8f9fa;
    min-height: 500px;
}

.service-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.service-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-info h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.service-info h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #3498db;
    padding-bottom: 0.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-list li {
    color: #555;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.cta-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #27ae60;
}

.cta-section h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.cta-section .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.back-section {
    padding: 3rem 2rem;
    text-align: center;
    background: white;
}

@media (max-width: 1024px) {
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-hero {
        padding: 80px 1.5rem;
    }
    
    .service-info h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-details {
        padding: 2rem 1rem;
    }
    
    .cta-section .cta-buttons {
        flex-direction: column;
    }
}
