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

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

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

/* Navigation */
.navbar {
    background: #ffffff;
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: 120px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 20px 0;
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 140px;
    width: auto;
    object-fit: contain;
    max-width: 500px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    position: relative;
}

.mortar {
    width: 100%;
    height: 100%;
    background: #22c55e;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    border: 3px solid #000;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.9);
}

.mortar::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1px;
}

.capsule {
    position: absolute;
    width: 8px;
    height: 14px;
    border-radius: 7px;
    border: 2px solid #fff;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.8);
}

.capsule-1 {
    left: 10px;
    top: 10px;
    background: linear-gradient(to right, #3b82f6 50%, #ef4444 50%);
}

.capsule-2 {
    left: 20px;
    top: 10px;
    background: linear-gradient(to right, #3b82f6 50%, #ef4444 50%);
}

.pestle {
    position: absolute;
    right: 6px;
    top: 8px;
    width: 10px;
    height: 18px;
    background: #fff;
    border-radius: 5px 5px 10px 10px;
    border: 2px solid #fff;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.9);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text .dawa {
    color: #3b82f6;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.8);
}

.logo-text .pharmacy {
    color: #ef4444;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.8);
}

.nav-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.nav-actions .btn-primary,
.nav-actions .btn-secondary {
    padding: 8px 16px;
    font-size: 0.8rem;
    border-radius: 6px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.nav-menu li:last-child,
.nav-menu li:nth-last-child(2) {
    margin-left: 1rem;
}

.nav-menu .btn-primary,
.nav-menu .btn-secondary {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: 8px;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #3b82f6;
    transform: translateY(-1px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) translateX(-50%);
    transition: all 0.3s ease;
    list-style: none;
    padding: 1rem 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(-50%);
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    color: #4b5563;
    font-size: 0.9rem;
    padding: 12px 24px;
    display: block;
    transition: all 0.2s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
    transform: none;
}

.dropdown-menu a::after {
    display: none;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.btn-secondary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.25);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.35);
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-outline:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
    color: white;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

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

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.hero-pharmacy-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.hero-pharmacy-image:hover {
    transform: scale(1.05);
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Services Grid */
.services-grid {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.services-grid h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.services-grid h3 {
    text-align: center;
    font-size: 1.3rem;
    color: #3b82f6;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

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

.service-card {
    background: white;
    padding: 0;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

/* Service Image Container */
.service-image-container {
    width: 100%;
    height: 300px;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

/* Zoom out the delivery image */
.service-card-delivery .service-image {
    object-fit: contain;
    padding: 20px;
    background: white;
}

/* Colorful service card icons */
.service-card-delivery .service-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.service-card-immunizations .service-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.service-card-longterm .service-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.service-card-savings .service-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.service-card-mtm .service-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.service-card-compounding .service-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.service-card-petcare .service-icon {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
    padding-top: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.coming-soon-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Quick Actions */
.quick-actions {
    padding: 80px 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
}

.quick-actions .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.action-card {
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 5px solid;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    background: radial-gradient(circle at 30% 50%, white 0%, transparent 70%);
    pointer-events: none;
}

.action-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 24px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.action-card:hover::after {
    opacity: 1;
}

.action-card-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-color: #fbbf24;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4), 0 0 0 1px rgba(251, 191, 36, 0.5);
}

.action-card-green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-color: #06b6d4;
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.4), 0 0 0 1px rgba(6, 182, 212, 0.5);
}

.action-card-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-color: #f97316;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4), 0 0 0 1px rgba(249, 115, 22, 0.5);
}

.action-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.action-card-blue:hover {
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.5), 0 0 30px rgba(251, 191, 36, 0.6);
    border-color: #fcd34d;
}

.action-card-green:hover {
    box-shadow: 0 25px 50px rgba(34, 197, 94, 0.5), 0 0 30px rgba(6, 182, 212, 0.6);
    border-color: #22d3ee;
}

.action-card-purple:hover {
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.5), 0 0 30px rgba(249, 115, 22, 0.6);
    border-color: #fb923c;
}

.action-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.action-card:hover .action-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.action-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.action-card p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.98);
    line-height: 1.7;
    font-size: 1.05rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.action-card .btn-primary {
    background: white;
    color: #1e40af;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
}

.action-card-blue .btn-primary {
    color: #3b82f6;
}

.action-card-green .btn-primary {
    color: #22c55e;
}

.action-card-purple .btn-primary {
    color: #8b5cf6;
}

.action-card .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.action-card-blue .btn-primary:hover {
    border-color: #fbbf24;
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.4);
}

.action-card-green .btn-primary:hover {
    border-color: #06b6d4;
    box-shadow: 0 15px 30px rgba(6, 182, 212, 0.4);
}

.action-card-purple .btn-primary:hover {
    border-color: #f97316;
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.about-content h3 {
    font-size: 1.8rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

.about-pharmacy-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.image-placeholder {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    height: 300px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 30px;
    background: #22c55e;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
    background: white;
}

.services-detail h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.services-detail h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.service-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-item-image i {
    font-size: 1.5rem;
    color: white;
}

.service-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.service-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Experts Section */
.experts {
    padding: 80px 0;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}

.experts h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.experts h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.experts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experts-text p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
}

.experts-pharmacy-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.experts-pharmacy-image:hover {
    transform: scale(1.02);
}

/* Pharmacy Gallery */
.pharmacy-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #14b8a6 100%);
    position: relative;
    overflow: hidden;
}

.pharmacy-gallery::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"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="white" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.pharmacy-gallery .container {
    position: relative;
    z-index: 1;
}

.pharmacy-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.pharmacy-gallery h3 {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 4px solid rgba(255, 255, 255, 0.5);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.9);
}

.gallery-item:nth-child(1) {
    border-color: rgba(251, 191, 36, 0.6);
}

.gallery-item:nth-child(1):hover {
    border-color: #fbbf24;
}

.gallery-item:nth-child(2) {
    border-color: rgba(34, 197, 94, 0.6);
}

.gallery-item:nth-child(2):hover {
    border-color: #22c55e;
}

.gallery-item:nth-child(3) {
    border-color: rgba(139, 92, 246, 0.6);
}

.gallery-item:nth-child(3):hover {
    border-color: #8b5cf6;
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Zoom out the expert.png image */
.gallery-item:nth-child(1) .gallery-image {
    object-fit: contain;
    padding: 20px;
    background: white;
}


.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 100%);
    color: white;
    padding: 2rem;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.gallery-item:nth-child(1):hover .gallery-overlay {
    background: linear-gradient(to top, rgba(251, 191, 36, 0.95) 0%, rgba(245, 158, 11, 0.85) 100%);
}

.gallery-item:nth-child(2):hover .gallery-overlay {
    background: linear-gradient(to top, rgba(34, 197, 94, 0.95) 0%, rgba(22, 163, 74, 0.85) 100%);
}

.gallery-item:nth-child(3):hover .gallery-overlay {
    background: linear-gradient(to top, rgba(139, 92, 246, 0.95) 0%, rgba(124, 58, 237, 0.85) 100%);
}

.gallery-overlay h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.98;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mobile App */
.mobile-app {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
}

.mobile-app .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.app-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.app-features {
    list-style: none;
    margin-bottom: 2rem;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.app-features i {
    color: #22c55e;
    font-size: 1.2rem;
}

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

.app-store, .google-store {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.app-store:hover, .google-store:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Reviews */
.reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fed7aa 100%);
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #fbbf24;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.review-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 3px solid #fbbf24;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.review-image i {
    font-size: 2rem;
    color: white;
}

.review-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.review-card p {
    color: #64748b;
    line-height: 1.6;
    font-style: italic;
}

/* Info Cards */
.info-cards {
    padding: 80px 0;
    background: #f8fafc;
}

.info-cards .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.info-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-image i {
    font-size: 2rem;
    color: white;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.info-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

.contact .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-item i {
    color: #3b82f6;
    font-size: 1.2rem;
    width: 20px;
}

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

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: #f8fafc;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 10px;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #374151;
        margin: 3px 0;
        transition: 0.3s;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: 999;
    }

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

    .nav-menu li {
        margin: 0;
        padding: 1rem 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        display: block;
    }

    .navbar {
        height: 100px;
    }

    .nav-header {
        height: 100px;
        padding: 15px 0;
    }

    .logo-image {
        height: 80px;
        max-width: 300px;
    }

    .nav-actions {
        display: none;
    }

    .hero {
        padding: 90px 0 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about .container,
    .experts-content,
    .mobile-app .container,
    .contact .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .hero-buttons,
    .contact-buttons {
        justify-content: center;
    }

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

    .services-grid-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

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

    .hero-content h1 {
        font-size: 2rem;
    }

    .service-card,
    .action-card,
    .info-card {
        padding: 1.5rem;
    }

    .contact-buttons {
        flex-direction: column;
    }
}

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

.service-card,
.action-card,
.info-card,
.review-card {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}
