/* ===== CSS VARIABLES & RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --secondary: #10b981;
    --accent: #f59e0b;
    --text: #1f2937;
    --text-light: #6b7280;
    --light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 10px;
    --section-padding: 100px 0;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* ===== LAYOUT & COMPONENTS ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: var(--section-padding);
    scroll-margin-top: 80px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled { padding: 0; }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: var(--transition);
}

.logo {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.logo span { color: var(--secondary); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--primary); }

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu:hover { color: var(--primary); }

/* ===== HERO SECTIONS ===== */
.hero, .about-hero {
    padding-top: 180px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f7ff 100%);
    position: relative;
    overflow: hidden;
}

.about-hero { 
    padding-top: 130px;
    text-align: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.hero-text {
    flex: 1;
    padding-right: 30px;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.hero-text h1 span { color: var(--primary); }

.hero-text p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* ===== SLOGAN SECTION ===== */
.slogan {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 40px 0;
}

.slogan p {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin: 0;
}

/* ===== CARDS & GRIDS ===== */
.services-grid,
.process-steps,
.pricing-plans,
.clients-review-grid,
.team-grid,
.testimonial-grid,
.hosting-grid {
    display: grid;
    gap: 30px;
}

.services-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.process-steps { 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    text-align: center;
}
.pricing-plans { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.clients-review-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.team-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.testimonial-grid { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
.hosting-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* ===== SERVICE CARDS ===== */
.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover { transform: translateY(-10px); }

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary);
}

/* ===== PROCESS STEPS ===== */
.process-step {
    padding: 30px;
}

.process-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

/* ===== PRICING PLANS ===== */
.pricing-plan {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.pricing-plan.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-plan.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-header { margin-bottom: 30px; }

.plan-name {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 10px;
}

.plan-price {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.plan-period {
    color: var(--text-light);
    font-size: 0.9rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 8px 0;
    color: var(--text-light);
    border-bottom: 1px solid #f0f0f0;
}

.plan-features li:last-child { border-bottom: none; }

.plan-features li i {
    color: var(--secondary);
    margin-right: 10px;
}

/* ===== HOSTING PLANS ===== */
.hosting-plans { margin-top: 50px; }

.hosting-plan {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.hosting-plan:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.hosting-name {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 10px;
}

.hosting-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.hosting-period {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.hosting-features {
    list-style: none;
    text-align: left;
}

.hosting-features li {
    padding: 5px 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.hosting-features li i {
    color: var(--secondary);
    margin-right: 8px;
    font-size: 0.8rem;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial {
    background-color: var(--light);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 130px 0;
}

.testimonial-grid {
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.testimonial-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    height: 300px;
    justify-self: center;
}

.testimonial-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-item:hover img { transform: scale(1.1); }

.testimonial-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.testimonial-item:hover .testimonial-overlay { transform: translateY(0); }

/* ===== CLIENTS REVIEW ===== */
.clients-review-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
}

.clients-review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.clients-review-card::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.clients-review-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.clients-review-initials {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

/* Initials color variations */
.clients-review-initials[data-initials="RJ"] {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.clients-review-initials[data-initials="SW"] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.clients-review-initials[data-initials="MC"] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.clients-review-initials:not([data-initials="RJ"]):not([data-initials="SW"]):not([data-initials="MC"]) {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.clients-review-initials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    opacity: 0.3;
}

.clients-review-card:hover .clients-review-initials {
    transform: scale(1.1) rotate(5deg);
}

.clients-review-details h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.clients-review-details p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== CONTACT FORM ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info { padding-right: 30px; }

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text);
}

.contact-details {
    list-style: none;
    margin-bottom: 30px;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-light);
}

.contact-details li i {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.form-success {
    display: none;
    background-color: var(--secondary);
    color: var(--white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* ===== ABOUT & TEAM SECTIONS ===== */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.team-member {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    position: relative;
    border: 4px solid var(--light);
    box-shadow: var(--shadow);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .team-avatar img { transform: scale(1.1); }

.team-initials {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

/* Team initials colors */
.team-initials[data-initials="JS"] {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.team-initials[data-initials="SJ"] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.team-initials[data-initials="MC"] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.team-initials:not([data-initials="JS"]):not([data-initials="SJ"]):not([data-initials="MC"]) {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.team-initials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    opacity: 0.3;
}

.team-member:hover .team-initials { transform: scale(1.05) rotate(5deg); }

.team-member h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
    color: var(--text);
}

.team-position {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.team-member p:last-of-type {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.team-member:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--light);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.team-social a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Animation delays for team members */
.team-member:nth-child(2) { animation-delay: 0.1s; }
.team-member:nth-child(3) { animation-delay: 0.2s; }

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.1"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--white);
    animation: fadeInUp 0.8s ease;
}

.cta p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.cta .btn {
    background-color: var(--white);
    color: var(--primary);
    font-weight: 600;
    padding: 15px 40px;
    font-size: 1.1rem;
    transition: var(--transition);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.cta .btn:hover {
    background-color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--text);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--white); }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 0.9rem;
}

/* ===== UTILITIES & ANIMATIONS ===== */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(79, 70, 229, 0.2);
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

#sendingOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    font-size: 18px;
}

.overlay-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: white;
    border-left: 4px solid var(--success);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.notification.show { transform: translateX(0); }

.notification-success { border-left-color: var(--success); }
.notification-error { border-left-color: var(--danger); }
.notification-warning { border-left-color: var(--warning); }
.notification-info { border-left-color: var(--info); }

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.25rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    :root { --section-padding: 110px 0; }
}

@media (max-width: 992px) {
    .hero-content { flex-direction: column; }
    .hero-text {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    .hero-btns { justify-content: center; }
    .contact-container { grid-template-columns: 1fr; }
    .contact-info { padding-right: 0; text-align: center; }
    .pricing-plan.featured { transform: scale(1); }
}

@media (max-width: 980px) and (min-width: 769px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        row-gap: 10px;
    }
    .logo { text-align: center; width: 100%; }
    section { margin-top: 20px; }
    .team { padding-top: 5px; }
}

@media (max-width: 768px) {
    :root { --section-padding: 120px 0;
    /* :root { --section-padding: 90px 0 */
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: var(--shadow);
        padding: 20px;
        flex-direction: column;
        align-items: center;
        z-index: 1000;
    }
    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }
    .nav-links li { margin: 10px 0; width: 100%; text-align: center; }
    .nav-links a {
        display: block;
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-links a:hover { background-color: var(--light); border-radius: 5px; }
    .mobile-menu { display: flex; }
    
    .hero, .about-hero { padding-top: 150px; }
    /* .testimonial { padding: 80px 0; } */
    .cta { padding: 80px 0; }
    .cta h2 { font-size: 2rem; }
    .cta p { font-size: 1.1rem; padding: 0 20px; }
    .cta .btn { padding: 12px 30px; font-size: 1rem; }
    
    .services-grid,
    .pricing-plans,
    .clients-review-grid,
    .testimonial-grid { grid-template-columns: 1fr; }
    
    .clients-review-card { padding: 25px; }
    .clients-review-initials { width: 50px; height: 50px; font-size: 1rem; }
    .clients-review-details h4 { font-size: 1rem; }
    .clients-review-details p { font-size: 0.8rem; }
    
    .team-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
    .team-member { padding: 25px; }
    .team-avatar { width: 100px; height: 100px; }
    .team-initials { font-size: 1.5rem; }
    .team-member h3 { font-size: 1.1rem; }
    
    .notification { right: 20px; max-width: calc(100% - 40px); }
}

@media (max-width: 576px) {
    .hero-btns { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 250px; margin-bottom: 10px; }
    .contact-details li { flex-direction: column; text-align: center; }
    .contact-details li i { margin-right: 0; margin-bottom: 10px; }
    
    .clients-review-info { flex-direction: column; text-align: center; }
    .clients-review-initials { margin-right: 0; margin-bottom: 10px; }
    
    .team-grid { grid-template-columns: 1fr; }
    .team-member { padding: 20px; }
    .team-avatar { width: 80px; height: 80px; }
    .team-initials { font-size: 1.2rem; }
    .team-social { opacity: 1; transform: translateY(0); }
    
    .cta { padding: 60px 0; }
    .cta h2 { font-size: 1.8rem; }
    .cta p { font-size: 1rem; }
}

@media (max-width: 400px) {
    .pricing-plan {
        padding: 40px 0px;
    }
}

.fa-arattai:before {
    content: "";
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-image: url("fevicons/arattai.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: -0.125em;

    /* Turn any-colored icon into white */
    filter: brightness(0) invert(1);
}

/* ===== BACKGROUND COLORS FOR SECTIONS ===== */
.services { background-color: var(--white); }
.process { background-color: var(--light); }
.pricing { background-color: var(--white); }
.testimonial { background-color: var(--light); }
.clients-review { background-color: var(--light); }
.contact-form-section { background-color: var(--light); }
.team { background-color: #F9FAFB; }