/* Extended styles for domain.com */
/* This file contains additional styles beyond the critical ones in header.php */

/* Helper Classes */
.text-center {
    text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(91, 61, 242, 0.2), transparent 70%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(183, 245, 38, 0.1), transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    margin-bottom: 30px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero .btn-cta {
    animation: glow 2s infinite;
}

/* About Section */
.about {
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--grad-hero);
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.about-card {
    border-left: 4px solid var(--acid-lime);
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.badge-primary {
    background: var(--grad-cta);
    color: white;
}

/* Services Section */
.services {
    position: relative;
    background-color: var(--ink-70);
}

.services::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--ink-70);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.services .row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    margin: 0 -10px;
}

.services .col-12 {
    padding: 0 10px;
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.service-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.service-card-icon {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.service-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    margin: 0;
    font-size: 1.5rem;
}

.service-card-body {
    flex-grow: 1;
    text-align: center;
}

.service-features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.service-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--grad-hero);
    border-radius: 50%;
}

/* Benefits Section */
.benefits {
    background-color: var(--ink);
}

.benefit-item {
    display: flex;
    margin-bottom: 30px;
}

.benefit-icon {
    flex: 0 0 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--grad-card);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    position: relative;
    overflow: hidden;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--grad-hero);
    opacity: 0.1;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.benefit-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: rgba(91, 61, 242, 0.1);
    color: var(--electric-teal);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 10px;
}

/* Process Section */
.process {
    background-color: var(--ink-70);
    position: relative;
}

.process-list {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}

.process-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--grad-cta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.process-item h3 {
    margin-bottom: 15px;
}

/* Pricing Section */
.pricing {
    background-color: var(--ink);
}

.pricing .row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    margin: 0 -10px;
}

.pricing .col-12 {
    padding: 0 10px;
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.price-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card.featured {
    border: 2px solid var(--acid-lime);
    box-shadow: 0 10px 30px rgba(183, 245, 38, 0.2);
}

.price-card-header {
    margin-bottom: 15px;
}

.price-card-header h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.price-card-header p {
    font-size: 0.9rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--acid-lime);
    margin: 15px 0;
}

.price-period {
    font-size: 0.9rem;
    color: var(--muted);
}

.price-features {
    list-style: none;
    margin: 15px 0;
    flex-grow: 1;
    font-size: 0.95rem;
}

.price-features li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(244, 235, 221, 0.1);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-card-footer {
    margin-top: 20px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--ink-70);
    position: relative;
}

.testimonial {
    position: relative;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 24px;
    background: var(--grad-card);
    border: 1px solid rgba(244, 235, 221, 0.05);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    line-height: 1;
    color: var(--acid-lime);
    opacity: 0.2;
}

.testimonial-content {
    position: relative;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--grad-hero);
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.testimonial-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-info p {
    margin: 0;
    color: var(--muted);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq {
    background-color: var(--ink);
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--grad-card);
    border: 1px solid rgba(244, 235, 221, 0.05);
}

.faq-question {
    padding: 25px 30px;
    position: relative;
    cursor: pointer;
    font-weight: 700;
    display: block;
    text-decoration: none;
    color: var(--sand);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(91, 61, 242, 0.1);
    color: var(--sand);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--acid-lime);
}

.faq-answer {
    padding: 0 30px;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    height: auto;
}

.faq-item.active .faq-question::after {
    content: '−';
}

/* Contact Section */
.contact {
    position: relative;
    background-color: var(--ink-70);
    padding: 100px 0;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--ink-70);
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
    transform: translateY(-100%);
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--grad-card);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-info-content h4 {
    margin-bottom: 5px;
}

.contact-info-content p {
    margin: 0;
}

.contact-map {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 30px;
}

.contact-map img {
    width: 100%;
    height: auto;
    display: block;
}

/* Form Styles */
.form-container {
    background: var(--grad-card);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 235, 221, 0.05);
}

.form-container-narrow {
    max-width: 400px;
    margin: 0 auto;
    padding: 30px 25px;
}

.form-heading {
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.4rem;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-control {
    display: block;
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--sand);
    background-color: rgba(27, 29, 30, 0.8);
    border: 1px solid var(--ink-70);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--electric-teal);
    box-shadow: 0 0 0 3px rgba(0, 227, 204, 0.2);
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23F4EBDD' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.form-divider {
    height: 1px;
    background-color: var(--ink-70);
    margin: 30px 0;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-check-input {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    border: 2px solid var(--acid-lime);
    border-radius: 6px;
    background-color: transparent;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.form-check-input:checked {
    background-color: var(--acid-lime);
}

.form-check-input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--ink);
    font-size: 14px;
    font-weight: bold;
}

.form-check-label {
    font-size: 0.95rem;
}

.form-check-label a {
    color: var(--electric-teal);
    text-decoration: underline;
}

.form-check-label a:hover {
    color: var(--acid-lime);
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn {
    padding: 15px 40px;
}

/* Footer Styles */
.footer {
    background-color: var(--ink);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--grad-hero);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

.footer-column {
    min-height: 100%;
}

.footer-heading {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 15px;
    font-size: 1.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--grad-cta);
}

.footer-desc {
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: var(--sand);
}

.footer-contact li i {
    margin-right: 15px;
    color: var(--acid-lime);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: var(--sand);
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--acid-lime);
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(244, 235, 221, 0.1);
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
}

/* Responsive footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-heading {
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Policy Page Styles */
.policy-page {
    padding: 150px 0 80px;
}

.policy-card h2 {
    margin-bottom: 30px;
    text-align: center;
}

.policy-intro {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(244, 235, 221, 0.1);
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h3 {
    margin-bottom: 20px;
    color: var(--acid-lime);
}

.policy-list {
    list-style: none;
    padding-left: 20px;
}

.policy-list li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--acid-lime);
    border-radius: 50%;
}

/* Thankyou Page Styles */
.thankyou {
    padding: 150px 0;
    text-align: center;
}

.thankyou-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--grad-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    font-size: 3rem;
    color: white;
}

.thankyou h1 {
    margin-bottom: 20px;
}

.thankyou p {
    max-width: 600px;
    margin: 0 auto 40px;
}

.thankyou-links {
    margin-top: 40px;
}

.thankyou-links a {
    margin: 0 10px;
}

/* 404 Page Styles */
.error-404 {
    padding: 150px 0;
    text-align: center;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 30px;
    background: var(--grad-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(91, 61, 242, 0.3);
}

.error-404 p {
    max-width: 500px;
    margin: 0 auto 40px;
}

.error-links {
    margin-top: 40px;
}

.error-links a {
    margin: 0 10px;
}

/* Icons */
[class^="icon-"] {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-location {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23B7F526' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
}

.icon-phone {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23B7F526' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-mail {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23B7F526' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Animations and Transitions */
.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

/* Additional Responsive Styles */
/* Global responsive rules to prevent horizontal scrolling */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    overflow-x: hidden;
}

/* Large screens (desktops) */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero {
        padding: 130px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        max-width: 700px;
    }
}

/* Medium screens (laptops, small desktops) */
@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .hero {
        padding: 120px 0 70px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Services section */
    .services .row {
        flex-wrap: wrap;
    }
    
    .services .col-12 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 30px;
    }
    
    /* Pricing section */
    .pricing .row {
        flex-wrap: wrap;
    }
    
    .pricing .col-12 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 30px;
    }
    
    /* Process section */
    .process-item {
        padding-left: 70px;
    }
    
    /* Form elements */
    .form-container {
        padding: 30px;
    }
    
    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }
}

/* Tablet screens */
@media (max-width: 768px) {
    .container {
        max-width: 720px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    /* About section */
    .about .row {
        display: flex;
        flex-direction: column;
    }
    
    .about .col-12 {
        margin-bottom: 20px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Services section */
    .services .row {
        flex-direction: column;
    }
    
    .services .col-12 {
        flex: 0 0 100%;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }
    
    .service-card {
        height: auto;
    }
    
    /* Benefits section */
    .benefits .col-md-6 {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }
    
    /* Process section */
    .process-item {
        padding-left: 60px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Pricing section */
    .pricing .row {
        flex-direction: column;
    }
    
    .pricing .col-12 {
        flex: 0 0 100%;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }
    
    /* Testimonials section */
    .testimonials .row {
        display: flex;
        flex-direction: column;
        min-width: 200px;
    }
    
    .testimonials .col-md-6,
    .testimonials .col-12 {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
        min-width: 200px;
    }
    
    .testimonial {
        padding: 25px;
        height: auto;
        min-width: 200px;
    }
    
    /* FAQ section */
    .faq-item {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Contact section */
    .contact .col-md-6 {
        width: 90%;
        margin: 0 auto;
    }
    
    .form-container-narrow {
        width: 100%;
        max-width: 450px;
    }
    
    /* Footer section */
    .footer-heading {
        margin-top: 0;
    }
    
    .footer-grid {
        row-gap: 30px;
    }
}

/* Mobile screens */
@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .row {
        margin-left: -5px;
        margin-right: -5px;
    }
    
    [class*="col-"] {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    /* Hero section */
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* About section */
    .about .col-12 {
        width: 92%;
        margin-bottom: 20px;
    }
    
    .about-card {
        height: auto;
        padding: 20px;
        width: 100%;
    }
    
    /* Services section */
    .services .col-12 {
        width: 92%;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card-icon {
        height: 120px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p,
    .service-features li {
        font-size: 0.9rem;
    }
    
    /* Benefits section */
    .benefits .col-12,
    .benefits .col-md-6 {
        width: 92%;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 0 15px;
        width: 100%;
    }
    
    .benefit-icon {
        margin: 0 auto 15px;
    }
    
    .benefit-badge {
        display: inline-block;
        margin: 10px auto;
    }
    
    .benefit-content h3 {
        font-size: 1.3rem;
    }
    
    /* Process section */
    .process-item {
        padding-left: 0;
        padding-top: 70px;
        text-align: center;
        width: 92%;
    }
    
    .process-number {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .process-item h3 {
        font-size: 1.3rem;
    }
    
    /* Pricing section */
    .pricing .col-12 {
        width: 92%;
    }
    
    .price-card {
        padding: 20px 15px;
    }
    
    .price-card-header h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .price-features li {
        font-size: 0.9rem;
    }
    
    /* Testimonials section */
    .testimonials .col-12,
    .testimonials .col-md-6 {
        width: 92%;
    }
    
    .testimonial {
        padding: 25px 20px;
        width: 100%;
    }
    
    .testimonial-content {
        font-size: 0.9rem;
    }
    
    .testimonial-info h4 {
        font-size: 1rem;
    }
    
    /* FAQ section */
    .faq-item {
        width: 92%;
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    /* Contact section */
    .contact {
        padding: 60px 0;
    }
    
    .contact .col-lg-4,
    .contact .col-md-6 {
        width: 92%;
    }
    
    .form-container {
        padding: 20px;
        min-width: 200px;
    }
    
    .form-container-narrow {
        max-width: 200px;
    }
    
    .form-heading {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .form-check-label {
        font-size: 0.85rem;
    }
    
    .form-check-input {
        width: 20px;
        height: 20px;
    }
    
    /* Footer section */
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-heading {
        margin-bottom: 20px;
        padding-bottom: 10px;
        text-align: center;
        font-size: 1.3rem;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-desc {
        text-align: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-bottom {
        margin-top: 40px;
        padding-top: 20px;
        font-size: 0.85rem;
    }
}
