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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo-img {
    height: 70px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

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

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

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.85);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

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

.btn-block {
    width: 100%;
    text-align: center;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease;
}

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

.underline {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* About Section */
.about {
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 100px;
    max-height: 600px;
    overflow: hidden;
    border-radius: 12px;
}

.about-image img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-text .mission {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
}

.credentials {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.credential-item {
    display: flex;
    gap: 1rem;
    align-items: start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.credential-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.credential-item > div {
    flex: 1;
    min-width: 0;
}

.credential-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.credential-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    word-break: break-word;
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--bg-light);
}

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

.why-choose-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border-top: 4px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.why-choose-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), #059669);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(10px);
}

.why-choose-card:hover .why-choose-icon::before {
    opacity: 0.6;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

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

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

.why-choose-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Services Section */
.services {
    background: var(--bg-white);
}

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

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(8px);
}

.service-card:hover .service-icon::after {
    opacity: 0.5;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
    transition: transform 0.4s ease;
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.disclaimer {
    margin-top: 1rem;
    padding: 1rem;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
}

.disclaimer small {
    color: #92400e;
    font-size: 0.875rem;
}

.disclaimer i {
    margin-right: 0.5rem;
}

/* Contact Section */
.contact {
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.contact-icon i {
    font-size: 1.25rem;
    color: white;
    transition: transform 0.4s ease;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details a,
.contact-details p {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.email-link {
    font-size: 0.9rem;
    word-break: break-all;
    overflow-wrap: break-word;
    hyphens: auto;
    display: inline-block;
    max-width: 100%;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.form-group input,
.form-group select,
.form-group textarea {
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.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: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.footer-section .email-link {
    font-size: inherit;
    word-break: break-all;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* B2B Business Development Services Section */
.b2b-services {
    background: var(--bg-white);
}

.b2b-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.b2b-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.b2b-intro h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.b2b-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.b2b-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.b2b-feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.b2b-feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
    border-left-color: var(--secondary-color);
}

.b2b-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.b2b-feature-item:hover .b2b-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.b2b-feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.b2b-feature-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.b2b-image {
    position: sticky;
    top: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.b2b-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.b2b-image:hover img {
    transform: scale(1.05);
}

/* B2B Overview Section */
.b2b-overview-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.b2b-company-card {
    grid-column: 1;
}

.b2b-overview-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

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

.b2b-value-card {
    border-top-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    justify-content: flex-start;
    align-items: stretch;
}

.b2b-value-card > * {
    width: 100%;
    box-sizing: border-box;
}

.b2b-value-card h3,
.b2b-value-card p,
.b2b-value-card ul {
    width: 100%;
    max-width: 100%;
}

.b2b-overview-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.b2b-value-card .b2b-overview-icon {
    background: linear-gradient(135deg, var(--secondary-color), #059669);
}

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

.b2b-overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.b2b-overview-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.b2b-overview-card p:last-child {
    margin-bottom: 0;
}

.b2b-overview-card p:has(+ .b2b-overview-image),
.b2b-overview-card p:has(+ .b2b-value-image) {
    margin-bottom: 1rem;
}

.b2b-value-card p {
    margin-bottom: 1rem;
}

.b2b-value-card .value-list {
    margin-bottom: 0;
    margin-top: 1rem;
}

.b2b-value-card {
    justify-content: flex-start;
    padding-bottom: 2.5rem;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    width: 100%;
}

.value-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.6;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.value-list li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    min-width: 20px;
    width: 20px;
}

.value-list li span {
    flex: 1;
    min-width: 0;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.value-list li strong {
    color: var(--text-dark);
    display: inline;
}

.b2b-overview-image {
    margin-top: 1.5rem;
    margin-bottom: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    width: 100%;
    order: 10;
}

.b2b-value-image {
    margin-top: 1rem;
    margin-bottom: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    width: 100%;
    order: 10;
    flex-shrink: 0;
}

.b2b-value-card .b2b-value-image:last-child {
    margin-bottom: 0;
}

.b2b-overview-image img,
.b2b-value-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.b2b-overview-image:hover img,
.b2b-value-image:hover img {
    transform: scale(1.05);
}

/* Market Section */
.b2b-market-section {
    margin-bottom: 4rem;
}

.b2b-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.b2b-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.b2b-market-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.b2b-market-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--secondary-color);
}

.b2b-market-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.b2b-market-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.b2b-market-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Services Grid */
.b2b-services-section {
    margin-bottom: 4rem;
}

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

.b2b-service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-color);
}

.b2b-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.b2b-service-card:hover::before {
    transform: scaleX(1);
}

.b2b-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.b2b-service-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(37, 99, 235, 0.1);
    line-height: 1;
}

.b2b-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.b2b-service-card:hover .b2b-service-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.b2b-service-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.b2b-service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.b2b-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.b2b-service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.b2b-service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1rem;
}

/* Strategy & Financials Section */
.b2b-strategy-section {
    margin-bottom: 4rem;
}

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

.b2b-strategy-card,
.b2b-financial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.b2b-strategy-card:hover,
.b2b-financial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.b2b-strategy-card h3,
.b2b-financial-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.b2b-strategy-card h3 i,
.b2b-financial-card h3 i {
    color: var(--primary-color);
}

.strategy-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.strategy-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.strategy-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.strategy-point h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.strategy-point p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.financial-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.metric-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.metric-item:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
    transform: scale(1.05);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.financial-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* CTA Section */
.b2b-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 4rem 2rem;
    border-radius: 16px;
    text-align: center;
    color: white;
    margin-top: 3rem;
}

.b2b-cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.b2b-cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.b2b-cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.cta-note {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 1.5rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    max-width: 600px;
    line-height: 1.6;
    flex-wrap: wrap;
}

.cta-note i {
    font-size: 1rem;
    flex-shrink: 0;
}

/* FAQ Section */
.faq {
    background: var(--bg-light);
}

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

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-image {
    position: sticky;
    top: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.faq-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.faq-image:hover img {
    transform: scale(1.05);
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    background: var(--bg-light);
    border-bottom: 2px solid var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

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

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

.faq-answer p strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-white);
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--secondary-color);
    transition: height 0.4s ease;
    border-radius: 12px 0 0 12px;
}

.testimonial-card:hover::after {
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--secondary-color);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.testimonial-rating i {
    font-size: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: Georgia, serif;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.newsletter-input-group .btn {
    padding: 1rem 2rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-input-group .btn i {
    font-size: 1rem;
}

.newsletter-privacy {
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.newsletter-privacy i {
    font-size: 0.875rem;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Responsive Design */
/* Tablet and smaller desktop */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .about-content {
        gap: 2rem;
    }

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

    .contact-content {
        gap: 2rem;
    }

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

    section {
        padding: 4rem 0;
    }
}

/* Tablet */
@media (max-width: 968px) {
    .hero {
        background-attachment: scroll;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        position: static;
        max-width: 400px;
        max-height: 500px;
        margin: 0 auto;
    }
    
    .about-image img {
        max-height: 500px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .b2b-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .b2b-image {
        position: static;
        order: -1;
    }

    .b2b-overview-section {
        grid-template-columns: 1fr;
    }

    .b2b-section-title {
        font-size: 1.75rem;
    }

    .b2b-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .b2b-strategy-content {
        grid-template-columns: 1fr;
    }

    .financial-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .b2b-cta-content h3 {
        font-size: 1.75rem;
    }

    .b2b-overview-section {
        grid-template-columns: 1fr;
    }

    .b2b-section-title {
        font-size: 1.75rem;
    }

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

    .b2b-strategy-content {
        grid-template-columns: 1fr;
    }

    .b2b-cta-content h3 {
        font-size: 1.75rem;
    }

    .b2b-cta-content > p {
        font-size: 1.1rem;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-image {
        position: static;
        order: -1;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .newsletter-text h2 {
        font-size: 2rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }
}

/* Mobile and Tablet */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
    }

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

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

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

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

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

    .hero {
        min-height: 90vh;
        background-attachment: scroll;
        padding-top: 70px;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        position: static;
        max-height: 450px;
    }
    
    .about-image img {
        max-height: 450px;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-text .lead {
        font-size: 1.1rem;
    }

    .credentials {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .credential-item {
        padding: 1.25rem;
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 1rem;
    }

    .credential-item i {
        margin: 0;
        flex-shrink: 0;
        margin-top: 0.25rem;
    }

    .credential-item > div {
        flex: 1;
        min-width: 0;
    }

    .credential-item strong {
        display: block;
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }

    .credential-item p {
        font-size: 0.9rem;
        line-height: 1.6;
        word-break: break-word;
        margin: 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
        background: var(--bg-light);
        border-radius: 8px;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .contact-details {
        width: 100%;
    }

    .contact-details h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .contact-details a,
    .contact-details p {
        font-size: 0.9rem;
        word-break: break-word;
    }

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

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

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

    .b2b-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .b2b-intro h3 {
        font-size: 1.5rem;
    }

    .b2b-intro p {
        font-size: 1rem;
    }

    .b2b-feature-item {
        padding: 1.25rem;
        gap: 1rem;
    }

    .b2b-feature-icon {
        width: 50px;
        height: 50px;
    }

    .b2b-feature-icon i {
        font-size: 1.25rem;
    }

    .b2b-feature-content h4 {
        font-size: 1.1rem;
    }

    .b2b-feature-content p {
        font-size: 0.95rem;
    }

    .b2b-image {
        position: static;
        order: -1;
    }

    .b2b-overview-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .b2b-overview-card {
        padding: 1.5rem;
    }

    .b2b-overview-card h3 {
        font-size: 1.3rem;
    }

    .b2b-overview-image,
    .b2b-value-image {
        margin-top: 1.25rem;
    }

    .b2b-overview-icon {
        width: 50px;
        height: 50px;
    }

    .b2b-overview-icon i {
        font-size: 1.25rem;
    }

    .b2b-section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .b2b-market-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .b2b-market-card {
        padding: 1.5rem;
    }

    .b2b-market-card i {
        font-size: 2rem;
    }

    .b2b-market-card h4 {
        font-size: 1.2rem;
    }

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

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

    .b2b-service-number {
        font-size: 2.5rem;
        top: 0.75rem;
        right: 0.75rem;
    }

    .b2b-service-icon {
        width: 60px;
        height: 60px;
    }

    .b2b-service-icon i {
        font-size: 1.75rem;
    }

    .b2b-service-card h4 {
        font-size: 1.2rem;
    }

    .b2b-strategy-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .b2b-strategy-card,
    .b2b-financial-card {
        padding: 1.5rem;
    }

    .b2b-strategy-card h3,
    .b2b-financial-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .strategy-point {
        gap: 1rem;
    }

    .strategy-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .strategy-point h4 {
        font-size: 1.1rem;
    }

    .financial-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .metric-value {
        font-size: 1.75rem;
    }

    .metric-label {
        font-size: 0.85rem;
    }

    .b2b-cta-section {
        padding: 2.5rem 1.25rem;
        border-radius: 12px;
    }

    .b2b-cta-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .b2b-cta-content > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .b2b-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .b2b-cta-buttons .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .cta-note {
        margin: 1.25rem auto 0;
        font-size: 0.9rem;
        text-align: center;
        padding: 0 1rem;
        flex-wrap: wrap;
    }

    .cta-note i {
        font-size: 0.95rem;
    }

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

    .faq-image {
        position: static;
        order: -1;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.25rem 1.5rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    .email-link {
        font-size: 0.8rem;
    }

    .newsletter-text h2 {
        font-size: 1.75rem;
    }

    .newsletter-text p {
        font-size: 1rem;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-input-group .btn {
        width: 100%;
        justify-content: center;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-section {
        text-align: center;
        padding: 0;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.6;
        word-break: break-word;
        margin-bottom: 0.75rem;
    }

    .footer-section ul {
        padding: 0;
    }

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

    .footer-section ul li a {
        font-size: 0.9rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 0.5rem;
    }

    .footer-bottom {
        padding: 1.5rem 1rem 1rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.6;
        word-break: break-word;
    }

    section {
        padding: 3rem 0;
    }
}

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

    .contact .container,
    .footer .container {
        padding: 0 15px;
    }

    .logo-img {
        height: 55px;
        max-width: 280px;
    }

    .logo h2 {
        font-size: 1.25rem;
    }

    .hero {
        min-height: 85vh;
        padding-top: 60px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .about-text .lead {
        font-size: 1.05rem;
    }

    .credential-item {
        padding: 1rem;
        gap: 0.875rem;
    }

    .credential-item i {
        font-size: 1.25rem;
        margin-top: 0.2rem;
    }

    .credential-item strong {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .credential-item p {
        font-size: 0.85rem;
        line-height: 1.5;
        word-break: break-word;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }

    .newsletter {
        padding: 3rem 0;
    }

    .newsletter-text h2 {
        font-size: 1.5rem;
    }

    .newsletter-text p {
        font-size: 0.95rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 1.25rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
        margin: 0;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
        width: 100%;
        box-sizing: border-box;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .contact-info {
        gap: 1.25rem;
    }

    .contact-item {
        padding: 1rem;
        gap: 0.75rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-icon i {
        font-size: 1.1rem;
    }

    .contact-details h4 {
        font-size: 0.95rem;
    }

    .contact-details a,
    .contact-details p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .email-link {
        font-size: 0.8rem !important;
        word-break: break-all;
        display: inline-block;
        max-width: 100%;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .footer-section {
        padding: 0;
    }

    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .footer-section p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
        word-break: break-word;
    }

    .footer-section .email-link {
        font-size: 0.8rem !important;
        word-break: break-all;
        display: inline-block;
    }

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

    .footer-section ul li a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding: 1.5rem 0.5rem 1rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.5;
        word-break: break-word;
    }

    .why-choose-card {
        padding: 1.5rem;
    }

    .why-choose-icon {
        width: 60px;
        height: 60px;
    }

    .why-choose-icon i {
        font-size: 1.75rem;
    }

    .why-choose-card h3 {
        font-size: 1.3rem;
    }

    section {
        padding: 2.5rem 0;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 1rem;
    }

    .contact-form-wrapper {
        padding: 1.25rem;
        margin: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .contact-item {
        padding: 0.875rem;
    }

    .contact-details a,
    .contact-details p {
        font-size: 0.8rem;
    }

    .footer-content {
        gap: 1.25rem;
    }

    .footer-section p {
        font-size: 0.8rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}

