/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 120px;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 220px;
    }
}

@media (max-width: 480px) {
    html {
        scroll-padding-top: 210px;
    }
}

@media (max-width: 320px) {
    html {
        scroll-padding-top: 180px;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1B1B1B;
    line-height: 1.6;
    background: linear-gradient(135deg, #00CFC1 0%, #6D2077 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1B1B1B;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #B3FFD9);
    border-radius: 2px;
}


/* Header */
.header {
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .header {
        padding: 0.75rem 0;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem 0;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo h1 {
    font-size: 1.8rem;
    color: #002B7F;
    margin: 0;
    font-weight: 700;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-link:hover h1 {
    color: #6D2077;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #1B1B1B;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: #f8f9fa;
    color: #002B7F;
}

.header-contact .phone-link {
    text-decoration: none;
    color: #002B7F;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border: 2px solid #002B7F;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.header-contact .phone-link:hover {
    background: #002B7F;
    color: #FFFFFF;
}



/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 120px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./img/7E2vvb.jpg') center/cover no-repeat;
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 207, 193, 0.8) 0%, rgba(109, 32, 119, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title-main {
    display: block;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #B3FFD9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-sub {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #002B7F 0%, #1B1B1B 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 43, 127, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 43, 127, 0.4);
    background: linear-gradient(135deg, #003399 0%, #2A2A2A 100%);
}

.hero-btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.hero-btn-secondary:hover {
    background: #FFFFFF;
    color: #002B7F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}



/* Sections */
section {
    padding: 5rem 0;
    position: relative;
    scroll-margin-top: 120px;
}

section:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

/* About Section */
.about-image-container {
    text-align: center;
    margin-bottom: 3rem;
}

.about-main-img {
    max-width: 600px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.about-content-single {
    max-width: 1000px;
    margin: 0 auto;
}

.about-description {
    font-size: 1.2rem;
    color: #1B1B1B;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-features-inline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-inline {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #FFD700;
}

.feature-inline:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    flex-shrink: 0;
    width: 80px;
    text-align: center;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.3rem;
    color: #002B7F;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #1B1B1B;
    opacity: 0.8;
    margin: 0;
}

/* Process Section */
.process {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #B3FFD9);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-item:hover::before {
    transform: scaleX(1);
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #002B7F 0%, #6D2077 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 215, 0, 0.3), transparent);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.step-title {
    font-size: 1.3rem;
    color: #002B7F;
    margin-bottom: 1rem;
}

.step-description {
    color: #1B1B1B;
    opacity: 0.8;
}

/* Benefits Section */
.benefits-image-container {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-main-img {
    max-width: 600px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.benefits-content-single {
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-inline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-inline {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-right: 4px solid #B3FFD9;
}

.benefit-inline:hover {
    transform: translateX(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    flex-shrink: 0;
    width: 80px;
    text-align: center;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.3rem;
    color: #002B7F;
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: #1B1B1B;
    opacity: 0.8;
    margin: 0;
}

/* Services Section */
.services {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card.featured {
    border-color: #FFD700;
    transform: scale(1.05);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: #FFD700;
}

.service-card.featured:hover {
    transform: translateY(-10px) scale(1.07);
}

.service-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700 0%, #B3FFD9 100%);
    color: #1B1B1B;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.service-header {
    margin-bottom: 2rem;
}

.service-title {
    font-size: 1.5rem;
    color: #002B7F;
    margin-bottom: 1rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6D2077;
}

.price-period {
    font-size: 1rem;
    color: #1B1B1B;
    opacity: 0.7;
}

.service-features {
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    text-align: left;
}

.feature-list .feature-item {
    padding: 0.5rem 0;
    color: #1B1B1B;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list .feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(135deg, #002B7F 0%, #6D2077 100%);
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-btn:hover::before {
    left: 100%;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 43, 127, 0.4);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #FFD700;
    opacity: 0.5;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
    font-style: italic;
    color: #1B1B1B;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #FFD700;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #002B7F;
    margin-bottom: 0.2rem;
}

.author-role {
    color: #1B1B1B;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-hero-img {
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.contact-description {
    font-size: 1.2rem;
    color: #1B1B1B;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.form-title {
    font-size: 1.5rem;
    color: #002B7F;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #FFD700 0%, #B3FFD9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-label {
    font-weight: 600;
    color: #002B7F;
    font-size: 0.9rem;
}

.contact-value {
    color: #1B1B1B;
    font-size: 1.1rem;
}

/* Form Styles */

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #002B7F;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FFFFFF;
    position: relative;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-agreements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.agreement-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #6D2077;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-checkbox:checked {
    background: linear-gradient(135deg, #FFD700 0%, #B3FFD9 100%);
    border-color: #FFD700;
}

.form-checkbox:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1B1B1B;
    font-weight: bold;
    font-size: 12px;
}

.agreement-label {
    font-size: 0.9rem;
    color: #1B1B1B;
    cursor: pointer;
    line-height: 1.4;
}

.agreement-label a {
    color: #002B7F;
    text-decoration: none;
    font-weight: 600;
}

.agreement-label a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.contact-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #002B7F 0%, #6D2077 100%);
    color: #FFFFFF;
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-submit-btn:hover::before {
    left: 100%;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 43, 127, 0.4);
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.info-title {
    font-size: 1.2rem;
    color: #002B7F;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 0.5rem;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    font-size: 1.5rem;
    width: 40px;
    flex-shrink: 0;
    text-align: center;
}

.info-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.info-text strong {
    color: #6D2077;
    display: block;
    margin-bottom: 0.2rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
}

.hours-item span:first-child {
    font-weight: 600;
    color: #002B7F;
}

.hours-item span:last-child {
    color: #6D2077;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1B1B1B 0%, #002B7F 50%, #6D2077 100%);
    color: #FFFFFF;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #B3FFD9 50%, #00CFC1 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
    font-weight: 700;
}

.footer-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #B3FFD9;
    font-weight: 600;
}

.footer-description {
    color: #FFFFFF;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-label {
    font-weight: 600;
    color: #B3FFD9;
    font-size: 0.9rem;
}

.contact-value {
    color: #FFFFFF;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #FFFFFF;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #B3FFD9);
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 100%;
}

.footer-link:hover {
    opacity: 1;
    color: #FFD700;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    margin-top: 2rem;
}

.footer-copyright {
    color: #FFFFFF;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    

    
    .header-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .logo h1 {
        font-size: 1.5rem;
        margin: 0;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .nav-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
        min-width: 60px;
    }
    
    .header-contact .phone-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
        margin-top: 0.25rem;
    }
    
    .hero {
        padding-top: 220px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .about-features-inline,
    .benefits-inline {
        gap: 1rem;
    }
    
    .feature-inline,
    .benefit-inline {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    

}

@media (max-width: 480px) {
    .hero {
        padding-top: 210px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title-sub {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    

    
    .header-content {
        gap: 0.5rem;
    }
    
    .logo h1 {
        font-size: 1.3rem;
        margin: 0;
    }
    
    .nav-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.25rem;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .nav-link {
        padding: 0.35rem 0.25rem;
        font-size: 0.8rem;
        text-align: center;
        border-radius: 6px;
        white-space: nowrap;
    }
    
    .header-contact .phone-link {
        font-size: 0.85rem;
        padding: 0.35rem 0.6rem;
        margin-top: 0.25rem;
        border-radius: 6px;
        display: inline-block;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .contact-hero-img {
        max-width: 300px;
    }
    
    .about-main-img,
    .benefits-main-img {
        max-width: 300px;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .feature-icon,
    .benefit-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 320px) {
    .hero {
        padding-top: 180px;
    }
    
    .header {
        padding: 0.4rem 0;
    }
    
    .header-content {
        gap: 0.4rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.2rem;
        max-width: 280px;
    }
    
    .nav-link {
        padding: 0.3rem 0.15rem;
        font-size: 0.75rem;
    }
    
    .header-contact .phone-link {
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
    }
    

}

/* Touch-friendly styles for mobile */
@media (max-width: 768px) {
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }
    
    .header-contact .phone-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }
    
    .nav-link:active,
    .header-contact .phone-link:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
}

/* Tablet-specific styles */
@media (min-width: 481px) and (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .header-contact .phone-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
} 