/* ===== css/style.css ===== */
/* === GLOBAL RESET & FONTS === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: #ffffff;
    color: #1e293b;
    line-height: 1.6;
    overflow-x: hidden;
}

/* === COLOR VARIABLES (MADIGITAL TECH Theme) === */
:root {
    --primary: #0f3b5e;       /* Deep Navy */
    --primary-dark: #0a2a44;
    --primary-light: #1e4f76;
    --accent: #0f766e;        /* Teal */
    --accent-light: #14b8a6;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --text-dark: #0b1e33;
    --text-muted: #475569;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 30px -10px rgba(0,50,70,0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === UTILITY CLASSES === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* === REVEAL CLASSES (for scroll animations) === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.stagger-children.active > * {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.active > *:nth-child(6) { transition-delay: 0.6s; }

/* === SECTION TITLES === */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.section-title:hover:after {
    width: 120px;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover:before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 18px rgba(15,59,94,0.25);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15,59,94,0.3);
    animation: pulse 1s infinite;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* === HEADER / NAVIGATION === */
.navbar {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 30%, var(--accent) 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover:after,
.nav-menu a.active:after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--accent);
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-toggle:hover {
    transform: rotate(90deg);
}

/* === HERO SECTIONS === */
.hero-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(15,118,110,0.03) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content .subtitle {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 90%;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-content .btn {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: slideInRight 1s ease;
    transition: var(--transition);
}

.hero-image:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 30px 40px -20px rgba(0,0,0,0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.hero-image:hover img {
    transform: scale(1.1);
}

.hero-alt .hero-image {
    animation: slideInLeft 1s ease;
}

/* === STATS SECTION === */
.stats-section {
    background: var(--primary);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: shimmer 5s infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-item {
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 500;
    opacity: 0.9;
}

/* === EXPERTISE SECTION === */
.expertise-section {
    padding: 80px 0;
    background: var(--white);
}

.expertise-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.expertise-header h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.expertise-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* === PROCESS STEPS (1-2-3-4 Cards) === */
.process-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.process-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.process-card:hover:before {
    transform: scaleX(1);
}

.process-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.process-card:hover .step-number {
    background: var(--accent);
    transform: rotate(360deg);
}

.process-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    transition: var(--transition);
}

.process-card:hover h3 {
    color: var(--accent);
}

.process-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px 25px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(15,59,94,0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: var(--accent);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30px, 30px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

.testimonial-card:hover:after {
    transform: translate(20px, 20px) scale(1.5);
    opacity: 0.2;
}

.quote-icon {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 15px;
    opacity: 0.5;
    transition: var(--transition);
}

.testimonial-card:hover .quote-icon {
    opacity: 1;
    transform: scale(1.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-light);
    transition: var(--transition);
}

.testimonial-card:hover .author-img {
    border-color: var(--accent);
    transform: scale(1.1);
}

.author-info h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* === FOOTER === */
.footer {
    background: #0a1a2a;
    color: #cbd5e1;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-logo h3 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #90caf9, #2dd4bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    animation: float 4s ease-in-out infinite;
}

.footer-logo p {
    color: #94a3b8;
    line-height: 1.7;
}

.footer h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.footer h4:hover:after {
    width: 60px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-light);
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.contact-info p:hover {
    transform: translateX(5px);
    color: white;
}

.contact-info i {
    width: 20px;
    color: var(--accent-light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-info p:hover i {
    transform: scale(1.2);
    color: var(--accent);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1e3a4a;
    color: #64748b;
}

/* === SERVICES PAGE === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.service-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(15,59,94,0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover .service-img:before {
    opacity: 1;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.15);
}

.service-content {
    padding: 30px 25px;
    position: relative;
    background: white;
    z-index: 2;
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card:hover .service-content h3 {
    color: var(--accent);
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--primary);
}

.service-link:hover i {
    transform: translateX(8px);
}

/* === ABOUT PAGE === */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image:after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: 20px;
    z-index: -1;
    transition: var(--transition);
}

.about-image:hover:after {
    top: 10px;
    left: 10px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 20px;
    transition: var(--transition);
    cursor: pointer;
}

.value-item:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent);
    font-size: 2rem;
    transition: var(--transition);
}

.value-item:hover .value-icon {
    background: var(--accent);
    color: white;
    transform: rotateY(360deg);
}

.value-item h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

/* === PRICING PAGE === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.pricing-card:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(15,118,110,0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pricing-card:hover:before {
    opacity: 1;
    animation: rotate 20s linear infinite;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.pricing-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 25px;
}

.pricing-header h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    transition: var(--transition);
}

.pricing-card:hover .price {
    transform: scale(1.1);
}

.price span {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px dashed #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.pricing-features li:hover {
    transform: translateX(5px);
    color: var(--primary);
}

.pricing-features li i {
    color: var(--accent);
    width: 20px;
    transition: var(--transition);
}

.pricing-features li:hover i {
    transform: scale(1.2);
}

.pricing-features li.disabled {
    color: #94a3b8;
    text-decoration: line-through;
}

.pricing-features li.disabled i {
    color: #cbd5e1;
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 15px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-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;
    z-index: -1;
}

.pricing-btn:hover:before {
    left: 100%;
}

.pricing-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* === CONTACT PAGE === */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
}

.contact-info-box:hover {
    box-shadow: var(--shadow-md);
}

.contact-info-box h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.contact-detail:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-detail:hover .contact-icon {
    background: var(--accent);
    color: white;
    transform: rotate(360deg);
}

.contact-text h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(15,118,110,0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 20px 0;
        gap: 15px;
        background: var(--white);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .nav-menu.active {
        display: flex;
        animation: fadeIn 0.5s ease;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image {
        order: -1;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .process-grid,
    .testimonials-grid,
    .services-grid,
    .pricing-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero-content h1 { font-size: 2rem; }
    .btn { padding: 12px 30px; }
}