* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #00bfc9;
    --dark-gold: #028399;
    --rich-black: #0D1117;
    --charcoal: #1C2128;
    --warm-white: #F6F8FA;
    --accent-gray: #21262D;
    --text-light: #E6EDF3;
    --text-muted: #8B949E;
    --gradient-primary: linear-gradient(135deg, #00bfc9 0%, #028399 100%);
    --gradient-dark: linear-gradient(135deg, #0D1117 0%, #1C2128 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--rich-black);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Header Styles */
.header {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 20px rgba(2, 131, 153, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(2, 131, 153, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.newsletter-btn {
    background: var(--gradient-primary) !important;
    color: var(--rich-black) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 131, 153, 0.4);
}

.newsletter-btn::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--gradient-dark);
    padding: 150px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0 0h100v100H0z' fill='none'/%3E%3Cpath d='M20 20h60v60H20z' fill='none' stroke='%2300bfc9' stroke-width='0.5' opacity='0.1'/%3E%3Cpath d='M30 30h40v40H30z' fill='none' stroke='%2300bfc9' stroke-width='0.3' opacity='0.1'/%3E%3C/svg%3E") repeat;
    opacity: 0.05;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(2, 131, 153, 0.1);
    color: var(--primary-gold);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(2, 131, 153, 0.2);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--rich-black);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(2, 131, 153, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--rich-black);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-card {
    background: rgba(28, 33, 40, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(2, 131, 153, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(2, 131, 153, 0.1);
}

.card-header i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.card-header span {
    font-weight: 600;
    color: var(--text-light);
}

.portfolio-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.portfolio-item span:first-child {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.value {
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.value.growth {
    color: #00D4AA;
}

.value.moderate {
    color: var(--primary-gold);
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--charcoal);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-badge {
    display: inline-block;
    background: rgba(2, 131, 153, 0.1);
    color: var(--primary-gold);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(2, 131, 153, 0.2);
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.3;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(33, 38, 45, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(2, 131, 153, 0.1);
    transition: all 0.3s;
}

.about-features .feature:hover {
    transform: translateX(10px);
    border-color: rgba(2, 131, 153, 0.3);
}

.about-features .feature i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.about-features .feature h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.about-features .feature p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Why Choose Us */
.why-choose {
    padding: 120px 0;
    background: var(--rich-black);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--charcoal);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(2, 131, 153, 0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(2, 131, 153, 0.1), transparent);
    transition: left 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(2, 131, 153, 0.3);
    box-shadow: 0 20px 40px rgba(2, 131, 153, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--rich-black);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Services */
.services {
    padding: 120px 0;
    background: var(--charcoal);
}

.services-tabs {
    max-width: 1400px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--accent-gray);
    border: 2px solid rgba(2, 131, 153, 0.2);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn i {
    font-size: 1.1rem;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gradient-primary);
    color: var(--rich-black);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--rich-black);
    border: 1px solid rgba(2, 131, 153, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(2, 131, 153, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(2, 131, 153, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-features span {
    background: rgba(2, 131, 153, 0.1);
    color: var(--primary-gold);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: var(--rich-black);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    padding: 2rem;
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    background: var(--charcoal);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(2, 131, 153, 0.1);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 4rem;
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
}

.testimonial-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--text-light);
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.author-info span {
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.rating {
    color: var(--primary-gold);
    font-size: 1rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    background: var(--charcoal);
    border: 2px solid rgba(2, 131, 153, 0.3);
    border-radius: 50%;
    color: var(--primary-gold);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-btn:hover {
    background: var(--primary-gold);
    color: var(--rich-black);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(2, 131, 153, 0.3);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--primary-gold);
}

/* FAQ */
.faq {
    padding: 120px 0;
    background: var(--charcoal);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--rich-black);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(2, 131, 153, 0.1);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(2, 131, 153, 0.3);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(2, 131, 153, 0.05);
}

.faq-question h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.4;
}

.faq-question i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Contact */
.contact {
    padding: 120px 0;
    background: var(--rich-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-card {
    background: var(--charcoal);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(2, 131, 153, 0.1);
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-top: 0.2rem;
    width: 20px;
}

.contact-item .label {
    display: block;
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-item .value {
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.5;
}

.contact-form-container {
    background: var(--charcoal);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(2, 131, 153, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--accent-gray);
    border: 2px solid rgba(2, 131, 153, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-light);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(2, 131, 153, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.checkbox-label input[type="checkbox"] {
    position: relative;
    width: 20px;
    height: 20px;
    margin: 0;
    margin-top: 0.2rem;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: var(--accent-gray);
    border: 2px solid rgba(2, 131, 153, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s;
}

.checkbox-label input:checked ~ .checkmark {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.checkbox-label input:checked ~ .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 4px;
    color: var(--rich-black);
    font-weight: bold;
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--rich-black);
    border-top: 1px solid rgba(2, 131, 153, 0.1);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--charcoal);
    border: 1px solid rgba(2, 131, 153, 0.2);
    border-radius: 50%;
    color: var(--primary-gold);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--rich-black);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(2, 131, 153, 0.1);
    padding-top: 2rem;
}

.footer-legal {
    text-align: center;
}

.footer-legal p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.8rem !important;
    opacity: 0.7;
}

.designer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(2, 131, 153, 0.1);
    color: var(--primary-gold) !important;
    font-weight: 500;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--charcoal);
    margin: 10% auto;
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
    border: 1px solid rgba(2, 131, 153, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close {
    color: var(--text-muted);
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--primary-gold);
}

.modal-icon {
    margin-bottom: 1rem;
}

.modal-icon i {
    font-size: 3rem;
    color: #00D4AA;
}

.modal-content h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.modal-footer {
    border-top: 1px solid rgba(2, 131, 153, 0.1);
    padding-top: 1rem;
    margin-top: 1.5rem;
}

.modal-note {
    font-size: 0.85rem;
    color: var(--primary-gold);
    font-weight: 500;
    margin: 0 !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--rich-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        border-top: 1px solid rgba(2, 131, 153, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-header h2,
    .about-text h2 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .about-features .feature {
        text-align: center;
        flex-direction: column;
    }

    .about-features .feature:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .feature-card,
    .service-card {
        padding: 1.5rem;
    }

    .contact-card,
    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    .testimonial-content {
        padding: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 2rem;
    }
}