/* Elegant Professional Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2d3748;
}

:root {
    --primary: #2b6cb0;
    --secondary: #4a5568;
    --accent: #ed8936;
    --light: #f7fafc;
    --white: #ffffff;
    --shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    color: white;
    padding: 0.2rem 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001;
}

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

.contact-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.social-links a {
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 14px;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-2px);
    color: white;
}

/* Navigation */
.navbar {
    padding: 0.1rem 0;
    background: white;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo {
    height: 90px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent);
}

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

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1;
    top: 100%;
    left: 0;
    padding: 1rem 0;
}

.dropdown-content a {
    color: var(--primary);
    padding: 0.5rem 1rem;
    text-decoration: none;
    display: block;
    transition: all 0.3s;
}

.dropdown-content a:hover {
    background: var(--light);
    color: var(--accent);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropdown-content li{
    list-style: none;
}

/* CTA Button */
.nav-cta {
    display: flex;
    align-items: center;
}

.cta-btn {
    background: var(--accent);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(237, 137, 54, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 137, 54, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero */
.hero-slider {
    color: white;
    text-align: center;
    position: relative;
    min-height: 100vh;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 200px 0 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 108, 176, 0.85);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.slick-dots {
    bottom: 30px;
}

.slick-dots li button:before {
    color: white;
    font-size: 12px;
}

.slick-dots li.slick-active button:before {
    color: var(--accent);
}

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

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

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

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 15px rgba(237, 137, 54, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(237, 137, 54, 0.6);
}

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

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About */
.about-company {
    padding: 100px 0;
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Vision Mission */
.vision-mission {
    padding: 100px 0;
    background: var(--light);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.vm-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.vm-card:hover {
    transform: translateY(-5px);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #3182ce);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

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

.vm-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.vm-card p {
    color: var(--secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Counter */
.counter-section {
    padding: 80px 0;
    background: var(--primary);
    color: white;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.counter-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Why Choose Us */
.why-choose-home {
    padding: 100px 0;
    background: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #3182ce);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--secondary);
    line-height: 1.7;
}

/* Services */
.services-slider-section {
    padding: 100px 0;
    background: white;
}

.service-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin: 0 15px;
    transition: all 0.3s;
}

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

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.service-info {
    padding: 2.5rem 2rem;
    text-align: center;
}

.service-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
}

.service-btn {
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(237, 137, 54, 0.3);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 137, 54, 0.5);
}

/* Team */
.team-home {
    padding: 100px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.team-member {
    background: white;
    padding: 0;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
    overflow: hidden;
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.member-avatar {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.team-member:hover .member-avatar img {
    transform: scale(1.1);
}

.member-info {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #3182ce 100%);
    color: white;
    position: relative;
}

.member-info::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 10px solid var(--primary);
}

.team-member h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* Home Page Specific - Strengths */
.strengths-home {
    padding: 100px 0;
    background: white;
}

.strengths-home .strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.strengths-home .strength-item {
    background: var(--light);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #e2e8f0;
}

.strengths-home .strength-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.strengths-home .strength-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.strengths-home .strength-icon i {
    font-size: 1.8rem;
    color: white;
}

.strengths-home .strength-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.strengths-home .strength-item p {
    color: var(--secondary);
    line-height: 1.6;
}

/* CTA */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #3182ce 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

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

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 80px 0 40px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    color: white;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--accent);
    width: 16px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.footer-btn {
    background: var(--accent);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-block;
}

.footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 137, 54, 0.4);
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

/* Mobile */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .logo {
        height: 60px;
    }
    
    /* Hero Mobile */
    .hero-content h1 { 
        font-size: 2rem; 
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* Home Page Mobile */
    .about-grid { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
    }
    
    .counter-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1rem;
    }
    
    .features-grid { 
        grid-template-columns: 1fr; 
    }
    
    .team-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1.5rem;
    }
    
    .strengths-home .strengths-grid { 
        grid-template-columns: 1fr; 
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    /* About Page Mobile */
    .profile-grid { 
        grid-template-columns: 1fr; 
        text-align: center;
    }
    
    .profile-stats { 
        grid-template-columns: 1fr; 
        gap: 1rem;
    }
    
    .vmv-grid { 
        grid-template-columns: 1fr; 
    }
    
    .choose-grid { 
        grid-template-columns: 1fr; 
    }
    
    .help-grid { 
        grid-template-columns: 1fr; 
    }
    
    .changes-list { 
        grid-template-columns: 1fr; 
    }
    
    .strengths-section .strengths-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Page Mobile */
    .contact-page .contact-grid { 
        grid-template-columns: 1fr; 
    }
    
    .contact-form-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
    }
    
    .form-row { 
        grid-template-columns: 1fr; 
        gap: 1rem;
    }
    
    .locations-grid { 
        grid-template-columns: 1fr; 
    }
    
    .benefits-grid { 
        grid-template-columns: 1fr; 
    }
    
    /* Footer Mobile */
    .footer-content { 
        grid-template-columns: 1fr; 
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    /* General Mobile */
    .section-header h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}
/* Values List */
.values-list {
    margin-top: 1.5rem;
}

.value-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.value-item:last-child {
    border-bottom: none;
}

.value-item h4 {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Why Choose Us */
.why-choose-section {
    padding: 100px 0;
    background: var(--light);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.choose-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.choose-card:hover {
    transform: translateY(-10px);
}

.choose-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #3182ce);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

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

.choose-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.choose-card p {
    color: var(--secondary);
    line-height: 1.7;
}

/* Business Help Section */
.business-help-section {
    padding: 100px 0;
    background: white;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.help-card {
    background: var(--light);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    position: relative;
    transition: transform 0.3s;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.help-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.help-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.help-card p {
    color: var(--secondary);
    line-height: 1.7;
}

/* Strategic Changes */
.strategic-changes {
    padding: 100px 0;
    background: var(--light);
}

.changes-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.change-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.change-item i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.change-item span {
    color: var(--secondary);
    line-height: 1.6;
}
/* Page Header - Inner Pages */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, #3182ce 100%);
    color: white;
    padding: 50px 0px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Company Profile */
.company-profile {
    padding: 100px 0;
    background: white;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.profile-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}

.profile-text p {
    font-size: 1.1rem;
    color: var(--secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 15px;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--secondary);
    font-weight: 500;
    margin: 0;
}

.profile-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* VMV Section */
.vmv-section {
    padding: 100px 0;
    background: var(--light);
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.vmv-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.vmv-card:hover {
    transform: translateY(-10px);
}

.vmv-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.vmv-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
}

.vmv-card p {
    color: var(--secondary);
    line-height: 1.7;
    text-align: justify;
}

/* Strengths Section */
.strengths-section {
    padding: 100px 0;
    background: white;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.strength-card {
    background: var(--light);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    transition: all 0.3s;
    border-left: 5px solid var(--accent);
}

.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.strength-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.strength-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.strength-card p {
    color: var(--secondary);
    line-height: 1.7;
    text-align: justify;
}
/* Contact Page - Contact Info Section */

.contact-page .contact-info{
    flex-direction: column;
}

.contact-page .contact-info-section {
    padding: 100px 0;
    background: white;
}

.contact-page .contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.contact-page .contact-card {
    background: var(--light);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid var(--accent);
}

.contact-page .contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.contact-page .contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #3182ce);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

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

.contact-page .contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-page .contact-card p {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Locations Section */
.locations-section {
    padding: 100px 0;
    background: var(--light);
}

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

.location-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.location-card:hover {
    transform: translateY(-5px);
}

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

.location-header i {
    color: var(--accent);
    font-size: 1.5rem;
}

.location-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
}

.location-card p {
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.location-services {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.location-services span {
    background: var(--accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.1rem;
    color: var(--secondary);
}

.contact-form {
    background: var(--light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

/* Why Contact Section */
.why-contact {
    padding: 100px 0;
    background: var(--light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--secondary);
    line-height: 1.6;
}
/* Contact Form Grid */
.contact-form-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-container {
    max-width: none;
}

.contact-info {
    display: flex;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-item strong {
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.2rem;
}

.info-item p {
    color: var(--secondary);
    margin: 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary), #3182ce);
    color: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
}

.cta-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-accent {
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 137, 54, 0.4);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}
/* Contact Link Styling */
.contact-page .contact-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.contact-page .contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 137, 54, 0.4);
}

/* Professional Contact Form */
.contact-page .contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid #e2e8f0;
}

.contact-page .form-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-page .form-header p {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 0;
}

/* Info Card Enhancements */
.contact-page .info-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #cbd5e0;
}

.contact-page .cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, #2c5aa0 100%);
    box-shadow: 0 10px 30px rgba(43, 108, 176, 0.3);
}

/* Location Cards Professional */
.contact-page .location-card {
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.contact-page .location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
}

.contact-page .location-services span {
    background: linear-gradient(135deg, var(--accent) 0%, #d69e2e 100%);
    box-shadow: 0 2px 8px rgba(237, 137, 54, 0.3);
}
/* Business Formation Services - List Design */
.services-grid-section {
    padding: 100px 0;
    background: var(--light);
}

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

.service-item {
    background: white;
    padding: 2rem 2.5rem;
    margin-bottom: 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
    border-left: 5px solid transparent;
    text-decoration: none;
    color: inherit;
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-left-color: var(--accent);
}

.service-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #3182ce);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.service-content p {
    color: var(--secondary);
    font-size: 1rem;
    margin: 0;
}

.service-arrow {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    flex-shrink: 0;
}

.service-arrow i {
    font-size: 1.2rem;
}

/* Service Detail Pages */
.service-detail {
    padding: 100px 0;
    background: white;
}

.service-detail.alt-bg {
    background: var(--light);
}

.service-overview {
    padding: 100px 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}

.overview-content p {
    font-size: 1.1rem;
    color: var(--secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.benefits-list {
    display: grid;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-item i {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--secondary);
    margin: 0;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Requirements Section */
.requirements-section {
    padding: 100px 0;
    background: var(--light);
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.requirement-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.requirement-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
}

.requirement-card ul {
    list-style: none;
}

.requirement-card li {
    padding: 0.8rem 0;
    color: var(--secondary);
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 2rem;
}

.requirement-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.5rem;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.step-item p {
    color: var(--secondary);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--light);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid var(--accent);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 2rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card li {
    padding: 0.8rem 0;
    color: var(--secondary);
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 2rem;
}

.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.pricing-btn {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43, 108, 176, 0.4);
}

.pricing-card.featured .pricing-btn {
    background: var(--accent);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-list {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .service-item {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .service-left {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-item:hover {
        transform: translateY(-5px);
    }
}
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}
/* Characteristics Section */
.characteristics-section {
    padding: 100px 0;
    background: var(--light);
}

.characteristics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.characteristic-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.char-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.char-icon i {
    font-size: 1.5rem;
    color: white;
}

.characteristic-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.characteristic-item p {
    color: var(--secondary);
    line-height: 1.6;
}

/* Aspects Section */
.aspects-section {
    padding: 100px 0;
    background: white;
}

.aspects-list {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.aspect-item {
    background: var(--light);
    padding: 2rem 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--accent);
}

.aspect-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.aspect-item p {
    color: var(--secondary);
    line-height: 1.7;
}

/* Service Overview Updates */
.service-overview .overview-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-overview .overview-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin: 3rem 0 1.5rem 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .characteristics-grid {
        grid-template-columns: 1fr;
    }
    
    .characteristic-item {
        flex-direction: column;
        text-align: center;
    }
}
/* Service Overview Grid with Image */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Service Categories - Returns Filing */
.service-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.category {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent);
    transition: transform 0.3s;
}

.category:hover {
    transform: translateY(-5px);
}

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

.category-header i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #3182ce);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.category-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.category ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.category li {
    padding: 1rem 1.5rem;
    background: var(--light);
    border-radius: 10px;
    color: var(--secondary);
    position: relative;
    padding-left: 3rem;
    transition: all 0.3s;
}

.category li:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.category li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-image {
        order: -1;
    }
    
    .category ul {
        grid-template-columns: 1fr;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}