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

:root {
    --primary-color: #1a365d;
    --primary-light: #2c5282;
    --accent-color: #3182ce;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --container-max: 1200px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
}

.section-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-medium);
    max-width: 700px;
    margin-bottom: 2rem;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.02);
}

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

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.4);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 6rem 0 5rem;
    background-image: url('front-shop.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.82);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-tagline {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-left: 1.5rem;
}

.hero-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 2px;
    background-color: var(--accent-color);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.7;
}

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

.hero-highlights {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-medium);
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.highlight:hover {
    transform: translateX(5px);
}

.highlight-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(49, 130, 206, 0.1);
    color: var(--accent-color);
    font-weight: 700;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

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

.about-text p {
    color: var(--text-medium);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.stat-box {
    background-color: var(--bg-light);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--border-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.stat-box:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-medium);
    margin-top: 0.5rem;
}

.stat-box-featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stat-box-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.stat-box-featured:hover::before {
    transform: rotate(45deg) translate(20px, 20px);
}

.stat-box-featured:hover {
    transform: translateY(-5px) scale(1.02);
}

.stat-box-featured .stat-badge {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-box-featured .stat-sublabel {
    font-size: 0.8rem;
    opacity: 0.9;
}

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

.value-card {
    padding: 2rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

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

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(5deg);
}

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Services Section */
.offerings {
    padding: 6rem 0;
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}

.offerings::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(240,244,248,0.92) 0%, rgba(247,250,252,0.93) 100%);
    z-index: 0;
}

.offerings > .container {
    position: relative;
    z-index: 1;
}


/* Why Us Section */
.why-us {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

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

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

.advantage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.advantage-item:hover {
    background-color: var(--bg-white);
    border-color: var(--accent-color);
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(49, 130, 206, 0.1);
}

.advantage-check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(49, 130, 206, 0.15);
    color: var(--accent-color);
    font-weight: 700;
    border-radius: 50%;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-check {
    background-color: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

.advantage-item span:last-child {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.core-competency {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.core-competency:hover {
    transform: translateY(-5px);
}

.core-competency::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
}

.core-competency h4 {
    color: var(--accent-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.core-competency p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.7;
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, #f0f4f8 100%);
}

.timeline {
    position: relative;
    padding-left: 2rem;
    max-width: 900px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
    padding-left: 2.5rem;
    transition: all 0.4s ease;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 0.1rem;
    width: 16px;
    height: 16px;
    background-color: var(--accent-color);
    border-radius: 50%;
    border: 4px solid var(--bg-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 0 rgba(49, 130, 206, 0.4);
}

.timeline-item:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(49, 130, 206, 0.15);
}

.timeline-content {
    background-color: var(--bg-white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left-color: var(--accent-color);
}

.timeline-year {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    background-color: rgba(49, 130, 206, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-year {
    background-color: var(--accent-color);
    color: white;
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.team-card {
    padding: 2rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(49, 130, 206, 0.05) 0%, transparent 100%);
    transition: height 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.team-card:hover::before {
    height: 100%;
}

.team-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.team-card:hover .team-icon {
    transform: scale(1.2) translateY(-5px);
}

.team-card h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.team-card p {
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(247,250,252,0.92) 0%, rgba(240,244,248,0.92) 100%);
    z-index: 0;
}

.contact > .container {
    position: relative;
    z-index: 1;
}

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

.contact-quote {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-quote blockquote {
    font-size: 1.35rem;
    font-style: italic;
    color: var(--text-medium);
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    position: relative;
}

.contact-quote blockquote::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    font-size: 4rem;
    color: rgba(49, 130, 206, 0.1);
    font-family: Georgia, serif;
}

.future-plans {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
    transition: all 0.4s ease;
}

.future-plans:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.future-plans h4 {
    color: var(--accent-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.future-plans p {
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

.form-group input:hover,
.form-group textarea:hover {
    border-color: #cbd5e0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: var(--accent-color);
}

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

.contact-form button {
    margin-top: 0.5rem;
    font-size: 1rem;
    padding: 1rem 2rem;
}

/* Footer */
.footer {
    padding: 3rem 0 2rem;
    background: linear-gradient(180deg, var(--text-dark) 0%, #1a202c 100%);
    color: white;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #cbd5e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: #a0aec0;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #718096;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.75rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-us-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .advantages-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        z-index: 99;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-list {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-item {
        padding-left: 2rem;
    }
    
    .timeline-item::before {
        left: 1px;
        width: 14px;
        height: 14px;
    }
    
    .contact-quote blockquote {
        font-size: 1.1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1.35rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-box {
        padding: 1.5rem;
    }
    
    .value-card,
    .service-card,
    .team-card {
        padding: 1.5rem;
    }
    
    .timeline-content {
        padding: 1.25rem;
    }
    
    .footer {
        padding: 2rem 0 1.5rem;
    }
}

/* =====================
   Products Section
   ===================== */
.products {
    padding: 6rem 0;
    background-image: url('https://images.unsplash.com/photo-1616763355548-1b606f439f86?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(247,250,252,0.92) 0%, rgba(240,244,248,0.93) 100%);
    z-index: 0;
}

.products > .container {
    position: relative;
    z-index: 1;
}

.filter-tabs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background: none;
    color: var(--text-medium);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

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

.product-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--bg-white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.product-card.hidden {
    display: none;
}

.product-banner {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.product-icon {
    font-size: 3rem;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.product-card:hover .product-icon {
    transform: scale(1.15) translateY(-5px);
}

.product-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-color);
    background-color: rgba(49, 130, 206, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-bottom: 0.6rem;
}

.product-body h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    transition: color 0.3s ease;
}

.product-card:hover .product-body h4 {
    color: var(--primary-color);
}

.product-subtitle {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-style: italic;
}

.product-desc {
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.product-features {
    display: none;
}

/* =====================
   Services Section (updated)
   ===================== */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card-new {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.service-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.service-icon-new {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.service-card-new:hover .service-icon-new {
    transform: scale(1.1) rotate(5deg);
}

.service-text h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.service-card-new:hover .service-text h4 {
    color: var(--primary-color);
}

.service-text > p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.service-text ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.service-text ul li {
    font-size: 0.85rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-text ul li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: 700;
    flex-shrink: 0;
}

.service-cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.service-cta-banner h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.25rem;
}

.service-cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.service-cta-banner .btn-primary {
    background-color: white;
    color: var(--primary-color);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.service-cta-banner .btn-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

/* Responsive – Products & Services */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .service-cta-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Expand Button & Dropdown */
.product-expand-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 0.75rem;
    margin: 0.75rem 0 0;
    background-color: rgba(49, 130, 206, 0.07);
    border: 1px solid rgba(49, 130, 206, 0.2);
    border-radius: var(--radius-sm);
    color: var(--accent-color);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
    text-align: left;
}

.product-expand-btn:hover {
    background-color: rgba(49, 130, 206, 0.14);
    border-color: var(--accent-color);
}

.product-expand-btn[aria-expanded="true"] {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.expand-chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.product-expand-btn[aria-expanded="true"] .expand-chevron {
    transform: rotate(180deg);
}

.product-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.3s ease;
    opacity: 0;
    margin-top: 0;
}

.product-dropdown.open {
    max-height: 400px;
    overflow-y: auto;
    opacity: 1;
    margin-top: 0.75rem;
}

.product-type-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    border: 1px solid var(--border-color);
}

.product-type-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background-color: var(--bg-white);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.75rem 0.5rem 0.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.product-type-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 2px 8px rgba(49,130,206,0.1);
}

.product-type-item img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    background-color: var(--bg-light);
}

.product-type-item div {
    flex: 1;
    min-width: 0;
}

.product-type-item strong {
    display: block;
    font-size: 0.82rem;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
    font-weight: 600;
}

.product-type-item p {
    font-size: 0.77rem;
    color: var(--text-medium);
    line-height: 1.4;
    margin: 0;
}

.type-dot {
    display: none;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float span {
    font-family: 'Inter', sans-serif;
}

@media (max-width: 576px) {
    .whatsapp-float span {
        display: none;
    }
    .whatsapp-float {
        border-radius: 50%;
        padding: 1rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--bg-white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-info-card strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-color);
    margin-bottom: 0.2rem;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
}

.contact-info-card p a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-card p a:hover {
    color: var(--accent-color);
}

/* Footer details */
.footer-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    color: #a0aec0;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
