/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1e88e5;
    --primary-dark: #0d47a1;
    --accent: #43a047;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-700: #495057;
    --gray-900: #212529;
    --shadow-sm: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
    --shadow-md: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.02);
    --radius-lg: 1.5rem;
    --radius-md: 1rem;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-900);
    line-height: 1.5;
    background: white;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/* HEADER */
.site-header {
    background: white;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    position: relative;
    z-index: 100;
}
.site-header.sticky {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo img {
    max-height: 50px;
    width: auto;
}
.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.main-nav a {
    text-decoration: none;
    font-weight: 500;
    color: var(--gray-900);
    transition: color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
    color: var(--primary);
}
.mobile-toggle, .mobile-book-btn {
    display: none;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    padding: 5rem 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin-bottom: 3rem;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.hero p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}
.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}
.btn-primary {
    background: white;
    color: var(--primary);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}
.btn-secondary:hover {
    background: white;
    color: var(--primary);
}
.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

/* SECTION STYLES */
section {
    padding: 4rem 0;
}
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}
.section-sub {
    text-align: center;
    color: var(--gray-700);
    max-width: 700px;
    margin: 0 auto 3rem;
}
/* Services Grid */
.services-grid, .specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card, .specialist-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover, .specialist-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.service-card img, .specialist-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.service-card h3, .specialist-card h3 {
    margin: 1rem 1rem 0.5rem;
}
.service-card p, .specialist-card p {
    margin: 0 1rem 1rem;
    color: var(--gray-700);
}

/* Why Choose Us */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.why-points {
    list-style: none;
}
.why-points li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.why-points li::before {
    content: "✓";
    background: var(--accent);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    background: var(--gray-100);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
}
.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}
.rating {
    color: #ffb400;
    letter-spacing: 2px;
    margin: 0.5rem 0;
}

/* Appointment Form */
.appointment-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--gray-100);
    padding: 2rem;
    border-radius: var(--radius-md);
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 2rem;
    font-family: inherit;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-content {
    padding: 1.5rem;
}
.blog-meta {
    font-size: 0.85rem;
    color: var(--gray-700);
    margin: 0.5rem 0;
}

/* Footer */
.site-footer {
    background: var(--gray-900);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.footer-logo {
   width: 70%;
}
.footer-links ul {
    list-style: none;
}
.footer-links a, .footer-contact p {
    color: #ccc;
    text-decoration: none;
    line-height: 2;
}
.social-icons {
    display: flex;
    gap: 1rem;
}
.social-icon {
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer-bottom {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #444;
    
}

.footer-bottom span{
    font-weight: 200;
    font-size: .9em;
}

.footer-bottom span a{
    text-decoration: none;
    color: #1e88e5;
}

.footer-bottom span a:hover{
    color: #ccc;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s;
    z-index: 99;
}
.whatsapp-float:hover {
    transform: scale(1.05);
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: var(--primary);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 99;
}
.back-to-top.visible {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
        font-size: 1.8rem;
        background: none;
        border: none;
        cursor: pointer;
    }
    .main-nav {
        display: none;
        width: 100%;
        margin-top: 1rem;
    }
    .main-nav.active {
        display: block;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .mobile-book-btn {
        display: block;
        background: var(--primary);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 2rem;
        text-decoration: none;
    }
    .hero-grid, .why-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

/* ================= PHARMACY PAGE STYLES ================= */

/* Hero Section */
.pharmacy-hero {
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    color: white;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin-bottom: 2rem;
}
.pharmacy-hero .hero-content {
    max-width: 600px;
}
.pharmacy-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.pharmacy-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Split Layout (Image + Text) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.split-layout.reverse {
    direction: rtl;
}
.split-layout.reverse .split-text {
    direction: ltr;
}
.split-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}
.split-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

/* Services & Categories Grids */
.services-grid, .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.service-card, .category-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}
.service-card:hover, .category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.service-card img, .category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.service-card h3, .category-card h3 {
    margin: 1rem 0.5rem;
}
.service-card p {
    padding: 0 1rem 1rem;
    color: var(--gray-700);
}

/* Quick Order CTA */
.quick-order {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 3rem 0;
    margin: 2rem 0;
}
.cta-card {
    text-align: center;
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}
.cta-card h2 {
    color: var(--accent);
    font-size: 2rem;
}
.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
}
.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}
.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

/* Two Columns (Policy + Delivery) */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.policy-box, .delivery-box {
    background: var(--gray-100);
    padding: 2rem;
    border-radius: var(--radius-md);
}
.policy-box ul {
    list-style: none;
    padding: 0;
}
.policy-box li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}
.policy-box li::before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}
.delivery-options {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.delivery-card {
    background: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    flex: 1;
    text-align: center;
}
.delivery-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.hours-list {
    text-align: center;
    list-style: none;
    background: var(--gray-100);
    padding: 2rem;
    border-radius: var(--radius-md);
    max-width: 400px;
    margin: 0 auto;
}
.hours-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}
.hours-list li:last-child {
    border-bottom: none;
}

/* Map Container */
.map-container {
    margin-top: 2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Responsive */
@media (max-width: 768px) {
    .split-layout, .split-layout.reverse, .two-columns {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .pharmacy-hero h1 {
        font-size: 2rem;
    }
    .cta-card h2 {
        font-size: 1.6rem;
    }
    .services-grid, .categories-grid {
        grid-template-columns: 1fr;
    }
    .delivery-options {
        flex-direction: column;
    }
}

/* Homepage blog preview (reuse existing blog-grid styles) */
.home-blog-preview .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* ================= PREMIUM SERVICES PAGE ================= */
.services-premium {
    padding: 4rem 0;
}
.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}
.service-premium-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 45px -12px rgba(0,0,0,0.15);
}
.card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-premium-card:hover .card-image img {
    transform: scale(1.05);
}
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3));
    pointer-events: none;
}
.card-content {
    padding: 1.8rem;
}
.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}
.card-content p {
    color: var(--gray-700);
    line-height: 1.5;
    margin-bottom: 1rem;
}
.service-highlights {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}
.service-highlights li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--gray-700);
}
.service-highlights li::before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}
.card-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}
.enquire-btn {
    flex: 1;
    text-align: center;
    background: var(--primary);
    color: white;
    padding: 0.7rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    transition: all 0.2s;
}
.enquire-btn:hover {
    background: var(--primary-dark);
    transform: translateX(5px);
}
.btn-whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #25d366;
    border-radius: 50%;
    color: white;
    transition: transform 0.2s;
}
.btn-whatsapp-icon:hover {
    transform: scale(1.05);
    background: #128C7E;
}
@media (max-width: 768px) {
    .services-premium-grid {
        grid-template-columns: 1fr;
    }
    .card-actions {
        flex-direction: column;
    }
    .btn-whatsapp-icon {
        width: 100%;
        border-radius: 2rem;
        padding: 0.7rem;
    }
}

/* ================= PREMIUM CONTACT PAGE ================= */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 4rem 0;
    text-align: center;
    color: white;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin-bottom: 3rem;
}
.contact-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}
.contact-info-section {
    padding: 2rem 0 4rem;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.contact-card {
    background: white;
    padding: 1.8rem;
    border-radius: 1.5rem;
    box-shadow: 0 15px 30px -12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px -15px rgba(0,0,0,0.15);
}
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}
.contact-card p, .contact-card a {
    color: var(--gray-700);
    text-decoration: none;
    line-height: 1.5;
}
.contact-card a:hover {
    color: var(--primary);
}
.hours-list-compact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hours-list-compact li {
    padding: 0.3rem 0;
    border-bottom: 1px dashed #e0e0e0;
    font-size: 0.9rem;
}
.hours-list-compact li:last-child {
    border-bottom: none;
}
.map-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 30px -12px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}
.social-connect {
    background: var(--gray-100);
    padding: 1.8rem;
    border-radius: 1rem;
    text-align: center;
}
.social-connect h3 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}
.social-icons-large {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    color: var(--primary);
    font-weight: bold;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.social-icon-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}
.contact-form-section {
    padding: 2rem 0 4rem;
}
.form-cta-card {
    background: linear-gradient(135deg, #f5f7fa, #e9ecef);
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.form-cta-card h2 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}
.form-cta-card p {
    margin-bottom: 1.5rem;
    color: var(--gray-700);
}
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-hero h1 {
        font-size: 2rem;
    }
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

/* Social icons in footer */
.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.2s;
    color: white;
}
.social-icon-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}
.social-icon-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Subtle hero image animation */
.hero-image img {
    animation: subtleGlow 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

@keyframes subtleGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.01);
        box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.2);
        filter: brightness(1.02);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        filter: brightness(1);
    }
}

/* @media (prefers-reduced-motion: reduce) {
    .hero-image img {
        animation: none;
        transform: none;
    }
} */

/* ================= SUBTLE SHADOWS FOR DEPTH ================= */

/* Global card styles (already used, ensuring consistency) */
.service-card,
.specialist-card,
.testimonial-card,
.blog-card,
.contact-card,
.pharmacy .service-card,
.category-card,
.delivery-card {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: var(--shadow-sm);
}

/* Slightly deeper shadow on hover for interactive cards */
.service-card:hover,
.specialist-card:hover,
.blog-card:hover,
.contact-card:hover,
.pharmacy .service-card:hover,
.category-card:hover {
    box-shadow: var(--shadow-md);
}

/* Hero image (resting + animation retains glow) */
.hero-image img {
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

/* Buttons – subtle depth */
.btn {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}
.btn-primary:hover,
.btn-secondary:hover,
.btn-whatsapp:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Form inputs – soft focus shadow */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.2);
    border-color: var(--primary);
}

/* Appointment form container */
.appointment-form {
    box-shadow: var(--shadow-md);
}

/* Footer – subtle top shadow */
.site-footer {
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.03);
    position: relative;
}

/* Why choose us image (if any) */
.why-grid img,
.split-image img {
    box-shadow: var(--shadow-md);
}

/* Map wrapper */
.map-wrapper,
.map-container iframe {
    box-shadow: var(--shadow-md);
}

/* Quick order CTA card */
.cta-card {
    box-shadow: var(--shadow-md);
}

/* Back to top button */
.back-to-top {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.back-to-top:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Floating WhatsApp button */
.whatsapp-float {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.whatsapp-float:hover {
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

/* Section headers (optional soft underline shadow) */
.section-title {
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hero section – soft inner glow for depth */
.hero {
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.05), 0 10px 25px -12px rgba(0,0,0,0.1);
}

/* Fix for secondary buttons on dark backgrounds */
.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}
.btn-secondary:hover {
    background: white;
    color: var(--primary) !important; /* Force proper contrast */
    border-color: white;
}

/* Alternative: dedicated WhatsApp button style for dark sections */
.btn-whatsapp-dark {
    background: transparent;
    border: 2px solid white;
    color: white;
}
.btn-whatsapp-dark:hover {
    background: #25d366;
    border-color: #25d366;
    color: white;
}

.social-icons-large {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.2s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-decoration: none;
}
.social-icon-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}
.social-icon-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}