:root {
    --primary-teal: #3B82F6;
    /* Bright Blue */
    --dark-teal: #1E40AF;
    /* Dark Blue */
    --light-teal: #60A5FA;
    /* Light Blue */
    --gold: #F59E0B;
    /* Bright Gold */
    --gold-hover: #D97706;
    /* Darker Gold */
    --charcoal: #111827;
    /* Deep Charcoal */
    --gray-600: #4B5563;
    /* Medium Gray */
    --gray-500: #6B7280;
    /* Soft Gray */
    --gray-400: #9CA3AF;
    /* Light Gray */
    --gray-200: #E5E7EB;
    /* Pale Gray */
    --gray-100: #F3F4F6;
    /* Very Light Gray */
    --gray-50: #F9FAFB;
    /* Almost White */
    --white: #FFFFFF;
    /* Pure White */
    --success: #16A34A;
    /* Vibrant Green */
    --error: #DC2626;
    /* Strong Red */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 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);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-teal);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-teal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-600);
    font-size: 15px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-teal);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-teal);
}

.nav-link:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
}

.btn-outline:hover {
    background: var(--primary-teal);
    color: var(--white);
}

.btn-primary {
    background: var(--primary-teal);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 10px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(15, 118, 110, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(15, 118, 110, 0.1);
    border-radius: 50px;
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 52px;
    color: var(--charcoal);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-title span {
    color: var(--primary-teal);
}

.hero-description {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-600);
}

.highlight-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    width: 100%;
    max-width: 500px;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hero-stat-card {
    background: var(--gray-50);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-stat-card:hover {
    background: var(--primary-teal);
    transform: translateY(-5px);
}

.hero-stat-card:hover * {
    color: var(--white);
}

.hero-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-teal);
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 14px;
    color: var(--gray-500);
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-teal);
    background: rgba(15, 118, 110, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 42px;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-description {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* About Section */
.about {
    background: var(--gray-50);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    padding-right: 40px;
}

.about-title {
    font-size: 38px;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.about-text {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-stat-item {
    background: var(--white);
    padding: 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.about-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-teal);
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-feature-card {
    background: var(--white);
    padding: 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(15, 118, 110, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-size: 24px;
    margin-bottom: 16px;
}

.about-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.about-feature-text {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-teal);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: rgba(15, 118, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-size: 36px;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: var(--primary-teal);
    color: var(--white);
}

.why-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.why-text {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

.why-promise {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--primary-teal);
    border-radius: 16px;
    color: var(--white);
}

.why-promise-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-promise-text {
    font-size: 18px;
    opacity: 0.9;
}

/* Services Section */
.services {
    background: var(--gray-50);
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.services-tab {
    padding: 14px 28px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-tab:hover,
.services-tab.active {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
    color: var(--white);
}

.services-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.services-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-teal);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(15, 118, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-size: 30px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-teal);
    color: var(--white);
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.service-text {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-teal);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    gap: 10px;
}

/* Testimonials Section */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--gray-50);
    padding: 36px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-teal);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-star {
    color: var(--gold);
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 14px;
    color: var(--gray-500);
}

/* FAQ Section */
.faq {
    background: var(--gray-50);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 24px 28px;
    font-size: 17px;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-teal);
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--primary-teal);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer-content {
    padding: 0 28px 24px;
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding-right: 40px;
}

.contact-title {
    font-size: 38px;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.contact-text {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(15, 118, 110, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 16px;
    color: var(--charcoal);
    font-weight: 500;
}

.contact-form-wrapper {
    background: var(--gray-50);
    padding: 44px;
    border-radius: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
}

.form-input,
.form-select,
.form-textarea {
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background: var(--white);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: var(--error);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-error {
    font-size: 13px;
    color: var(--error);
    display: none;
}

.form-error.show {
    display: block;
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 17px;
    border-radius: 10px;
}

.form-message {
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

/* Newsletter Section */
.newsletter {
    background: var(--primary-teal);
    color: var(--white);
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-content {
    padding-right: 40px;
}

.newsletter-title {
    font-size: 38px;
    margin-bottom: 16px;
}

.newsletter-text {
    font-size: 17px;
    opacity: 0.9;
    line-height: 1.7;
}

.newsletter-form {
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    color: var(--charcoal);
}

.newsletter-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.newsletter-form .form-group {
    margin-bottom: 0;
}

.newsletter-form .form-input {
    padding: 14px 18px;
}

.newsletter-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    cursor: pointer;
}

.newsletter-checkbox input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-teal);
    cursor: pointer;
}

.newsletter-checkbox label {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
    cursor: pointer;
}

.newsletter-submit {
    width: 100%;
    padding: 14px;
}

.newsletter-message {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    display: none;
    margin-top: 16px;
}

.newsletter-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

/* Legal Section */
.legal-section {
    background: var(--gray-100);
}

.legal-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.legal-modal.active {
    display: flex;
}

.legal-modal-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.legal-modal-header {
    padding: 28px 32px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1;
}

.legal-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--charcoal);
}

.legal-modal-close {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

.legal-modal-close:hover {
    background: var(--error);
    color: var(--white);
}

.legal-modal-body {
    padding: 32px;
}

.legal-modal-body h3 {
    font-size: 18px;
    color: var(--charcoal);
    margin: 24px 0 12px;
}

.legal-modal-body h3:first-child {
    margin-top: 0;
}

.legal-modal-body p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-modal-body ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-modal-body li {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 8px;
    list-style: disc;
}

/* Footer Section */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-teal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
}

.footer-description {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--primary-teal);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-link {
    font-size: 15px;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-teal);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-text {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-contact-text strong {
    color: var(--white);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: var(--gray-500);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-link {
    font-size: 14px;
    color: var(--gray-500);
    cursor: pointer;
}

.footer-legal-link:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {

    .hero-inner,
    .about-inner,
    .contact-inner,
    .newsletter-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        padding-right: 0;
    }

    .about-image {
        order: -1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info {
        padding-right: 0;
    }

    .newsletter-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .header-buttons {
        display: none;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .services-tabs {
        gap: 10px;
    }

    .services-tab {
        padding: 12px 20px;
        font-size: 14px;
    }

    .services-grid,
    .why-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-stats,
    .about-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .newsletter-form-row {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 28px;
    }
}