/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=PT+Serif:wght@400;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation classes */
.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-delay-1 {
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
    opacity: 0;
}

/* Pause animations initially */
.fade-in,
.fade-in-delay-1,
.fade-in-delay-2,
.fade-in-delay-3 {
    animation-play-state: paused;
}

body {
    font-family: 'Lora', serif;
    background-color: #F5F5DC;
    color: #1E3932;
    line-height: 1.6;
}

/* Header Styling */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1E3932;
    padding: 15px 50px;
    color: white;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 24px;
    margin: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: #C9A227;
    border-radius: 5px;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

/* Hero Section */
.hero {
    background: url('images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 80vh;
    padding: 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 57, 50, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.overlay-box {
    background: rgba(30, 57, 50, 0.85);
    color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    width: 90%;
    max-width: 600px;
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.overlay-box h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.overlay-box p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #C9A227;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.cta:hover {
    background: #A88F1A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

/* Services Section */
.services {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #1E3932 0%, #2a4a3d 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(201, 162, 39, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 70%),
        linear-gradient(45deg, 
            transparent 25%, 
            rgba(201, 162, 39, 0.02) 25%, 
            rgba(201, 162, 39, 0.02) 50%, 
            transparent 50%, 
            transparent 75%, 
            rgba(201, 162, 39, 0.02) 75%
        );
    background-size: 120px 120px;
    pointer-events: none;
}

.block-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1E3932;
    position: relative;
    z-index: 1;
}

.services .block-title {
    color: white;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service {
    background: #F5F5DC;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.service h3 {
    margin: 15px 0;
    color: #1E3932;
    font-size: 1.4rem;
}

.service p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #C9A227;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.button:hover {
    background: #A88F1A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.3);
}

/* Benefits Section */
.benefits {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #1E3932 0%, #2a4a3d 100%);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 40% 60%, rgba(201, 162, 39, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 70%),
        linear-gradient(45deg, 
            transparent 25%, 
            rgba(201, 162, 39, 0.02) 25%, 
            rgba(201, 162, 39, 0.02) 50%, 
            transparent 50%, 
            transparent 75%, 
            rgba(201, 162, 39, 0.02) 75%
        );
    background-size: 80px 80px;
    pointer-events: none;
}

.benefits .block-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: white;
    position: relative;
    z-index: 1;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefit {
    background: #F5F5DC;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit img {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto 20px;
}

.benefit h3 {
    margin: 10px 0;
    color: #1E3932;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: #1E3932;
    color: white;
    padding: 50px 20px 20px;
    text-align: left;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #C9A227;
}

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

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #C9A227;
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

/* Container for content pages */
.container {
    padding: 0 50px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Contact page specific spacing */
.contact-content {
    margin-top: 40px;
}

.container h2 {
    color: #1E3932;
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.container h3 {
    color: #1E3932;
    margin: 30px 0 15px;
    font-size: 1.6rem;
}

.container p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.container ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .header {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #1E3932;
        padding: 120px 20px 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        z-index: 1001;
    }

    .nav-links li {
        padding: 8px 0;
        text-align: center;
        width: 100%;
    }

    .nav-links li a {
        font-size: 20px;
        font-weight: bold;
        display: block;
        padding: 12px;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }

    .nav-links li a:hover {
        background-color: rgba(201, 162, 39, 0.2);
    }

    .hero {
        height: 60vh;
        padding: 15px;
    }

    .overlay-box {
        padding: 30px 25px;
        width: 92%;
        margin: 0 auto;
    }

    .overlay-box h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .overlay-box p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .services, .benefits {
        padding: 40px 20px;
    }

    .block-title {
        font-size: 2rem;
    }

    .container {
        padding: 30px 20px;
    }

    .container h2 {
        font-size: 1.8rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2 {
    color: #1E3932;
    margin-bottom: 15px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    flex-shrink: 0;
}

.contact-item h4 {
    margin: 0 0 5px 0;
    color: #1E3932;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
    line-height: 1.4;
}

.contact-item a {
    color: #C9A227;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #1E3932;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #1E3932;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C9A227;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
    transform: scale(1.02);
}

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

.submit-btn {
    background: #C9A227;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #A88F1A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.3);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 18px;
    }

    .hero {
        height: 50vh;
        padding: 10px;
    }

    .overlay-box {
        padding: 18px 15px;
        width: 90%;
    }

    .overlay-box h1 {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .overlay-box p {
        font-size: 0.8rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .service-container {
        grid-template-columns: 1fr;
    }

    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-icon {
        align-self: flex-start;
    }
}

/* Thank You Page Styles */
.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.thank-you-content h1 {
    color: #1E3932;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.success-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.next-steps, .contact-info-summary {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: left;
}

.next-steps h3, .contact-info-summary h3 {
    color: #1E3932;
    margin-bottom: 20px;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps ul li {
    padding: 10px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}

.next-steps ul li:last-child {
    border-bottom: none;
}

.contact-info-summary {
    text-align: center;
}

.contact-info-summary p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.contact-info-summary a {
    color: #C9A227;
    text-decoration: none;
    font-weight: bold;
}

.contact-info-summary a:hover {
    text-decoration: underline;
}

.return-home {
    margin-top: 40px;
}

.return-home .button {
    background: #f8f9fa;
    color: #1E3932;
    border: 2px solid #1E3932;
}

.return-home .button:hover {
    background: #1E3932;
    color: white;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #F5F5DC 0%, #ffffff 100%);
    padding: 60px 50px;
    position: relative;
    text-align: center;
}

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

.hero-content h1 {
    font-size: 3rem;
    color: #1E3932;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #C9A227;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1E3932;
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #C9A227, #1E3932);
    margin: 0 auto;
    border-radius: 2px;
}

/* Mission Section */
.mission-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1E3932 0%, #2a4a3d 100%);
    position: relative;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(201, 162, 39, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.mission-section .section-header h2 {
    color: white;
}

.mission-section .section-divider {
    background: linear-gradient(90deg, #C9A227, white);
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    text-align: left;
}

.mission-text .lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 25px;
    font-weight: 500;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.mission-visual {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    border: 3px solid #C9A227;
    backdrop-filter: blur(5px);
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.mission-visual h4 {
    color: #C9A227;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.mission-visual p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Approach Section */
.approach-section {
    padding: 60px 0;
    background: #F5F5DC;
}

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

.approach-item {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.approach-icon {
    font-size: 3rem;
    margin-bottom: 25px;
}

.approach-item h4 {
    color: #1E3932;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.approach-item p {
    color: #666;
    line-height: 1.6;
}

/* Expertise Section */
.expertise-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1E3932 0%, #2a4a3d 100%);
    position: relative;
}

.expertise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(201, 162, 39, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.expertise-section .section-header h2 {
    color: white;
}

.expertise-section .section-divider {
    background: linear-gradient(90deg, #C9A227, white);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.expertise-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #C9A227;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-left-color: #1E3932;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.expertise-card h4 {
    color: #1E3932;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.expertise-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-list li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.expertise-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C9A227;
    font-weight: bold;
}

/* Values Section */
.values-section {
    padding: 60px 0;
    background: #F5F5DC;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #C9A227;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-left-color: #1E3932;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.value-item h4 {
    color: #1E3932;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.about-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #1E3932 0%, #2a4a3d 100%);
    text-align: center;
    position: relative;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 40% 60%, rgba(201, 162, 39, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-primary {
    background: #C9A227;
    color: white;
}

.cta-primary:hover {
    background: #A88F1A;
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: #1E3932;
    border: 2px solid #1E3932;
}

.cta-secondary:hover {
    background: #1E3932;
    color: white;
}

/* About Page Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 250px;
    }
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #F5F5DC 0%, #ffffff 100%);
    padding: 60px 0;
    position: relative;
    text-align: center;
}

.services-hero .hero-content h1 {
    font-size: 3rem;
    color: #1E3932;
    margin-bottom: 20px;
    font-weight: bold;
}

.services-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #C9A227;
    margin-bottom: 15px;
    font-weight: 600;
}

.services-hero .hero-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1E3932 0%, #2a4a3d 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(201, 162, 39, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.services-cta {
    padding: 60px 0;
    background: #F5F5DC;
    text-align: center;
}

.services-cta .cta-content h3 {
    color: #1E3932;
}

.services-cta .cta-content p {
    color: #333;
}

.service-detail {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-header .service-icon {
    font-size: 2.5rem;
}

.service-header h3 {
    margin: 0;
    color: #1E3932;
    font-size: 1.5rem;
}

.service-detail p {
    margin-bottom: 20px;
    color: #333;
    line-height: 1.6;
}

.service-detail ul {
    list-style: none;
    padding: 0;
}

.service-detail ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.service-detail ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C9A227;
    font-weight: bold;
}

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

.cta-section {
    text-align: center;
    margin: 60px 0 40px;
    padding: 40px;
    background: #f8f8f8;
    border-radius: 12px;
}

.cta-section h3 {
    color: #1E3932;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.cta-section p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #C9A227;
}

.social-icon {
    font-size: 1.2rem;
}

.social-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.linkedin:hover {
    border-color: #0077b5;
}

.instagram:hover {
    border-color: #e4405f;
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
    background: linear-gradient(135deg, #1E3932 0%, #2a4a3d 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(201, 162, 39, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 70%),
        linear-gradient(45deg, 
            transparent 25%, 
            rgba(201, 162, 39, 0.02) 25%, 
            rgba(201, 162, 39, 0.02) 50%, 
            transparent 50%, 
            transparent 75%, 
            rgba(201, 162, 39, 0.02) 75%
        );
    background-size: 100px 100px;
    pointer-events: none;
}

.gallery .container {
    max-width: 1400px;
}

.gallery .block-title {
    color: white;
    position: relative;
    z-index: 1;
    text-align: center;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background: white;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent 10%, rgba(30, 57, 50, 0.85) 40%, rgba(30, 57, 50, 0.95) 100%);
    color: white;
    padding: 50px 20px 25px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(3px);
    min-height: 120px;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-content h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #C9A227;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-content p {
    font-size: 1rem;
    margin: 0 0 10px 0;
    opacity: 0.95;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.click-hint {
    font-size: 0.9rem;
    color: #C9A227;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-item {
    cursor: pointer;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
    padding: 20px;
    background: white;
    text-align: center;
}

.lightbox-caption h3 {
    margin: 0;
    color: #1E3932;
    font-size: 1.4rem;
}

/* Lightbox responsive */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .close-btn {
        top: 10px;
        right: 15px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
    
    .lightbox-caption {
        padding: 15px;
    }
    
    .lightbox-caption h3 {
        font-size: 1.2rem;
    }
}

/* Gallery responsive design */
@media (max-width: 1200px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 50px 20px;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        padding: 15px 0;
    }
    
    .gallery-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .gallery-item {
        max-width: 350px;
        margin: 0 auto;
    }
}

/* Team Page Styles */
.team-hero {
    background: linear-gradient(135deg, #F5F5DC 0%, #ffffff 100%);
    padding: 60px 0;
    position: relative;
    text-align: center;
}

.team-hero .hero-content h1 {
    font-size: 3rem;
    color: #1E3932;
    margin-bottom: 20px;
    font-weight: bold;
}

.team-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #C9A227;
    margin-bottom: 15px;
    font-weight: 600;
}

.team-hero .hero-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1E3932 0%, #2a4a3d 100%);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(201, 162, 39, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-img {
    height: 220px;
    background-color: white;
    overflow: hidden;
    padding: 15px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #1E3932;
}

.team-role {
    font-size: 1rem;
    color: #C9A227;
    margin-bottom: 15px;
    font-weight: 600;
}

.team-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.expertise-tag {
    background: #f8f9fa;
    color: #1E3932;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #e9ecef;
}

.team-cta {
    padding: 60px 0;
    background: #F5F5DC;
    text-align: center;
}

.team-cta .cta-content h3 {
    font-size: 2.2rem;
    color: #1E3932;
    margin-bottom: 20px;
}

.team-cta .cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-detail {
        padding: 20px;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .social-icons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        justify-content: center;
        min-width: 120px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .team-section, .services-section {
        padding: 50px 20px;
    }
    
    .team-hero, .services-hero {
        padding: 50px 20px;
    }
}