/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0d7377;
    --secondary-color: #14a098;
    --accent-color: #32e0c4;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --text-color: #2c3e50;
    --border-color: #dee2e6;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

h4 {
    font-size: 1.2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

p {
    margin-bottom: 1rem;
}


/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-bar {
    background: var(--dark-color);
    padding: 8px 0;
    font-size: 0.85rem;
}

.contact-bar {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    color: white;
}

.contact-bar span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 120px 0 80px;
    color: white;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 50px 50px;
}

.hero-text {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.cta-btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: white;
    color: var(--primary-color);
}

.cta-btn.primary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-btn.secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.alt-bg {
    background: var(--light-color);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-desc {
    font-size: 1.1rem;
    color: #666;
    margin-top: 1rem;
}

/* About Preview */
.about-preview {
    background: white;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.column {
    display: flex;
    flex-direction: column;
}

.lead-text {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.7;
}

.text-link {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
}

.text-link:hover {
    color: var(--secondary-color);
}

/* Services Section */
.services-section {
    background: white;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-box {
    background: white;
    padding: 2.5rem 2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(13, 115, 119, 0.15);
    transform: translateY(-5px);
}

.service-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.service-box h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-box p {
    color: #666;
    line-height: 1.7;
}

/* Categories Preview */
.categories-preview {
    background: var(--light-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.category-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.category-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-item h4 {
    color: var(--dark-color);
    font-size: 1.1rem;
}

.center-btn {
    text-align: center;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* About Content */
.about-content {
    background: white;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.text-content {
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.feature-box p {
    color: #666;
    margin-bottom: 0;
}

/* Services Detailed */
.services-detailed {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.service-number-large {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    min-width: 80px;
}

.service-text h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Products Showcase */
.products-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.product-card-large {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.product-card-large:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.product-card-large h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.product-card-large p {
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: white;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 3rem;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.cta-box h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-cards-centered {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-card {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    gap: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.info-icon {
    font-size: 2.5rem;
    min-width: 50px;
}

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.info-content p {
    color: #666;
    margin-bottom: 0.3rem;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.small-text {
    font-size: 0.9rem;
    color: #999;
}

.business-hours-centered {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.business-hours-centered h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    text-align: center;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: #666;
}

.hours-item:last-child {
    border-bottom: none;
}

/* Contact Form */
.form-container {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 8px;
}

.form-container h2 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.form-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.full-width {
    width: 100%;
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: white;
}

.map-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.map-content p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-col a {
    color: var(--accent-color);
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-showcase {
        grid-cards-centeredte-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .contact-bar {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-btn {
        width: 100%;
        text-align: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
