:root {
    --primary: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #4CAF50;
    --dark: #121212;
    --dark-light: #1e1e1e;
    --text: #e0e0e0;
    --text-light: #ccc;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --border-radius: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--dark);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(to right, var(--dark-light), var(--dark));
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo span {
    color: var(--primary);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.call-button {
    padding: 10px 15px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
    white-space: nowrap;
}

.call-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 125, 50, 0.4);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.1rem;
    transition: all 0.3s;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.social-icons a:hover {
    color: white;
    background: var(--primary);
    transform: translateY(-2px);
}

/* Navigation */
nav {
    padding: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    padding: 15px 0;
    position: relative;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(18, 18, 18, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: translateZ(0);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 0;
}

.hero-text {
    max-width: 600px;
    background: rgba(18, 18, 18, 0.85);
    padding: 40px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 8px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
    flex: 1;
    min-width: 160px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.4);
}

.btn-secondary {
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 8px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1rem;
    text-align: center;
    border: 2px solid var(--primary);
    cursor: pointer;
    flex: 1;
    min-width: 160px;
}

.btn-secondary:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.4);
}

.hero-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 3;
}

/* Sections */
section {
    padding: 60px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-alt {
    background: var(--dark-light);
}

/* Pricing Tables */
.pricing-table-container {
    margin-bottom: 40px;
}

.pricing-subtitle {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    justify-content: center;
}

.pricing-category {
    color: var(--text-light);
    margin: 25px 0 15px 0;
    font-size: 1.1rem;
    font-weight: 600;
    padding-left: 10px;
    border-left: 3px solid var(--primary);
}

.pricing-table {
    background: var(--dark);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row.header {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

.pricing-row:not(.header):hover {
    background: rgba(255, 255, 255, 0.03);
}

.pricing-col {
    padding: 15px 20px;
    flex: 1;
}

.pricing-col.service {
    flex: 2;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-col.price {
    text-align: right;
    font-weight: 600;
    color: var(--primary-light);
}

.pricing-info {
    background: rgba(46, 125, 50, 0.1);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-top: 15px;
    border-left: 4px solid var(--primary);
}

.pricing-info p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-info i {
    color: var(--primary);
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-card {
    background: var(--dark);
    padding: 30px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card i {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 2.5rem;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--white);
    font-size: 1.3rem;
}

.feature-card p {
    margin: 0;
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.2);
    border-color: var(--primary);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 40px;
    font-weight: 600;
    box-shadow: var(--shadow);
    font-size: 1.1rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.highlight-box i {
    font-size: 1.5rem;
}

/* Pricing Cards */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.price-card {
    background: var(--dark);
    padding: 30px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.price-card h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    text-align: center;
}

.price-card ul {
    color: var(--text-light);
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.price-card li {
    margin-bottom: 12px;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-card li:last-child {
    border-bottom: none;
}

.price-card li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.price-note {
    margin-top: 25px;
    color: var(--primary);
    font-style: italic;
    text-align: center;
    font-size: 0.9rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    height: 180px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-direction: column;
    transition: all 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--primary);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary);
    z-index: 1;
}

.gallery-item span {
    z-index: 1;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-form {
    background: var(--dark);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form label {
    color: var(--text-light);
    display: block;
    margin-top: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-top: 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s;
    font-size: 1rem;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

.contact-form button {
    padding: 15px 25px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 25px;
    font-weight: 600;
    width: 100%;
    font-size: 1rem;
}

.contact-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(46, 125, 50, 0.4);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: fit-content;
}

.map-wrapper {
    width: 100%;
    height: 300px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info {
    padding: 25px;
    background: var(--dark);
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.contact-info p {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

/* Footer */
footer {
    background: var(--dark-light);
    color: var(--text-light);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-about p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .header-top {
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
        padding: 10px 0;
    }
    
    .header-contact {
        flex-direction: row;
        gap: 10px;
        width: auto;
    }
    
    .social-icons {
        display: none; /* Hide social icons on mobile */
    }
    
    .call-button {
        width: auto;
        justify-content: center;
        padding: 10px 15px;
    }
    
    .call-text {
        display: inline; /* Show text on mobile */
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--dark-light);
        width: 100%;
        text-align: center;
        padding: 0;
        box-shadow: var(--shadow);
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .nav-links a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero-text {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-badge {
        top: 20px;
        right: 20px;
        font-size: 0.8rem;
        padding: 8px 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .features-grid, .pricing-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card, .price-card {
        padding: 25px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gallery-item {
        height: 150px;
    }
    
    .highlight-box {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Pricing table responsive */
    .pricing-row {
        flex-direction: column;
    }
    
    .pricing-col.service {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .pricing-col.price {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 1.7rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 140px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .contact-info {
        padding: 20px 15px;
    }
    
    .map-wrapper {
        height: 250px;
    }
    
    /* Keep call text visible on mobile */
    .call-text {
        display: inline !important;
    }
    
    .call-button {
        width: auto;
        padding: 10px 15px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .price-card:hover,
    .gallery-item:hover,
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
    }
    
    .feature-card:active,
    .price-card:active,
    .gallery-item:active {
        transform: scale(0.98);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text: #ffffff;
        --text-light: #f0f0f0;
        --dark: #000000;
        --dark-light: #1a1a1a;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}