:root {
    --primary-blue: #004B87;
    --primary-green: #5B8A3A;
    --light-green: #6B9B4A;
    --dark-blue: #003366;
    --white: #FFFFFF;
    --light-blue-bg: #F0F7FB;
    --gray-light: #F5F5F5;
    --gray-medium: #E0E0E0;
    --gray-dark: #333333;
    --text-primary: #212121;
    --text-secondary: #666666;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-blue-bg);
    margin: 0;
    padding: 0;
}

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

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    right: -100px;
    bottom: 0;
    background: var(--white);
    z-index: -1;
}

.navbar {
    padding: 0.5rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.logo img {
    height: 150px;
    width: auto;
}

.logo-tagline {
    color: #5B8A3A;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-top: -30px;
    text-align: center;
    white-space: nowrap;
    display: block;
    position: relative;
    z-index: 10;
}

.tm-symbol {
    position: absolute;
    top: 62%;
    right: 18px;
    font-size: 8px;
    color: #5B8A3A;
    font-weight: normal;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

.nav-menu .btn-primary {
    background: rgba(91, 138, 58, 0.9);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(91, 138, 58, 0.3);
}

.nav-menu .btn-primary:hover {
    background: rgba(91, 138, 58, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(91, 138, 58, 0.4);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    margin-top: 160px;
    overflow: hidden;
    background: var(--light-blue-bg);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?q=80&w=2070');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(240, 247, 251, 0.95) 0%, 
        rgba(240, 247, 251, 0.85) 50%, 
        rgba(0, 75, 135, 0.1) 100%);
}

.hero-content {
    padding: 4rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    white-space: nowrap;
}

.hero h1 .highlight {
    color: var(--primary-green);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.price-guarantee {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem 3rem;
    display: inline-block;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.guarantee-badge {
    color: var(--primary-green);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.price-guarantee p {
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin: 0;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary {
    background: rgba(91, 138, 58, 0.8);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(91, 138, 58, 0.3);
}

.btn-primary:hover {
    background: rgba(91, 138, 58, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 138, 58, 0.4);
}

.btn-secondary {
    background: rgba(91, 138, 58, 0.8);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(91, 138, 58, 0.3);
}

.btn-secondary:hover {
    background: rgba(91, 138, 58, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 138, 58, 0.4);
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.learn-more {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.learn-more:hover {
    color: var(--primary-blue);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
}

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

.why-choose-us h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

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

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

.check-icon {
    background: var(--primary-green);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.stars {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background: var(--primary-blue);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn-primary {
    background: var(--primary-green);
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 115px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        box-shadow: var(--shadow);
        transition: 0.3s;
        padding: 2rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        white-space: normal;
        line-height: 1.3;
    }
    
    .hero h1 .highlight {
        display: block;
        margin-top: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .price-guarantee {
        padding: 1.5rem 1.5rem;
        margin: 1.5rem 1rem;
        width: calc(100% - 2rem);
        max-width: 350px;
    }
    
    .guarantee-badge {
        font-size: 0.8rem;
    }
    
    .price-guarantee p {
        font-size: 1.1rem;
    }
    
    .logo img {
        height: 100px;
    }
    
    .logo-tagline {
        font-size: 8px;
        margin-top: -20px;
    }
    
    .tm-symbol {
        top: 62%;
        right: 12px;
        font-size: 6px;
    }
    
    .hero {
        margin-top: 115px;
        min-height: 600px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .image-content {
        order: -1;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Services Page Specific Styles */
.page-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4rem 0;
    margin-top: 160px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-detail {
    padding: 5rem 0;
}

.service-detail:nth-child(even) {
    background: var(--white);
}

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

.service-detail:nth-child(even) .service-content {
    direction: rtl;
}

.service-detail:nth-child(even) .service-text {
    direction: ltr;
}

.service-detail h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-detail h3 {
    color: var(--primary-green);
    margin: 1.5rem 0 1rem;
}

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

.service-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.service-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Portfolio Page Styles */
.portfolio-notice {
    padding: 5rem 0;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-notice .notice-content {
    max-width: 600px;
}

.portfolio-notice h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.portfolio-notice p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
}

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

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-medium);
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

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

.form-submit {
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.form-submit:hover {
    background: var(--light-green);
}

.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info h2 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.info-item p,
.info-item a {
    color: var(--text-secondary);
    text-decoration: none;
}

.info-item a:hover {
    color: var(--primary-blue);
}

.service-area {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: var(--shadow);
}

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

.area-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.area-tag {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .area-list {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-detail:nth-child(even) .service-content {
        direction: ltr;
    }
}