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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

/* Header and Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    color: #e74c3c;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.logo .tagline {
    color: #7f8c8d;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: -2px;
}

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

.nav-link {
    text-decoration: none;
    color: #34495e;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #e74c3c;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
}

.nav-phone {
    display: flex;
    align-items: center;
}

.phone-btn {
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    transition: 0.3s;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn.large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);
}

.btn-outline {
    background: transparent;
    color: #e74c3c;
    border-color: #e74c3c;
}

.btn-outline:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(243, 156, 18, 0.1));
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(243, 156, 18, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content .highlight {
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.3rem;
    color: #5d6d7e;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e74c3c;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(243, 156, 18, 0.05));
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: #5d6d7e;
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.about-content > p {
    font-size: 1.15rem;
    color: #5d6d7e;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-number {
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: #5d6d7e;
    line-height: 1.6;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(231, 76, 60, 0.3);
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.clean-icon {
    font-size: 5rem;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 2;
}

/* Services Showcase */
.services-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #5d6d7e;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-item {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-item.featured {
    border-color: #e74c3c;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.02), rgba(243, 156, 18, 0.02));
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-item p {
    color: #5d6d7e;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.service-includes li {
    color: #5d6d7e;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: white;
}

.process h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4rem;
}

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

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.step p {
    color: #5d6d7e;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: #2c3e50;
    color: white;
}

.reviews h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 4rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.review {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.review p {
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.reviewer strong {
    color: #f39c12;
    font-weight: 600;
}

.reviewer span {
    color: #bdc3c7;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.25rem;
}

/* Guarantee Section */
.guarantee {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.guarantee h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.guarantee p {
    font-size: 1.2rem;
    color: #5d6d7e;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.checkmark {
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Services Detailed Page */
.services-detailed {
    padding: 80px 0;
}

.service-category {
    margin-bottom: 5rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.category-header p {
    font-size: 1.2rem;
    color: #5d6d7e;
    max-width: 600px;
    margin: 0 auto;
}

.services-list {
    display: grid;
    gap: 2.5rem;
}

.service-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-card.popular {
    border-color: #e74c3c;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.02), rgba(243, 156, 18, 0.02));
}

.popular-label {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    color: white;
    padding: 0.5rem 1.5rem;
    border-bottom-left-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    flex-grow: 1;
}

.price-tag {
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    margin-left: 2rem;
}

.service-body {
    padding: 0 2rem 2rem;
}

.service-body > p {
    color: #5d6d7e;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.service-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
}

.includes h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.includes ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.includes li {
    color: #5d6d7e;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.duration,
.frequency,
.certification,
.timing {
    color: #5d6d7e;
    font-size: 0.95rem;
}

.duration strong,
.frequency strong,
.certification strong,
.timing strong {
    color: #2c3e50;
}

/* Service Guarantee Section */
.service-guarantee {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.guarantee-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.guarantee-content p {
    font-size: 1.2rem;
    color: #5d6d7e;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.promise-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.promise-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.promise-text h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.promise-text p {
    color: #5d6d7e;
    line-height: 1.6;
    margin: 0;
}

.guarantee-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e74c3c;
    line-height: 1;
}

.stat-box .stat-label {
    color: #5d6d7e;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Pricing Info Section */
.pricing-info {
    padding: 80px 0;
    background: white;
}

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

.pricing-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.pricing-content > p {
    font-size: 1.2rem;
    color: #5d6d7e;
    margin-bottom: 3rem;
}

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

.factor {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.factor h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.factor p {
    color: #5d6d7e;
    line-height: 1.6;
}

/* CTA Sections */
.cta,
.cta-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before,
.cta-services::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-note {
    font-size: 1rem;
    margin-top: 1.5rem;
    opacity: 0.8;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.cta .btn-primary {
    background: white;
    color: #e74c3c;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    opacity: 0.9;
}

.cta-features span {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    color: #e74c3c;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.footer-logo span {
    color: #95a5a6;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: -2px;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-link {
    color: #bdc3c7;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background: #e74c3c;
    color: white;
}

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

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-weight: 600;
    color: #ecf0f1;
    font-size: 0.9rem;
}

.contact-item a {
    color: #f39c12;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #e67e22;
}

.contact-item span {
    color: #bdc3c7;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-phone {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .image-placeholder {
        width: 280px;
        height: 280px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-features {
        grid-template-columns: 1fr;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .guarantee-stats {
        flex-direction: row;
        gap: 1rem;
    }
    
    .service-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .price-tag {
        align-self: flex-start;
        margin-left: 0;
    }
    
    .pricing-factors {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2,
    .about-content h2,
    .guarantee h2,
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .service-item {
        padding: 2rem;
    }
    
    .service-card {
        margin: 0 -15px;
        border-radius: 0;
        box-shadow: none;
        border-left: none;
        border-right: none;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 3rem 0;
        gap: 2rem;
    }

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

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

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

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