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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header Styles */
.top-bar {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 12px 0;
}

.contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #fbbf24;
}

.contact-item i {
    margin-right: 8px;
}

.main-nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 50;
    transition: all 0.3s ease;
}

.main-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    background: transparent;
    color: black;
        width: 20%;
    /* padding: 12px 24px; */
    border-radius: 50px;
    font-weight: bold;
    font-size: 20px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d97706;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f59e0b;
    transition: width 0.3s ease;
}

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

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877f2, #166fe5);
    color: white;
}

.social-icon.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #374151;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/5668473/pexels-photo-5668473.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    padding: 150px 20px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    font-weight: 500;
}

.badge i {
    color: #fbbf24;
    margin-right: 8px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: bold;
    margin-bottom: 32px;
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 40px;
    color: #e5e7eb;
}

.hero-description {
    font-size: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    color: #d1d5db;
}

.hero-subdescription {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #9ca3af;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: black;
    font-weight: bold;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: bold;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

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

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.section-badge i {
    margin-right: 8px;
}

.section-header h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: bold;
    color: #111827;
    margin-bottom: 24px;
}

.section-divider {
    width: 96px;
    height: 4px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    margin: 0 auto;
    border-radius: 2px;
}

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

.about-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-card i {
    color: #10b981;
    font-size: 24px;
    margin-top: 4px;
    flex-shrink: 0;
}

.about-card p {
    font-size: 18px;
    line-height: 1.6;
    color: #374151;
}

.about-card strong {
    color: #1e40af;
}

.highlight-card {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.highlight-card i {
    color: #fbbf24;
}

.highlight-card strong {
    color: #fbbf24;
}

.cta-card {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: black;
}

.cta-card p {
    color: black;
    font-weight: 500;
}

.about-stats {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 24px;
}



.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-card:nth-child(1) .stat-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: black;
}

.stat-card:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.stat-card.featured .stat-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.stat-card h3 {
    font-size: 28px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 12px;
}

.stat-card p {
    color: #6b7280;
    font-weight: 500;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 16px;
}

.stars i {
    color: #fbbf24;
    font-size: 20px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.service-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 64px;
    background: white;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.tab-btn {
    padding: 16px 32px;
    border-radius: 16px;
    border: none;
    background: transparent;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #6b7280;
}

.tab-btn:hover {
    background: #f9fafb;
    color: #374151;
}

.tab-btn.active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.service-card.digital-marketing {
    border-color: #3b82f6;
}

.service-card.pay-per-lead {
    border-color: #10b981;
}

.service-card.pay-per-call {
    border-color: #f59e0b;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.digital-marketing .service-icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
}

.pay-per-lead .service-icon {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
}

.pay-per-call .service-icon {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.service-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

.service-content {
    margin-top: 48px;
}

.content-panel {
    display: none;
    background: white;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
    border: 2px solid #f3f4f6;
}

.content-panel.active {
    display: block;
}

.content-header {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.content-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.content-icon.emerald {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.content-icon.amber {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.content-icon i {
    color: white;
    font-size: 32px;
}

.content-header h3 {
    font-size: 48px;
    font-weight: bold;
    color: #111827;
}

.content-header p {
    color: #3b82f6;
    font-weight: 500;
    margin-top: 4px;
}

.content-description {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.content-description i {
    color: #10b981;
    font-size: 24px;
    margin-top: 4px;
    flex-shrink: 0;
}

.content-description p {
    font-size: 18px;
    line-height: 1.6;
    color: #374151;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.content-item {
    background: white;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.content-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.content-item i {
    color: #3b82f6;
    font-size: 24px;
    margin-bottom: 16px;
}

.content-item h4 {
    font-size: 20px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 12px;
}

.content-item p {
    color: #6b7280;
    line-height: 1.6;
}

.content-highlight {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.3);
}

.content-highlight.emerald {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.3);
}

.content-highlight.amber {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 15px 50px rgba(245, 158, 11, 0.3);
}

.content-highlight i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
    margin-bottom: 16px;
}

.content-highlight h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}

.content-highlight p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Practice Areas Section */
.practice-areas {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #e0f2fe);
}



.slider-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%; /* 2 slides * 100% for desktop (3 cards each) */
}

.slide {
    width: 33.333%; /* 100% / 3 cards per slide on desktop */
    flex-shrink: 0;
    padding: 0 16px;
}

.practice-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.practice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    border-color: #fbbf24;
}

.practice-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 3px solid #fbbf24;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
}

.practice-card:hover .practice-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.3);
}

.practice-icon i {
    color: #d97706;
    font-size: 36px;
}

.practice-card h3 {
    font-size: 22px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.practice-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 15px;
    flex-grow: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: 2px solid #e5e7eb;
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: #fbbf24;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.slider-btn:hover i {
    color: white;
}

.slider-btn.prev {
    left: -28px;
}

.slider-btn.next {
    right: -28px;
}

.slider-btn i {
    color: #374151;
    font-size: 24px;
    transition: color 0.3s ease;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: none;
    background: #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.indicator.active {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.indicator:hover {
    background: #9ca3af;
    transform: scale(1.1);
}

/* Mobile Responsive for Practice Areas */
@media (max-width: 768px) {
    .slider {
        width: 600%; /* Keep same for mobile */
    }
    
    .slide {
        width: 16.666%; /* Same width per slide */
    }
    
    .practice-card {
        padding: 24px;
    }
    
    .practice-card h3 {
        font-size: 18px;
        min-height: 50px;
    }
    
    .practice-card p {
        font-size: 14px;
    }
    
    .slider-btn {
        width: 48px;
        height: 48px;
    }
    
    .slider-btn.prev {
        left: -24px;
    }
    
    .slider-btn.next {
        right: -24px;
    }
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info {
    display: flex;
    
    gap: 32px;
}
.contact .contact-info{
    display: flex;
    flex-direction: column;
}
.contact-text {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.contact-text h3 {
    font-size: 36px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 24px;
}

.contact-text p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 18px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon.location {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.contact-icon.phone {
    background: linear-gradient(135deg, #10b981, #059669);
}

.contact-icon.email {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.contact-icon.time {
    background: rgba(0, 0, 0, 0.2);
}

.contact-icon i {
    color: white;
    font-size: 28px;
}

.contact-card.response {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: black;
}

.contact-card h4 {
    font-weight: bold;
    color: #111827;
    margin-bottom: 4px;
}

.contact-card span {
    color: #6b7280;
    font-size: 18px;
    font-weight: 500;
}

.contact-card.response h4,
.contact-card.response span {
    color: black;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 32px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 8px;
}

.form-header p {
    color: #6b7280;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    color: #374151;
    margin-bottom: 12px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 16px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 18px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-group small {
    color: #6b7280;
    font-size: 12px;
    margin-top: 8px;
}

.form-group textarea {
    resize: none;
}

.submit-btn {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: black;
    font-weight: bold;
    padding: 20px 32px;
    border-radius: 12px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #111827, #000000);
    color: white;
    padding: 64px 0;
}

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

.footer-section h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
}

.footer-section h4 {
    font-size: 20px;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 24px;
}

.footer-section h5 {
    font-size: 18px;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 16px;
}

.footer-logo {
    display: flex;
    justify-content: start;
    margin-bottom: 24px;
}

.logo-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: black;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.footer-tagline {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 24px;
    color: #fbbf24;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 16px;
}

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

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

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

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-item i {
    color: #fbbf24;
    font-size: 20px;
    width: 20px;
}

.footer-contact-item span {
    color: #d1d5db;
    font-weight: 500;
}

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

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #166fe5);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.social-link i {
    color: white;
    font-size: 20px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #9ca3af;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .service-tabs {
        flex-direction: column;
        gap: 8px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .slider {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .about-card,
    .contact-text,
    .contact-form-container {
        padding: 24px;
    }
    
    .service-card,
    .practice-card {
        padding: 24px;
    }
}