:root {
    --deep-blue: #422040;
    --medium-blue: #6e3b7b;
    --light-blue: #9d5c99;
    --emerald: #287233;
    --emerald-light: #4ade80;
    --gold: #f59e0b;
    --gold-light: #fcd34d;
    --white: #ffffff;
    --light-gray: #fff7ed;
    --gray: #6b7280;
    --dark-gray: #3f3f46;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 6px 25px rgba(0, 0, 0, 0.12);
    --shadow-deep: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-full: 50px;
    --gradient-primary: linear-gradient(135deg, var(--deep-blue) 0%, var(--medium-blue) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 100%);
    --gradient-accent: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}
/*
:root {
    --deep-blue: #0f172a;
    --medium-blue: #5b21b6;
    --light-blue: #8b5cf6;
    --emerald: #059669;
    --emerald-light: #34d399;
    --gold: #facc15;
    --gold-light: #fde68a;
    --white: #ffffff;
    --light-gray: #f0f9ff;
    --gray: #64748b;
    --dark-gray: #1e293b;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 6px 25px rgba(0, 0, 0, 0.12);
    --shadow-deep: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-full: 50px;
    --gradient-primary: linear-gradient(135deg, var(--deep-blue) 0%, var(--medium-blue) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 100%);
    --gradient-accent: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}
*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--deep-blue);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--border-radius-full);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--emerald-light);
    z-index: -1;
    transition: var(--transition);
    transform: scaleX(0);
    transform-origin: right;
}

.btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--emerald);
    color: var(--emerald);
    margin-left: 15px;
}

.btn-secondary::after {
    background: var(--emerald);
}

.btn-secondary:hover {
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--deep-blue);
}

.btn-gold {
    background: var(--gradient-accent);
    color: var(--deep-blue);
}

.btn-gold::after {
    background: var(--gold-light);
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray);
    font-size: 18px;
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    padding: 12px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

header.scrolled .logo {
    color: var(--deep-blue);
}

.logo span {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-left: 5px;
}

.logo-icon {
    margin-right: 8px;
    font-size: 32px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

header.scrolled nav ul li a {
    color: var(--deep-blue);
}

.header-cta {
    margin-left: 30px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    z-index: 2000;
}

header.scrolled .mobile-menu-btn {
    color: var(--deep-blue);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(66, 32, 64, 0.7) 0%, rgba(66, 32, 64, 0.9) 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 60px;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 25px;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 22px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 200, 150, 0.1);
    animation: float 15s infinite linear;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: -10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 15%;
    animation-delay: -15s;
}

.chart-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    opacity: 0.3;
    z-index: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg stroke='%2300c896' stroke-width='4' fill='none'%3E%3Cpath d='M0 400L1600 400'/%3E%3Cpath d='M0 500L1600 500'/%3E%3Cpath d='M0 300L1600 300'/%3E%3Cpath d='M0 600L1600 600'/%3E%3Cpath d='M0 200L1600 200'/%3E%3C/g%3E%3Cpath fill='%2300c89622' d='M0 400L400 300L800 450L1200 350L1600 400L1600 800L0 800z'/%3E%3C/svg%3E") center bottom no-repeat;
    background-size: cover;
    animation: chartMove 20s linear infinite;
}

/* About Section */
.about {
    background-color: var(--light-gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 17px;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Features Section */
.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
    opacity: 0.9;
}

.feature-card:hover h3,
.feature-card:hover p,
.feature-card:hover i {
    color: var(--white);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 200, 150, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: var(--emerald);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--white);
    color: var(--emerald);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.feature-card p {
    color: var(--gray);
    transition: var(--transition);
}

/* Stats Section */
.stats {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* Services Section */
.services-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 25px;
    background: var(--light-gray);
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gradient-secondary);
    color: var(--white);
}

.services-content {
    display: none;
}

.services-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    animation: fadeIn 0.5s ease-out;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-header {
    padding: 25px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.service-header i {
    font-size: 42px;
    margin-bottom: 15px;
    display: block;
}

.service-header h3 {
    color: var(--white);
    font-size: 24px;
}

.service-body {
    padding: 25px;
    text-align: center;
}

.service-body p {
    color: var(--gray);
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(66, 32, 64, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.testimonial-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-deep);
    z-index: 1;
    text-align: center;
}

.testimonial-content {
    margin-bottom: 30px;
    position: relative;
}

.testimonial-content::before,
.testimonial-content::after {
    content: '"';
    font-size: 80px;
    color: var(--emerald);
    opacity: 0.2;
    position: absolute;
    font-family: Georgia, serif;
}

.testimonial-content::before {
    top: -20px;
    left: -15px;
}

.testimonial-content::after {
    content: '"';
    bottom: -40px;
    right: -15px;
    transform: rotate(180deg);
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    color: var(--dark-gray);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid var(--emerald);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    font-size: 18px;
    margin-top: 5px;
}

.author-role {
    color: var(--gray);
    font-size: 15px;
}

.rating {
    color: var(--gold);
    margin: 10px 0;
    font-size: 20px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--emerald);
    transform: scale(1.2);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(0, 200, 150, 0.05);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--emerald);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 10px 25px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray);
    margin-top: 15px;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--emerald);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.2);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    position: relative;
    padding: 15px 35px;
    font-size: 16px;
    width: auto;
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: wait;
}

.form-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    display: none;
}

/* Footer */
footer {
    background: var(--deep-blue);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--emerald);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--emerald);
    transform: translateX(5px);
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.footer-contact i {
    color: var(--emerald);
    font-size: 20px;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    font-size: 15px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.badge i {
    color: var(--emerald);
    font-size: 18px;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-deep);
}

.modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    padding: 25px;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.close-modal {
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.modal-text {
    line-height: 1.7;
    margin-bottom: 25px;
}

.newsletter-form .form-group {
    margin-bottom: 20px;
}

.newsletter-form input,
.newsletter-form select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.newsletter-form input:focus,
.newsletter-form select:focus {
    border-color: var(--emerald);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.2);
}

.newsletter-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 15px 0;
}

.newsletter-form input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.newsletter-form label {
    font-size: 15px;
    cursor: pointer;
}

.newsletter-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    display: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0.3;
    }
}

@keyframes chartMove {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 1600px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 52px;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
    }

    .section {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 85%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-deep);
        transition: var(--transition);
        z-index: 1500;
    }

    nav ul.active {
        right: 0;
    }

    nav ul li {
        margin: 0 0 20px 0;
    }

    nav ul li a {
        color: var(--deep-blue);
        font-size: 20px;
        display: block;
        padding: 10px 0;
    }

    nav ul li a::after {
        display: none;
    }

    nav ul li a:hover {
        color: var(--emerald);
    }

    .header-cta {
        display: none;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 13px;
    }

    .btn-secondary {
        margin-left: 10px;
    }

    .services-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .section {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .section-title p {
        font-size: 16px;
    }

    .stat-number {
        font-size: 36px;
    }

    .modal-content {
        width: 95%;
        margin: 20px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}