:root {
    --primary-color: #FF2E2E;
    --secondary-color: #1A1A1A;
    --text-light: #F4F4F4;
    --text-dark: #333333;
    --bg-light: #FFFFFF;
    --bg-dark: #222222;
    --transition: all 0.3s ease;
}

* * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Bebas Neue', sans-serif; }
html { scroll-behavior: smooth; }
body { line-height: 1.6; color: var(--text-dark); background: var(--bg-light); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--secondary-color); line-height: 1.2; margin-bottom: 20px; 
}
.section-title { text-align: center; font-size: 2.5rem; text-transform: uppercase; margin-bottom: 50px; }
.section-title::after { content: ''; display: block; width: 80px; height: 4px; background: var(--primary-color); margin: 10px auto 0; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 35px; font-weight: 700; text-transform: uppercase; text-decoration: none; border-radius: 8px; transition: var(--transition); border: none; cursor: pointer; letter-spacing: 1px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); overflow: hidden; position: relative; z-index: 1;}
.btn::before { content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%; transition: var(--transition); z-index: -1; border-radius: 50px; }
.btn-primary { background: var(--primary-color); color: white; }
.btn-primary::before { background: #b82d38; }
.btn-primary:hover::before { width: 100%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4); color: white;}
.btn-primary {
    box-shadow: 0 0 15px rgba(255, 46, 46, 0.6);
}
.btn-secondary { background: var(--secondary-color); color: white; }
.btn-secondary::before { background: #333; }
.btn-secondary:hover::before { width: 100%; }
.btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(26, 26, 26, 0.4); color: white;}
.btn-block { display: flex; width: 100%; }

/* Header - Glassmorphism */
header { position: fixed; top: 0; width: 100%; background: rgba(245, 245, 245, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 5px 0; z-index: 1000; border-bottom: 1px solid rgba(0,0,0,0.05); transition: var(--transition); }
header.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
nav { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; cursor: pointer; color: var(--secondary-color); font-size: 1.5rem; font-weight: 800; gap: 10px; }
.logo img { height: 75px; width: auto; object-fit: contain; }
.logo span { color: var(--primary-color); }
.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 35px; position: relative; }
.nav-links a { color: var(--text-dark); text-decoration: none; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; transition: var(--transition); display: block; padding: 5px 0;}
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary-color); transition: var(--transition); }
.nav-links a:hover { color: var(--primary-color); }
.nav-links a:hover::after { width: 100%; }
.hamburger { display: none; cursor: pointer; z-index: 100; }
.hamburger div { width: 25px; height: 3px; background: var(--secondary-color); margin: 5px; transition: var(--transition); border-radius: 3px; }


/* Hero */
.hero-section { height: 100vh; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1920x1080/1a1a1a/666666?text=Background+Image'); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: white; padding-top: 60px; }
.hero-content h1 { font-size: 4rem; color: white; text-transform: uppercase; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; color: #ccc; }

/* About */
.about-section { padding: 100px 0; }
.about-container { display: flex; align-items: center; gap: 50px; }
.about-image { flex: 1; }
.about-image img { width: 100%; max-width: 500px; box-shadow: 20px 20px 0 var(--primary-color); border-radius: 8px; }
.about-text { flex: 1; }

:root {
    --primary-color: #FF2E2E;
    --secondary-color: #1A1A1A;
    --text-light: #F4F4F4;
    --text-dark: #333333;
    --bg-light: #FFFFFF;
    --bg-dark: #222222;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
html { scroll-behavior: smooth; }
body { line-height: 1.6; color: var(--text-dark); background: var(--bg-light); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}
.section-title { text-align: center; font-size: 2.5rem; text-transform: uppercase; margin-bottom: 50px; }
.section-title::after { content: ''; display: block; width: 80px; height: 4px; background: var(--primary-color); margin: 10px auto 0; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 35px; font-weight: 700; text-transform: uppercase; text-decoration: none; border-radius: 8px; transition: var(--transition); border: none; cursor: pointer; letter-spacing: 1px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); overflow: hidden; position: relative; z-index: 1;}
.btn::before { content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%; transition: var(--transition); z-index: -1; border-radius: 50px; }
.btn-primary { background: var(--primary-color); color: white; }
.btn-primary::before { background: #b82d38; }
.btn-primary:hover::before { width: 100%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4); color: white;}
.btn-primary {
    box-shadow: 0 0 15px rgba(255, 46, 46, 0.6);
}
.btn-secondary { background: var(--secondary-color); color: white; }
.btn-secondary::before { background: #333; }
.btn-secondary:hover::before { width: 100%; }
.btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(26, 26, 26, 0.4); color: white;}
.btn-block { display: flex; width: 100%; }

/* Header - Glassmorphism */
header { position: fixed; top: 0; width: 100%; background: rgba(245, 245, 245, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 5px 0; z-index: 1000; border-bottom: 1px solid rgba(0,0,0,0.05); transition: var(--transition); }
header.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
nav { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; cursor: pointer; color: var(--secondary-color); font-size: 1.5rem; font-weight: 800; gap: 10px; }
.logo img { height: 75px; width: auto; object-fit: contain; }
.logo span { color: var(--primary-color); }
.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 35px; position: relative; }
.nav-links a { color: var(--text-dark); text-decoration: none; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; transition: var(--transition); display: block; padding: 5px 0;}
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary-color); transition: var(--transition); }
.nav-links a:hover { color: var(--primary-color); }
.nav-links a:hover::after { width: 100%; }
.hamburger { display: none; cursor: pointer; z-index: 100; }
.hamburger div { width: 25px; height: 3px; background: var(--secondary-color); margin: 5px; transition: var(--transition); border-radius: 3px; }


/* Hero */
.hero-section { height: 100vh; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1920x1080/1a1a1a/666666?text=Background+Image'); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: white; padding-top: 60px; }
.hero-content h1 { font-size: 4rem; color: white; text-transform: uppercase; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; color: #ccc; }

/* About */
.about-section { padding: 100px 0; }
.about-container { display: flex; align-items: center; gap: 50px; }
.about-image { flex: 1; }
.about-image img { width: 100%; max-width: 500px; box-shadow: 20px 20px 0 var(--primary-color); border-radius: 8px; }
.about-text { flex: 1; }

/* Certificates */
.certificates-section { padding: 80px 0; background: #fff; border-top: 1px solid #eee; }
.certificate-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.certificate-card img { max-width: 100%; width: 300px; height: 200px; object-fit: cover; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border: 4px solid #fff; }

/* Why Choose Us */
.why-choose-us-section { padding: 80px 0; background: #fafafa; }
.why-choose-content { max-width: 700px; margin: 0 auto; background: white; padding: 40px 50px; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.why-choose-list { list-style: none; font-size: 1.15rem; color: #444; }
.why-choose-list li { margin-bottom: 20px; display: flex; align-items: center; gap: 15px; font-weight: 500; }
.why-choose-list li:last-child { margin-bottom: 0; }
.why-choose-list .check { font-size: 1.3rem; }

/* Services */
.services-section { padding: 100px 0; background: #f9f9f9; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: white; padding: 40px 30px; text-align: center; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: var(--transition); border-bottom: 4px solid transparent; }
.service-card:hover { transform: translateY(-10px); border-bottom-color: var(--primary-color); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.icon-placeholder { font-size: 3rem; margin-bottom: 20px; }

/* Transformations */
.transformations-section { padding: 100px 0; background: var(--bg-dark); color: white; }
.transformations-section .section-title { color: white; }
.transformation-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.transformation-card { background: #333; border-radius: 8px; overflow: hidden; text-align: center; }
.transformation-card img { width: 100%; display: block; transition: var(--transition); }
.transformation-card:hover img { transform: scale(1.05); }
.transformation-card p { padding: 15px; font-weight: bold; }
.before-after-container {
    display: flex;
    width: 100%;
    height: 320px; /* uniform height */
}
.image-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.image-wrapper:last-child {
    border-right: none;
}


/* ✅ IMAGE ALIGNMENT FIX */
.image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* no crop */
}

/* ✅ LABEL FIX */
.image-wrapper .label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 4px 10px;
    font-size: 13px;
    border-radius: 4px;
    z-index: 10;
}

/* Pricing */
.pricing-section { padding: 100px 0; background: #f9f9f9; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; align-items: center; }
.pricing-card { background: white; padding: 40px 30px; border-radius: 8px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); position: relative; transition: var(--transition); }
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.pricing-card.premium { box-shadow: 0 15px 40px rgba(0,0,0,0.15); border: 2px solid var(--primary-color); padding: 50px 30px; transform: scale(1.05); }
.pricing-card.premium:hover { transform: scale(1.05) translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.badge { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background: var(--primary-color); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: bold; }
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.price { font-size: 2.5rem; font-weight: 800; color: var(--primary-color); margin-bottom: 20px; }
.price span { font-size: 1rem; color: #777; font-weight: 500; }
.pricing-card ul { list-style: none; margin-bottom: 30px; }
.pricing-card ul li { padding: 10px 0; border-bottom: 1px solid #eee; color: #555; }
.pricing-card ul li:last-child { border-bottom: none; }

/* Testimonials */
.testimonials-section { padding: 100px 0; background: var(--bg-dark); color: white; }
.testimonials-section .section-title { color: white; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card { background: #333; padding: 30px; border-radius: 8px; text-align: center; }
.stars { color: #FFD700; font-size: 1.5rem; margin-bottom: 15px; letter-spacing: 2px; }
.testimonial-card p { font-style: italic; margin-bottom: 20px; color: #ddd; }
.testimonial-card h4 { color: var(--primary-color); }

/* Contact */
.contact-section { padding: 100px 0; }
.contact-container { max-width: 600px; margin: 0 auto; background: white; padding: 40px; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--secondary-color); }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(230,57,70,0.1); }
.form-status { margin-top: 15px; text-align: center; font-weight: bold; }

/* Footer */
footer { background: var(--secondary-color); color: white; padding: 50px 0 20px; }
.footer-container { display: flex; flex-direction: column; gap: 40px; justify-content: space-between; align-items: center; text-align: center; margin-bottom: 30px; }
.footer-info h3, .footer-social h3 { color: white; margin-bottom: 15px; font-size: 1.2rem; }
.footer-info a { color: var(--text-light); text-decoration: none; }
.footer-info a:hover { color: var(--primary-color); }
.footer-info p { margin-bottom: 8px; color: #ccc; }
.footer-social .instagram-link { display: inline-flex; align-items: center; gap: 8px; color: white; text-decoration: none; font-weight: bold; font-size: 1.1rem; transition: var(--transition); background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); padding: 12px 25px; border-radius: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.footer-social .instagram-link:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(220,39,67,0.4); }
.footer-copyright { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 0.9rem; color: #aaa; }
@media(min-width: 768px) { .footer-container { flex-direction: row; align-items: flex-start; text-align: left; } }

/* WhatsApp */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; width: 60px; height: 60px; border-radius: 50px; display: flex; align-items: center; justify-content: center; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); z-index: 100; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); background: #128C7E; }

/* Responsive */
@media(max-width: 768px) {
    .nav-links { position: fixed; right: -100%; top: 60px; flex-direction: column; background: rgba(26,26,26,0.98); width: 100%; height: 100vh; align-items: center; transition: 0.3s; }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 20px 0; }
    .hamburger { display: block; }
    .hamburger.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .hamburger.toggle .line2 { opacity: 0; }
    .hamburger.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
    .hero-content h1 { font-size: 2.5rem; }
    .about-container { flex-direction: column; text-align: center; }
    .about-image img { box-shadow: 10px 10px 0 var(--primary-color); }
    .pricing-card.premium { transform: scale(1); }
    .pricing-card.premium:hover { transform: translateY(-5px); }
    .certificate-grid { flex-direction: column; align-items: center; }
}

/* style.css */
li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.icon-placeholder {
    font-size: 18px;
    width: 24px;
    text-align: center;
    display: inline-block;
}

/* Certificates */
.certificates-section { padding: 80px 0; background: #fff; border-top: 1px solid #eee; }
.certificate-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.certificate-card img { max-width: 100%; width: 300px; height: 200px; object-fit: cover; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border: 4px solid #fff; }
:root {
    --primary-color: #FF2E2E;
    --secondary-color: #1A1A1A;
    --text-light: #F4F4F4;
    --text-dark: #333333;
    --bg-light: #FFFFFF;
    --bg-dark: #222222;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
html { scroll-behavior: smooth; }
body { line-height: 1.6; color: var(--text-dark); background: var(--bg-light); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}
.section-title { text-align: center; font-size: 2.5rem; text-transform: uppercase; margin-bottom: 50px; }
.section-title::after { content: ''; display: block; width: 80px; height: 4px; background: var(--primary-color); margin: 10px auto 0; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 35px; font-weight: 700; text-transform: uppercase; text-decoration: none; border-radius: 8px; transition: var(--transition); border: none; cursor: pointer; letter-spacing: 1px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); overflow: hidden; position: relative; z-index: 1;}
.btn::before { content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%; transition: var(--transition); z-index: -1; border-radius: 50px; }
.btn-primary { background: var(--primary-color); color: white; }
.btn-primary::before { background: #b82d38; }
.btn-primary:hover::before { width: 100%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4); color: white;}
.btn-primary {
    box-shadow: 0 0 15px rgba(255, 46, 46, 0.6);
}
.btn-secondary { background: var(--secondary-color); color: white; }
.btn-secondary::before { background: #333; }
.btn-secondary:hover::before { width: 100%; }
.btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(26, 26, 26, 0.4); color: white;}
.btn-block { display: flex; width: 100%; }

/* Header - Glassmorphism */
header { position: fixed; top: 0; width: 100%; background: rgba(245, 245, 245, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 5px 0; z-index: 1000; border-bottom: 1px solid rgba(0,0,0,0.05); transition: var(--transition); }
header.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
nav { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; cursor: pointer; color: var(--secondary-color); font-size: 1.5rem; font-weight: 800; gap: 10px; }
.logo img { height: 75px; width: auto; object-fit: contain; }
.logo span { color: var(--primary-color); }
.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 35px; position: relative; }
.nav-links a { color: var(--text-dark); text-decoration: none; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; transition: var(--transition); display: block; padding: 5px 0;}
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary-color); transition: var(--transition); }
.nav-links a:hover { color: var(--primary-color); }
.nav-links a:hover::after { width: 100%; }
.hamburger { display: none; cursor: pointer; z-index: 100; }
.hamburger div { width: 25px; height: 3px; background: var(--secondary-color); margin: 5px; transition: var(--transition); border-radius: 3px; }


/* Hero */
.hero-section { height: 100vh; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1920x1080/1a1a1a/666666?text=Background+Image'); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: white; padding-top: 60px; }
.hero-content h1 { font-size: 4rem; color: white; text-transform: uppercase; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; color: #ccc; }

/* About */
.about-section { padding: 100px 0; }
.about-container { display: flex; align-items: center; gap: 50px; }
.about-image { flex: 1; }
.about-image img { width: 100%; max-width: 500px; box-shadow: 20px 20px 0 var(--primary-color); border-radius: 8px; }
.about-text { flex: 1; }

/* Certificates */
.certificates-section { padding: 80px 0; background: #fff; border-top: 1px solid #eee; }
.certificate-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.certificate-card img { max-width: 100%; width: 300px; height: 200px; object-fit: cover; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border: 4px solid #fff; }

/* Why Choose Us */
.why-choose-us-section { padding: 80px 0; background: #fafafa; }
.why-choose-content { max-width: 700px; margin: 0 auto; background: white; padding: 40px 50px; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.why-choose-list { list-style: none; font-size: 1.15rem; color: #444; }
.why-choose-list li { margin-bottom: 20px; display: flex; align-items: center; gap: 15px; font-weight: 500; }
.why-choose-list li:last-child { margin-bottom: 0; }
.why-choose-list .check { font-size: 1.3rem; }

/* Services */
.services-section { padding: 100px 0; background: #f9f9f9; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: white; padding: 40px 30px; text-align: center; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: var(--transition); border-bottom: 4px solid transparent; }
.service-card:hover { transform: translateY(-10px); border-bottom-color: var(--primary-color); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.icon-placeholder { font-size: 3rem; margin-bottom: 20px; }

/* Transformations */
.transformations-section { padding: 100px 0; background: var(--bg-dark); color: white; }
.transformations-section .section-title { color: white; }
.transformation-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.transformation-card { background: #333; border-radius: 8px; overflow: hidden; text-align: center; }
.transformation-card img { width: 100%; display: block; transition: var(--transition); }
.transformation-card:hover img { transform: scale(1.05); }
.transformation-card p { padding: 15px; font-weight: bold; }

/* Pricing */
.pricing-section { padding: 100px 0; background: #f9f9f9; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; align-items: center; }
.pricing-card { background: white; padding: 40px 30px; border-radius: 8px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); position: relative; transition: var(--transition); }
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.pricing-card.premium { box-shadow: 0 15px 40px rgba(0,0,0,0.15); border: 2px solid var(--primary-color); padding: 50px 30px; transform: scale(1.05); }
.pricing-card.premium:hover { transform: scale(1.05) translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.badge { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background: var(--primary-color); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: bold; }
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.price { font-size: 2.5rem; font-weight: 800; color: var(--primary-color); margin-bottom: 20px; }
.price span { font-size: 1rem; color: #777; font-weight: 500; }
.pricing-card ul { list-style: none; margin-bottom: 30px; }
.pricing-card ul li { padding: 10px 0; border-bottom: 1px solid #eee; color: #555; }
.pricing-card ul li:last-child { border-bottom: none; }

/* Testimonials */
.testimonials-section { padding: 100px 0; background: var(--bg-dark); color: white; }
.testimonials-section .section-title { color: white; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card { background: #333; padding: 30px; border-radius: 8px; text-align: center; }
.stars { color: #FFD700; font-size: 1.5rem; margin-bottom: 15px; letter-spacing: 2px; }
.testimonial-card p { font-style: italic; margin-bottom: 20px; color: #ddd; }
.testimonial-card h4 { color: var(--primary-color); }

/* Contact */
.contact-section { padding: 100px 0; }
.contact-container { max-width: 600px; margin: 0 auto; background: white; padding: 40px; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--secondary-color); }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(230,57,70,0.1); }
.form-status { margin-top: 15px; text-align: center; font-weight: bold; }

/* Footer */
footer { background: var(--secondary-color); color: white; padding: 50px 0 20px; }
.footer-container { display: flex; flex-direction: column; gap: 40px; justify-content: space-between; align-items: center; text-align: center; margin-bottom: 30px; }
.footer-info h3, .footer-social h3 { color: white; margin-bottom: 15px; font-size: 1.2rem; }
.footer-info a { color: var(--text-light); text-decoration: none; }
.footer-info a:hover { color: var(--primary-color); }
.footer-info p { margin-bottom: 8px; color: #ccc; }
.footer-social .instagram-link { display: inline-flex; align-items: center; gap: 8px; color: white; text-decoration: none; font-weight: bold; font-size: 1.1rem; transition: var(--transition); background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); padding: 12px 25px; border-radius: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.footer-social .instagram-link:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(220,39,67,0.4); }
.footer-copyright { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 0.9rem; color: #aaa; }
@media(min-width: 768px) { .footer-container { flex-direction: row; align-items: flex-start; text-align: left; } }

/* WhatsApp */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; width: 60px; height: 60px; border-radius: 50px; display: flex; align-items: center; justify-content: center; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); z-index: 100; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); background: #128C7E; }

/* Responsive */
@media(max-width: 768px) {
    .nav-links { position: fixed; right: -100%; top: 60px; flex-direction: column; background: rgba(26,26,26,0.98); width: 100%; height: 100vh; align-items: center; transition: 0.3s; }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 20px 0; }
    .hamburger { display: block; }
    .hamburger.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .hamburger.toggle .line2 { opacity: 0; }
    .hamburger.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
    .hero-content h1 { font-size: 2.5rem; }
    .about-container { flex-direction: column; text-align: center; }
    .about-image img { box-shadow: 10px 10px 0 var(--primary-color); }
    .pricing-card.premium { transform: scale(1); }
    .pricing-card.premium:hover { transform: translateY(-5px); }
    .certificate-grid { flex-direction: column; align-items: center; }
}

/* style.css */
li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.icon-placeholder {
    font-size: 18px;
    width: 24px;
    text-align: center;
    display: inline-block;
}
/* Services */
.services-section { padding: 100px 0; background: #f9f9f9; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: white; padding: 40px 30px; text-align: center; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: var(--transition); border-bottom: 4px solid transparent; }
.service-card:hover { transform: translateY(-10px); border-bottom-color: var(--primary-color); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.icon-placeholder { font-size: 3rem; margin-bottom: 20px; }

/* Transformations */
.transformations-section { padding: 100px 0; background: var(--bg-dark); color: white; }
.transformations-section .section-title { color: white; }
.transformation-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.transformation-card { background: #333; border-radius: 8px; overflow: hidden; text-align: center; }
.transformation-card img { width: 100%; display: block; transition: var(--transition); }
.transformation-card:hover img { transform: scale(1.05); }
.transformation-card p { padding: 15px; font-weight: bold; }

/* Pricing */
.pricing-section { padding: 100px 0; background: #f9f9f9; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; align-items: center; }
.pricing-card { background: white; padding: 40px 30px; border-radius: 8px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); position: relative; transition: var(--transition); }
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.pricing-card.premium { box-shadow: 0 15px 40px rgba(0,0,0,0.15); border: 2px solid var(--primary-color); padding: 50px 30px; transform: scale(1.05); }
.pricing-card.premium:hover { transform: scale(1.05) translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.badge { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background: var(--primary-color); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: bold; }
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.price { font-size: 2.5rem; font-weight: 800; color: var(--primary-color); margin-bottom: 20px; }
.price span { font-size: 1rem; color: #777; font-weight: 500; }
.pricing-card ul { list-style: none; margin-bottom: 30px; }
.pricing-card ul li { padding: 10px 0; border-bottom: 1px solid #eee; color: #555; }
.pricing-card ul li:last-child { border-bottom: none; }

/* Testimonials */
.testimonials-section { padding: 100px 0; background: var(--bg-dark); color: white; }
.testimonials-section .section-title { color: white; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card { background: #333; padding: 30px; border-radius: 8px; text-align: center; }
.stars { color: #FFD700; font-size: 1.5rem; margin-bottom: 15px; letter-spacing: 2px; }
.testimonial-card p { font-style: italic; margin-bottom: 20px; color: #ddd; }
.testimonial-card h4 { color: var(--primary-color); }

/* Contact */
.contact-section { padding: 100px 0; }
.contact-container { max-width: 600px; margin: 0 auto; background: white; padding: 40px; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--secondary-color); }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(230,57,70,0.1); }
.form-status { margin-top: 15px; text-align: center; font-weight: bold; }

/* Footer */
footer { background: var(--secondary-color); color: white; padding: 50px 0 20px; }
.footer-container { display: flex; flex-direction: column; gap: 40px; justify-content: space-between; align-items: center; text-align: center; margin-bottom: 30px; }
.footer-info h3, .footer-social h3 { color: white; margin-bottom: 15px; font-size: 1.2rem; }
.footer-info a { color: var(--text-light); text-decoration: none; }
.footer-info a:hover { color: var(--primary-color); }
.footer-info p { margin-bottom: 8px; color: #ccc; }
.footer-social .instagram-link { display: inline-flex; align-items: center; gap: 8px; color: white; text-decoration: none; font-weight: bold; font-size: 1.1rem; transition: var(--transition); background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); padding: 12px 25px; border-radius: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.footer-social .instagram-link:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(220,39,67,0.4); }
.footer-copyright { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 0.9rem; color: #aaa; }
@media(min-width: 768px) { .footer-container { flex-direction: row; align-items: flex-start; text-align: left; } }

/* WhatsApp */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; width: 60px; height: 60px; border-radius: 50px; display: flex; align-items: center; justify-content: center; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); z-index: 100; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); background: #128C7E; }

/* Responsive */
@media(max-width: 768px) {
    .nav-links { position: fixed; right: -100%; top: 60px; flex-direction: column; background: rgba(26,26,26,0.98); width: 100%; height: 100vh; align-items: center; transition: 0.3s; }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 20px 0; }
    .hamburger { display: block; }
    .hamburger.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .hamburger.toggle .line2 { opacity: 0; }
    .hamburger.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
    .hero-content h1 { font-size: 2.5rem; }
    .about-container { flex-direction: column; text-align: center; }
    .about-image img { box-shadow: 10px 10px 0 var(--primary-color); }
    .pricing-card.premium { transform: scale(1); }
    .pricing-card.premium:hover { transform: translateY(-5px); }
    .certificate-grid { flex-direction: column; align-items: center; }
}

/* style.css */
li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.icon-placeholder {
    font-size: 18px;
    width: 24px;
    text-align: center;
    display: inline-block;
}