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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    overflow-x: hidden;
}

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

/* Header & Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 2rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #c349ea;
}

.f-logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

.logo i {
    margin-right: 12px;
    font-size: 1.8rem;
    color: #04f865;
    background: linear-gradient(135deg, #04f865, #04aa46);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #860eae;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #04f865, #04aa46);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #04f865;
}

.nav-menu a:hover::before {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #c349ea;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    margin-top: 90px;
    background: linear-gradient(135deg, #ff008c 0%, #df03a3 100%);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 138, 0.9) 0%, rgba(244, 0, 175, 0.9) 100%);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 0, 138, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 138, 0.3);
}

.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text h1 span {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    background: rgba(255, 0, 138, 0.15);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 138, 0.2);
}

.stat-item i {
    font-size: 1.3rem;
    margin-right: 10px;
    color: #ffd700;
}

.stat-item span {
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(45deg, #04f865, #04aa46);
    color: white;
    box-shadow: 0 4px 20px rgba(197, 48, 48, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(197, 48, 48, 0.6);
}

.btn-secondary {
    background: rgba(255, 0, 138, 0.2);
    color: white;
    border: 2px solid rgba(255, 0, 138, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: #ff008c;
    transform: translateY(-3px);
}

.hero-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.showcase-item {
    background: rgba(255, 0, 138, 0.15);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 0, 138, 0.2);
    transition: transform 0.3s ease;
}

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

.showcase-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.showcase-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #04f865, #04aa46);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-badge.light {
    background: rgba(255, 0, 138, 0.2);
    color: white;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #f7fafc;
}

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

.about-image {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #ff008c 0%, #df03a3 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-badge {
    background: rgba(255, 0, 138, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge h3 {
    font-size: 4rem;
    color: #04f865;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.experience-badge p {
    color: #860eae;
    font-weight: 600;
    font-size: 1.1rem;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #c349ea;
    font-weight: 700;
    line-height: 1.2;
}

.about-text > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #860eae;
    line-height: 1.8;
}

.about-highlights {
    margin-bottom: 3rem;
}

.highlight {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.highlight i {
    font-size: 1.5rem;
    color: #04f865;
    margin-right: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.highlight h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #c349ea;
    font-weight: 600;
}

.highlight p {
    color: #718096;
    line-height: 1.6;
}

.btn-outline {
    background: transparent;
    color: #04f865;
    border: 2px solid #04f865;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #04f865;
    color: white;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 120px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #c349ea;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: #f7fafc;
    color: #860eae;
    border: 1px solid #e2e8f0;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(45deg, #04f865, #04aa46);
    color: white;
    border-color: transparent;
}

.tab-btn:hover {
    background: #edf2f7;
}

.tab-btn.active:hover {
    background: linear-gradient(45deg, #04f865, #04aa46);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #04f865, #04aa46);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.premium {
    background: linear-gradient(135deg, #ff008c 0%, #df03a3 100%);
    color: white;
}

.service-card.premium .service-icon i {
    color: #ffd700;
}

.service-card.premium h3 {
    color: white;
}

.service-card.premium p {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.premium ul li {
    color: rgba(255, 255, 255, 0.85);
}

.service-icon {
    background: #f7fafc;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-card.premium .service-icon {
    background: rgba(255, 0, 138, 0.2);
    backdrop-filter: blur(10px);
}

.service-icon i {
    font-size: 2rem;
    color: #04f865;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #c349ea;
    font-weight: 600;
}

.service-card p {
    color: #718096;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    color: #718096;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 120px 0;
    background: linear-gradient(135deg, #c349ea 0%, #860eae 100%);
    color: white;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.why-text > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.8;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.point-number {
    background: linear-gradient(45deg, #04f865, #04aa46);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.point-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.point-content p {
    opacity: 0.8;
    line-height: 1.6;
}

.achievement-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.achievement {
    background: rgba(255, 0, 138, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 0, 138, 0.2);
}

.achievement i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.achievement h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.achievement p {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Warranty Section */
.warranty {
    padding: 120px 0;
    background: #f7fafc;
}

.warranty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.warranty-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #c349ea;
    font-weight: 700;
    line-height: 1.2;
}

.warranty-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #860eae;
    line-height: 1.8;
}

.warranty-benefits {
    margin-bottom: 3rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.benefit-icon {
    background: linear-gradient(45deg, #04f865, #04aa46);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.3rem;
    color: white;
}

.benefit-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #c349ea;
    font-weight: 600;
}

.benefit-text p {
    color: #718096;
    line-height: 1.6;
}

.warranty-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.warranty-seal {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #04f865, #04aa46);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(197, 48, 48, 0.3);
}

.warranty-seal::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #04f865, #04aa46, #f56500);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 10s linear infinite;
}

.seal-inner {
    background: white;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.seal-inner i {
    font-size: 3rem;
    color: #04f865;
    margin-bottom: 1rem;
}

.seal-inner h3 {
    font-size: 2rem;
    color: #c349ea;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.seal-inner p {
    font-size: 1.1rem;
    color: #860eae;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.seal-inner span {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

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

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

.contact-method {
    display: flex;
    align-items: flex-start;
    background: #f7fafc;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #04f865;
}

.method-icon {
    background: linear-gradient(45deg, #04f865, #04aa46);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.3rem;
    color: white;
}

.method-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #c349ea;
    font-weight: 600;
}

.method-details p {
    color: #860eae;
    font-weight: 500;
    margin-bottom: 0.3rem;
    line-height: 1.5;
}

.method-details small {
    color: #718096;
    font-size: 0.9rem;
}

.quote-form-container {
    background: linear-gradient(135deg, #ff008c 0%, #df03a3 100%);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(255, 0, 138, 0.3);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 0, 138, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 0, 138, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 0, 138, 0.8);
    background: rgba(255, 0, 138, 0.15);
}

.form-group select {
    color: white;
}

.form-group select option {
    color: #c349ea;
    background: white;
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    color: rgba(255, 0, 138, 0.9);
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.8rem;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 0, 138, 0.5);
    border-radius: 4px;
    margin-right: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: white;
    color: #04f865;
    border-color: white;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::before {
    content: '✓';
    font-weight: bold;
}

.full-width {
    width: 100%;
}

.confirmation-message {
    text-align: center;
    background: rgba(255, 0, 138, 0.15);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 0, 138, 0.2);
    color: white;
}

.confirmation-icon i {
    font-size: 4rem;
    color: #48bb78;
    margin-bottom: 1.5rem;
}

.confirmation-message h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.confirmation-message p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.next-steps {
    text-align: left;
    background: rgba(255, 0, 138, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.next-steps h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffd700;
    font-weight: 600;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
}

.next-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: #f7fafc;
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    position: relative;
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #ff008c 0%, #df03a3 100%);
    color: white;
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 0, 138, 0.3);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.client-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: inherit;
}

.client-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.rating i {
    color: #ffd700;
    font-size: 1.1rem;
}

blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    padding-left: 2rem;
}

blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    opacity: 0.3;
    line-height: 1;
}

.project-details {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 0, 138, 0.2);
}

.testimonial-card:not(.featured) .project-details {
    border-top-color: #f1f5f9;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #c349ea 0%, #1a202c 100%);
    color: white;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-main p {
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.7;
    text-align: left;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    color: #04f865;
    font-size: 1.1rem;
}

.contact-item span {
    opacity: 0.9;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #04f865;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #04f865, #04aa46);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(197, 48, 48, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 0, 138, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    opacity: 0.7;
}

.certifications span {
    background: rgba(197, 48, 48, 0.2);
    color: #ffd700;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .warranty-grid,
    .contact-grid,
    .why-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: rgba(255, 0, 138, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .about-text h2,
    .why-text h2,
    .warranty-content h2 {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .project-details {
        flex-direction: column;
        gap: 1rem;
    }
}

/*****************Privacy Page******************/

/* ========== Main Content ========== */
.privacy-main {
    padding: 8rem 0;
    background-color: #fff;
}

.privacy-main h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #222;
}

.privacy-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: #444;
}

.privacy-content p {
    margin-bottom: 1.5rem;
    color: #555;
}

/* ========== Footer ========== */
.o-footer {
    background-color: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 1rem 0;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.o-footer p {
    margin: 20;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        padding-top: 1rem;
    }

    .nav-menu li {
        margin-bottom: 0.5rem;
    }

    .logo h2 {
        font-size: 1.5rem;
    }

    .privacy-main h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.25rem;
    }
}


/* ========== Main Content: Terms Page ========== */
.terms-main {
    padding: 8rem 0;
    background-color: #fff;
}

.terms-main h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #222;
    text-align: center;
}

.terms-content h2 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #444;
}

.terms-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    max-width: 800px;
}


/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
        width: 100%;
    }

    .logo h2 {
        font-size: 1.5rem;
    }

    .terms-main h1 {
        font-size: 2rem;
    }

    .terms-content h2 {
        font-size: 1.3rem;
    }

    .terms-content p {
        font-size: 0.95rem;
    }
}

/**************Newsletter Page*****************/

/* ========== Global Reset (Optional if already defined) ========== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}



/* ========== Newsletter Section ========== */
.newsletter-main {
    background-color: #fff;
    padding: 8rem 0;
}

.newsletter-section {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.newsletter-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #222;
    text-align: center;
}

.newsletter-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #555;
}

/* ========== Form Styling ========== */
.newsletter-form .form-group {
    margin-bottom: 1.5rem;
}

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

.newsletter-form input[type="text"],
.newsletter-form input[type="email"],
.newsletter-form input[type="date"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: #007acc;
    outline: none;
}

/* ========== Checkbox ========== */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 0.75rem;
    transform: scale(1.2);
    cursor: pointer;
    margin-top: 0.3rem;
}

.checkbox-group label {
    font-size: 0.95rem;
    color: #555;
}

/* ========== Submit Button ========== */
.submit-btn {
    display: inline-block;
    width: 100%;
    padding: 0.85rem;
    font-size: 1rem;
    font-weight: bold;
    background-color: #007acc;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #005f99;
}

/* ========== Message Styling ========== */
.form-message {
    margin-top: 1.5rem;
    font-size: 1rem;
    padding: 1rem;
    border-radius: 6px;
    display: none;
}

/* Example success/error styling (optional JS toggle) */
.form-message.success {
    background-color: #e0f7e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #d32f2f;
    border: 1px solid #ef9a9a;
}

/* ========== Responsive ========== */
@media (max-width: 600px) {
    .newsletter-section {
        padding: 2rem 1.5rem;
    }

    .newsletter-section h1 {
        font-size: 1.6rem;
    }

    .submit-btn {
        font-size: 0.95rem;
        padding: 0.75rem;
    }
}
