:root {
    /* Pestaly Brand Colors */
    --color-primary: #031d2a;
    --color-secondary: #4d8a81;
    --color-background: #f8f4ef;
    --color-text: #031d2a;
    --color-white: #ffffff;
    --color-light-gray: #f5f5f5;
    --color-border: #e0e0e0;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    --font-size-xxl: 32px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Shadows */
    --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.15);
}

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

html, body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-primary);
}

h1 {
    font-size: var(--font-size-xxl);
    margin-bottom: 1rem;
}

h2 {
    font-size: 28px;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 22px;
    margin-bottom: 1rem;
}

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

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #3d7a71;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 18px;
}

/* Header */
.header-area {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.75rem 0;
    font-size: 14px;
}

.header-middle {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.header-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header-nav {
    flex: 1;
    margin-left: 2rem;
}

.main-menu ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-menu a {
    color: var(--color-primary);
    font-weight: 500;
}

.main-menu a:hover {
    color: var(--color-secondary);
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 200;
}

.position-static:hover .mega-menu {
    display: grid;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: 4rem 0;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

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

.hero-buttons .btn {
    padding: 0.875rem 2rem;
}

.hero-buttons .btn-primary {
    background-color: var(--color-white);
    color: var(--color-secondary);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--color-background);
}

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

.stat {
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.section-title {
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 18px;
    color: #777;
    margin-bottom: 2rem;
}

.service-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #3d7a71 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 40px;
    color: var(--color-white);
}

.service-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
    flex-grow: 1;
}

.service-list li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid var(--color-border);
}

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

/* Why Pestaly Section */
.why-pestaly {
    background-color: var(--color-background);
    padding: 5rem 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(77, 138, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-secondary);
}

.feature-content h4 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--color-white);
    font-size: 36px;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
}

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

.cta-section .btn-primary {
    background-color: var(--color-white);
    color: var(--color-secondary);
}

.cta-section .btn-primary:hover {
    background-color: var(--color-background);
}

.cta-section .btn-outline-primary {
    border-color: var(--color-white);
    color: var(--color-white);
}

.cta-section .btn-outline-primary:hover {
    background-color: var(--color-white);
    color: var(--color-secondary);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--color-background);
    padding: 5rem 0;
}

.testimonial-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 18px;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--color-primary);
}

.testimonial-author span {
    font-size: 13px;
    color: #999;
}

/* Franchise Section */
.franchise-section {
    background-color: var(--color-white);
    padding: 5rem 0;
}

.franchise-benefits {
    margin-top: 2rem;
}

.franchise-benefits li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
}

.franchise-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.franchise-benefits i {
    color: var(--color-secondary);
}

/* Footer */
.footer-container {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

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

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-box {
    background: var(--color-primary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-top: 2rem;
    border: 1px solid rgba(77, 138, 129, 0.2);
}

.contact-box .white {
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.tel {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    font-weight: 700;
    font-size: 18px;
    margin: 1rem 0;
}

.social-list {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.social-list li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(77, 138, 129, 0.2);
    transition: all 0.3s ease;
}

.social-list li a:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --font-size-base: 14px;
        --font-size-xl: 20px;
        --font-size-xxl: 28px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .main-menu ul {
        gap: 1rem;
    }
    
    .header-right {
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .footer-list {
        column-count: 1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-item {
        gap: 1rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
}

/* Utility Classes */
.min-vh-100 {
    min-height: 100vh;
}

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

.align-items-center {
    align-items: center;
}

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

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.me-3 {
    margin-right: 1rem;
}

.w-100 {
    width: 100%;
}

.bg-light {
    background-color: var(--color-background);
}

.white {
    color: var(--color-white);
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.px-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.5rem;
    margin-left: -0.5rem;
}

.col-md-4,
.col-lg-4,
.col-lg-6,
.col-lg-8 {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.col-md-4 {
    flex: 0 0 calc(33.33% - 1rem);
}

.col-lg-4 {
    flex: 0 0 calc(33.33% - 1rem);
}

.col-lg-6 {
    flex: 0 0 calc(50% - 1rem);
}

.col-lg-8 {
    flex: 0 0 calc(66.66% - 1rem);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.g-4 {
    gap: 2rem;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
