* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF7C7C;
    --secondary: #79C9B5;
    --accent: #FFB3B3;
    --dark: #2C3E50;
    --light: #FFF5F5;
    --coral: #FF7C7C;
    --mint: #79C9B5;
    --pink-light: #FFE8E8;
    --success: #10b981;
    --white: #FFFFFF;
    --text-gray: #5A5A5A;
    --border-color: rgba(255,124,124,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

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

/* Navigation */
nav {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
}

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

.cta-btn {
    /* background: linear-gradient(135deg, var(--coral), #FF9999); */
    color: white;
    padding: 0.8rem 1.5rem;
    /* border-radius: 25px; */
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 12px rgba(255,124,124,0.3); */
}



/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFE8E8, #FFF5F5);
    padding: 130px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '⚡';
    position: absolute;
    font-size: 15rem;
    opacity: 0.05;
    top: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--coral), #FF9999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.badge {
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 12px rgba(255,124,124,0.15);
    font-weight: 600;
    border: 1px solid var(--border-color);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--coral), #FF9999);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(255,124,124,0.3);
}

.btn-secondary {
    background: white;
    color: var(--coral);
    padding: 1.2rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--coral);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,124,124,0.4);
}

.hero-image {
    position: relative;
}

.hero-visual {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

.visual-item {
    background: linear-gradient(135deg, var(--mint), #8DD9C7);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.visual-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(121,201,181,0.3);
}

.visual-item .icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255,124,124,0.06), rgba(255,179,179,0.10));
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(255,124,124,0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--coral), #FF9999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
}

/* Products/Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, white, var(--light));
}

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

.section-header h2 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

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

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--coral), var(--mint));
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255,124,124,0.15);
    border-color: var(--coral);
}

.service-icon {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f8f8f8, #eee);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(121,201,181,0.25);
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover .service-icon {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 8px 25px rgba(121,201,181,0.35);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--mint), #8DD9C7);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(121,201,181,0.25);
}

.product-series {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.product-series h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.series-tags {
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    margin-top: 1rem;
}

.service-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

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

.feature-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: white;
}

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

.partner-card-new {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s ease;
}

.partner-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255,124,124,0.15);
    border-color: var(--coral);
}

.partner-card-img {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #f8f8f8, #eee);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-bottom: 3px solid var(--mint);
}

.partner-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-card-body {
    padding: 2rem;
}

.partner-card-body h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.partner-tagline {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.partner-card-body > p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.partner-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.partner-features li {
    padding: 5px 0;
    padding-left: 24px;
    position: relative;
    color: #555;
    font-size: 0.9rem;
}

.partner-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.partner-link-btn {
    display: inline-block;
    color: var(--coral);
    font-weight: 700;
    text-decoration: none;
    padding: 8px 20px;
    border: 2px solid var(--coral);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.partner-link-btn:hover {
    background: var(--coral);
    color: white;
    box-shadow: 0 4px 12px rgba(255,124,124,0.3);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--light), white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    margin-bottom: 4rem;
}

.map-container {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 12px;
}

.contact-info {
    background: linear-gradient(135deg, var(--coral), #FF9999);
    padding: 3rem;
    color: white;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 2rem;
    background: rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 15px;
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-form {
    padding: 2rem;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.form-status {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: none;
    font-weight: 600;
    text-align: center;
}

.form-status.success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
    display: block;
}

.form-status.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
    display: block;
}

.form-status.loading {
    background: #DBEAFE;
    color: #1E40AF;
    border: 1px solid #3B82F6;
    display: block;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255,124,124,0.15);
}

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

.submit-btn {
    background: linear-gradient(135deg, var(--coral), #FF9999);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 12px rgba(255,124,124,0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,124,124,0.45);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0 1.5rem;
    text-align: center;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s;
    text-decoration: none;
    color: white;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* Visual Grid Images */
.visual-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

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

/* Service Card Images */
.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* See More Button */
.see-more-container {
    text-align: center;
    margin-top: 3rem;
}

.see-more-btn {
    display: inline-block;
    font-size: 1.1rem;
    padding: 1rem 3rem;
}

/* Certificates Section */
.certificates-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, white, var(--light));
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.cert-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    display: block;
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255,124,124,0.15);
    border-color: var(--coral);
}

.cert-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.cert-card h3 {
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--coral), #FF9999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.cert-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.cert-link {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.cert-card:hover .cert-link {
    color: var(--coral);
}

/* Partner Highlights */
.partner-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.partner-highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.partner-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(255,124,124,0.15);
    border-color: var(--coral);
}

.partner-highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.partner-highlight-card h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.partner-highlight-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Business Hours Table */
.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 5px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.hours-table td:first-child {
    font-weight: 600;
    padding-right: 1rem;
    width: 110px;
}

.hours-table .closed {
    color: #ffcccc;
    font-style: italic;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Responsive */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .nav-links {
        display: none;
    }

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

    .partner-details {
        grid-template-columns: 1fr;
    }

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

    .partner-header {
        flex-direction: column;
        text-align: center;
    }

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

    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
