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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #111111;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #ffffff;
    color: #000000;
    font-weight: 700;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Center form buttons */
.quote-form .btn,
.contact-form .btn,
.service-quote-form .btn {
    display: block;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    background-color: #111111;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(255,255,255,0.1);
}

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

.nav-logo h2 {
    color: #ffffff;
    margin: 0;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background-color: #111111;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 400;
}

.hero-text h1 {
    font-size: 2.1rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

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

.hero-logo {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.hero-icon {
    font-size: 8rem;
    color: #3498db;
    opacity: 0.8;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
    font-weight: 700;
}

.section-title:after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #ffffff;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #111111;
}

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

.service-card {
    background: #111111;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #333333;
}

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

.service-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.service-image {
    height: 200px;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 10px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #333333;
    color: #cccccc;
}

.service-card li:last-child {
    border-bottom: none;
}

/* Projects Section */
.projects {
    padding: 80px 0;
    background-color: #111111;
}

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

.project-card {
    background: #111111;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #333333;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-icon {
    font-size: 4rem;
    color: #3498db;
    opacity: 0.7;
}

.project-content {
    padding: 1.5rem;
}

.project-content p {
    color: #cccccc;
}

.project-content h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #111111;
}

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

.about-text h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-text h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.about-text p {
    color: #cccccc;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-icon {
    font-size: 6rem;
    color: #3498db;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #111111;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-item i {
    color: #ffffff;
    margin-right: 1rem;
    width: 20px;
}

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

.contact-form {
    background: #111111;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 600;
}

.name-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #333333;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #222222;
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

/* Footer */
.footer {
    background-color: #111111;
    color: white;
    padding: 40px 0 20px;
    border-top: 1px solid #333333;
}

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

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.footer-section li {
    padding: 0.3rem 0;
    color: #cccccc;
}

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

/* Business Hero Section (Home-1) */
.hero-business {
    background-color: #111111;
    padding: 120px 0 80px;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-business-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-business .hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #cccccc;
    margin-top: 0.5rem;
}

/* Benefits Bar */
.benefits-bar {
    background-color: #111111;
    padding: 2rem 0;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.benefit-item i {
    color: #ffffff;
    font-size: 1.5rem;
}

/* Services Showcase */
.services-showcase {
    background-color: #111111;
    padding: 80px 0;
}

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

@media (max-width: 480px) {
    .services-showcase-grid {
        grid-template-columns: 1fr;
    }
}

.service-showcase-card {
    background: #111111;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333333;
    transition: transform 0.3s ease;
}

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

.service-showcase-image {
    height: 250px;
    overflow: hidden;
}

.service-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-showcase-content {
    padding: 2rem;
}

.service-showcase-content h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-showcase-content p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.service-showcase-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-showcase-content li {
    color: #cccccc;
    padding: 0.3rem 0;
    border-bottom: 1px solid #333333;
}

.service-showcase-content li:last-child {
    border-bottom: none;
}

.service-price {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1rem;
    background: #111111;
    border-radius: 8px;
    text-align: center;
}

/* Process Section */
.process-section {
    background-color: #111111;
    padding: 80px 0;
}

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

.business-process-step {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 10px;
    border: 1px solid #333333;
}

.business-process-step .step-number {
    width: 80px;
    height: 80px;
    background: #ffffff;
    color: #111111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.business-process-step h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.business-process-step p {
    color: #cccccc;
}

/* Featured Projects */
.featured-projects {
    background-color: #111111;
    padding: 80px 0;
}

.featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.featured-project {
    background: #111111;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333333;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.featured-project:hover {
    transform: translateY(-5px);
}

.project-before-after {
    height: 250px;
    overflow: hidden;
}

.project-before-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-details h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-details p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.project-badge {
    background: #ffffff;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-top: auto;
}

.featured-cta {
    text-align: center;
}

/* Testimonials */
.testimonials {
    background-color: #111111;
    padding: 80px 0;
}

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

.testimonial {
    background: #111111;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333333;
}

.testimonial-content p {
    color: #cccccc;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: #ffffff;
    font-weight: 700;
}

.testimonial-author span {
    color: #cccccc;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
}

.testimonial-rating {
    margin-top: 1rem;
}

.testimonial-rating i {
    color: #ffffff;
    margin-right: 0.3rem;
}

/* About Business */
.about-business {
    background-color: #111111;
    padding: 80px 0;
}

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

.about-business-text h2 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-business-text h3 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.about-business-text p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #111111;
    border-radius: 8px;
    border: 1px solid #333333;
}

.credential-item i {
    color: #ffffff;
    font-size: 1.2rem;
}

.credential-item span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.about-business-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Contact Business */
.contact-business {
    background-color: #111111;
    padding: 80px 0;
}

.contact-business-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-business h2 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info-business p {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #111111;
    border-radius: 10px;
    border: 1px solid #333333;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-details h4 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-details span {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Quote Form */
.quote-form {
    background: #111111;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333333;
}

.quote-form h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.quote-form .form-group {
    margin-bottom: 1.5rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #333333;
    border-radius: 8px;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #ffffff;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: #888888;
}

.form-disclaimer {
    color: #cccccc;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
}

/* Service Hero (Product X-2) */
.service-hero {
    background-color: #111111;
    padding: 120px 0 80px;
}

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

.service-info h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.service-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.service-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: #111111;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333333;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
}

.stat-label {
    color: #cccccc;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Before & After Gallery */
.before-after-gallery {
    background-color: #111111;
    padding: 80px 0;
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.transformation-card {
    background: #111111;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333333;
}

.transformation-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 300px;
}

.before-image,
.after-image {
    position: relative;
    overflow: hidden;
}

.transformation-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.before-label {
    background: #e74c3c;
    color: white;
}

.after-label {
    background: #27ae60;
    color: white;
}

.transformation-info {
    padding: 2rem;
}

.transformation-info h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.transformation-info p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.project-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.detail-item {
    color: #ffffff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-item i {
    color: #ffffff;
}

/* Video Section */
.video-section {
    background-color: #111111;
    padding: 80px 0;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.video-placeholder {
    background: #111111;
    border: 2px solid #333333;
    border-radius: 15px;
    padding: 4rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.video-placeholder:hover {
    border-color: #ffffff;
}

.video-icon {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.video-placeholder h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.video-placeholder p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.video-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.video-duration,
.video-quality {
    color: #ffffff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.video-point {
    text-align: center;
    padding: 2rem;
    background: #111111;
    border-radius: 10px;
    border: 1px solid #333333;
}

.video-point i {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.video-point h4 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.video-point p {
    color: #cccccc;
}

/* Service Process */
.service-process {
    background-color: #111111;
    padding: 80px 0;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #111111;
    border-radius: 10px;
    border: 1px solid #333333;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-content h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content p {
    color: #cccccc;
}

/* Service Pricing */
.service-pricing {
    background-color: #111111;
    padding: 80px 0;
}

.pricing-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.package-card {
    background: #111111;
    border: 1px solid #333333;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.featured-package {
    border-color: #ffffff;
    transform: scale(1.05);
}

.package-ribbon {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #000000;
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.package-header h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.package-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.price-unit {
    color: #cccccc;
    font-size: 1rem;
    display: block;
    margin-top: 0.5rem;
}

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

.package-features li {
    color: #cccccc;
    padding: 0.8rem 0;
    border-bottom: 1px solid #333333;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

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

.package-features i {
    color: #ffffff;
    font-size: 0.9rem;
}

/* Service Contact */
.service-contact {
    background-color: #111111;
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-quote-form {
    background: #111111;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333333;
}

.service-quote-form h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.service-quote-form .form-group {
    margin-bottom: 1.5rem;
}

.service-quote-form input,
.service-quote-form select,
.service-quote-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #333333;
    border-radius: 8px;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.service-quote-form input:focus,
.service-quote-form select:focus,
.service-quote-form textarea:focus {
    outline: none;
    border-color: #ffffff;
}

.service-quote-form input::placeholder,
.service-quote-form textarea::placeholder {
    color: #888888;
}

/* Page Header (for Gallery and Product pages) */
.page-header {
    background-color: #111111;
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #cccccc;
}

/* Gallery Styles */
.gallery-filter {
    padding: 40px 0;
    background-color: #111111;
    border-bottom: 1px solid #333333;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: #111111;
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ffffff;
    color: #000000;
}

.gallery {
    padding: 80px 0;
    background-color: #111111;
}

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

.gallery-item {
    background: #111111;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333333;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: #ffffff;
}

.project-image {
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .project-image img {
    transform: scale(1.05);
}

.before-after-container {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.before-after {
    position: relative;
    width: 100%;
    height: 100%;
}

.before,
.after {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
}

.before {
    left: 0;
}

.after {
    right: 0;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: #cccccc;
    background: #222222;
}

.placeholder-image i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.placeholder-image.completed {
    background: #333333;
}

.placeholder-image.completed i {
    color: #ffffff;
}

.slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #ffffff;
    transform: translateX(-50%);
    cursor: ew-resize;
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.gallery-info p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.project-tag {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Product Page Styles */
.product-hero {
    background-color: #111111;
    padding: 120px 0 80px;
}

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

.product-info h1 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.product-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.product-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-weight: 600;
}

.highlight i {
    color: #ffffff;
}

.product-image {
    text-align: center;
}

.product-placeholder {
    background: #ffffff;
    color: #000000;
    padding: 3rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 1px solid #333333;
}

.product-placeholder i {
    font-size: 4rem;
}

.product-placeholder span {
    font-size: 1.5rem;
    font-weight: 600;
}

.product-benefits {
    padding: 80px 0;
    background-color: #111111;
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: #111111;
    border-radius: 10px;
    border: 1px solid #333333;
}

.benefit-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #cccccc;
}

.benefit-icon {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.product-demo {
    padding: 80px 0;
    background-color: #111111;
}

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

.demo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.demo-image {
    flex: 1;
}

.demo-arrow {
    font-size: 2rem;
    color: #ffffff;
}

.rust-before {
    background: #e74c3c;
    color: white;
    padding: 2rem;
    border-radius: 10px;
}

.rust-after {
    background: #27ae60;
    color: white;
    padding: 2rem;
    border-radius: 10px;
}

.demo-description {
    font-size: 1.1rem;
    color: #cccccc;
}

.how-it-works {
    padding: 80px 0;
    background-color: #111111;
}

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

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

.step h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.step p {
    color: #cccccc;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.product-specs {
    padding: 80px 0;
    background-color: #111111;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.specs-column h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.specs-list {
    list-style: none;
}

.specs-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #333333;
    color: #cccccc;
}

.specs-list li:last-child {
    border-bottom: none;
}

.product-pricing {
    padding: 80px 0;
    background-color: #111111;
}

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

.pricing-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border: 3px solid #3498db;
    transform: scale(1.05);
}

.pricing-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.price {
    font-size: 2.5rem;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 1rem;
}

.savings {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: #cccccc;
}

.order-info {
    text-align: center;
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    color: #ffffff;
}

.product-cta {
    padding: 80px 0;
    background-color: #111111;
    color: white;
    text-align: center;
    border-top: 1px solid #333333;
}

.product-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.product-cta p {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta {
    padding: 80px 0;
    background-color: #111111;
    color: white;
    text-align: center;
    border-top: 1px solid #333333;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #111111;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(255,255,255,0.05);
        padding: 2rem 0;
        border-top: 1px solid #333333;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .name-fields {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .product-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .demo-item {
        flex-direction: column;
        gap: 1rem;
    }

    .demo-arrow {
        transform: rotate(90deg);
    }

    .filter-buttons {
        justify-content: center;
    }

    .pricing-card.featured {
        transform: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Business page responsive */
    .hero-business-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-business .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-showcase-grid {
        grid-template-columns: 1fr;
    }

    .about-business-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-business-content {
        grid-template-columns: 1fr;
    }

    .credentials {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-text h2 {
        font-size: 1.3rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .services-grid,
    .projects-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .product-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    /* Business page mobile */
    .hero-business {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero-business .hero-text h1 {
        font-size: 1.9rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .hero-business .hero-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-top: 1.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }

    .hero-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 2rem auto 0;
    }

    .hero-stats {
        margin-top: 2rem;
        margin-bottom: 2rem;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .services-showcase {
        padding: 60px 0;
    }

    .services-showcase-grid,
    .featured-projects-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .business-process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .benefit-item {
        padding: 1.2rem;
        min-height: 60px;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .benefit-item i {
        font-size: 1.5rem;
    }

    .benefit-item span {
        font-size: 1rem;
        line-height: 1.4;
    }

    /* Contact Form Mobile Optimization */
    .form-group input,
    .form-group select,
    .form-group textarea,
    .quote-form input,
    .quote-form select,
    .quote-form textarea,
    .service-quote-form input,
    .service-quote-form select,
    .service-quote-form textarea {
        padding: 16px;
        font-size: 16px;
        min-height: 48px;
        line-height: 1.5;
    }

    .form-group textarea,
    .quote-form textarea,
    .service-quote-form textarea {
        min-height: 120px;
    }

    .form-group {
        margin-bottom: 1.8rem;
    }

    .form-group label {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .btn-primary,
    .btn-secondary {
        min-height: 48px;
        font-size: 1rem;
        padding: 14px 28px;
    }

    .service-showcase-content h3 {
        font-size: 1.3rem;
    }

    .process-section {
        padding: 60px 0;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .featured-projects {
        padding: 60px 0;
    }

    .about-business {
        padding: 60px 0;
    }

    .contact-business {
        padding: 60px 0;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .credentials {
        gap: 1rem;
    }

    /* Product X-2 responsive */
    .service-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-info h1 {
        font-size: 2.5rem;
    }

    .service-buttons {
        justify-content: center;
    }

    .transformations-grid {
        grid-template-columns: 1fr;
    }

    .transformation-images {
        grid-template-columns: 1fr;
        height: auto;
    }

    .transformation-images .before-image,
    .transformation-images .after-image {
        height: 200px;
    }

    .video-highlights {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .pricing-packages {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .service-stats {
        grid-template-columns: 1fr;
    }

    .project-details {
        justify-content: center;
    }

    .video-info {
        justify-content: center;
        gap: 1rem;
    }

    .featured-package {
        transform: none;
    }

    .service-info h1 {
        font-size: 2rem;
    }

    .service-subtitle {
        font-size: 1.1rem;
    }

    .service-buttons {
        flex-direction: column;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .service-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Animation Classes */
.gallery-item.hidden {
    display: none;
}

.gallery-item.show {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

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

/* Form Validation Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: none;
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.fab-main:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.fab-main.active {
    background: #FF6B35;
    transform: rotate(45deg);
}

.fab-main.active i::before {
    content: "\f00d";
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
}

.fab-options {
    position: absolute;
    bottom: 75px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fab-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #ffffff;
    color: #111111;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 600;
    font-size: 14px;
}

.fab-option:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fab-option.whatsapp {
    background: #25D366;
    color: white;
}

.fab-option.whatsapp:hover {
    background: #128C7E;
}

.fab-option.phone {
    background: #4A90E2;
    color: white;
}

.fab-option.phone:hover {
    background: #357ABD;
}

.fab-option.text {
    background: #FF6B35;
    color: white;
}

.fab-option.text:hover {
    background: #E55A2B;
}

.fab-option i {
    font-size: 20px;
}

/* Mobile adjustments for floating button */
@media (max-width: 768px) {
    .floating-contact {
        bottom: 24px;
        right: 20px;
        z-index: 1000;
    }
    
    .fab-main {
        width: 60px;
        height: 60px;
        font-size: 24px;
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
    
    .fab-option {
        font-size: 0;
        padding: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    
    .fab-option span {
        display: none;
    }
    
    .fab-option i {
        font-size: 24px;
        margin: 0;
    }
    
    .fab-options {
        bottom: 75px;
        gap: 14px;
    }
}
