/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(5, 50, 37, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #E34A6F;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.nav-link {
    text-decoration: none;
    color: #B2A198;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.nav-link:hover {
    color: #60A561;
    background: rgba(96, 165, 97, 0.08);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60A561, #053225);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border: none;
    background: none;
    gap: 4px;
}

.bar {
    width: 24px;
    height: 2px;
    background: #E34A6F;
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #E34A6F 0%, #F7B2BD 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E34A6F 0%, #F7B2BD 100%);
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(227, 74, 111, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #60A561 0%, #053225 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(96, 165, 97, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(96, 165, 97, 0.4);
    background: linear-gradient(90deg, #053225 0%, #60A561 100%);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E34A6F;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #B2A198;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about {
    background: #f8f9fa;
}

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

.about-text p {
    font-size: 1.1rem;
    color: #053225;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #60A561;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #B2A198;
    font-weight: 500;
}



/* Projects Section */
.projects {
    background: #f8f9fa;
}

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

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

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #E34A6F;
    margin-bottom: 0.5rem;
}

.project-content p {
    color: #B2A198;
    line-height: 1.6;
}

/* Projects View All Button */
.projects-view-all {
    text-align: center;
    margin-top: 48px;
}

.projects-view-all .cta-button {
    background: linear-gradient(135deg, #60A561 0%, #4a8c4a 100%);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(96, 165, 97, 0.3);
}

.projects-view-all .cta-button:hover {
    background: linear-gradient(135deg, #4a8c4a 0%, #60A561 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 165, 97, 0.4);
}

/* Contact Section */
.contact {
    background: white;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #60A561, #053225);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #E34A6F;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: #B2A198;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 18px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #60A561;
}

.submit-btn {
    background: linear-gradient(90deg, #E34A6F 0%, #F7B2BD 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(90deg, #F7B2BD 0%, #E34A6F 100%);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #E34A6F;
    color: white;
    padding: 3rem 0 1rem 0;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFF8DC;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(96, 165, 97, 0.8);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vm-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-view-all {
        margin-top: 48px;
    }
    
    .projects-view-all .cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .language-selector {
        display: none; /* Hide desktop language selector on mobile */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 30px 20px;
    }
    
    .projects-view-all .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }


}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background: linear-gradient(135deg, #053225 0%, #60A561 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide.active {
    opacity: 1;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 50, 37, 0.4);
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.slider-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slider-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.slider-content .cta-button {
    background: linear-gradient(90deg, #E34A6F 0%, #F7B2BD 100%);
    box-shadow: 0 4px 15px rgba(227, 74, 111, 0.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(227, 74, 111, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left { left: 32px; }
.slider-arrow-right { right: 32px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: #E34A6F;
    border-color: white;
    transform: scale(1.2);
}

@media (max-width: 900px) {
    .slider-content {
        max-width: 600px;
    }
    .slider-title {
        font-size: 2.5rem;
    }
    .slider-subtitle {
        font-size: 1.1rem;
    }
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .slider-content {
        max-width: 400px;
        padding: 0 15px;
    }
    .slider-title {
        font-size: 2rem;
    }
    .slider-subtitle {
        font-size: 1rem;
    }
    .slider-arrow-left { left: 10px; }
    .slider-arrow-right { right: 10px; }
}

/* Creative Hero Slider */
.creative-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #053225 0%, #60A561 100%);
}

.creative-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #053225 0%, #60A561 100%);
}

.creative-slide.active {
    opacity: 1;
}

.slider-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #053225 0%, #60A561 100%);
    z-index: 1;
}

.slider-svg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: decorFloat 20s ease-in-out infinite;
}

@keyframes decorFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.creative-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    animation: creativeFadeIn 1s ease-out;
}

@keyframes creativeFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.slider-badge {
    display: inline-block;
    background: linear-gradient(90deg, #E34A6F 0%, #F7B2BD 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: badgePop 0.6s ease-out 0.3s both;
}

@keyframes badgePop {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.creative-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: creativeTitleIn 0.8s ease-out 0.5s both;
}

@keyframes creativeTitleIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.creative-title .highlight {
    background: linear-gradient(90deg, #E34A6F 0%, #F7B2BD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 5px;
}

.creative-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: creativeSubtitleIn 0.8s ease-out 0.7s both;
}

@keyframes creativeSubtitleIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.creative-btn {
    background: linear-gradient(90deg, #E34A6F 0%, #F7B2BD 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 74, 111, 0.3);
    border: none;
    cursor: pointer;
    animation: creativeBtnIn 0.8s ease-out 0.9s both;
}

.creative-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 74, 111, 0.4);
}

@keyframes creativeBtnIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Theme variations */
.creative-slide[data-theme="blue"] .slider-badge { background: linear-gradient(90deg, #053225 0%, #60A561 100%); }
.creative-slide[data-theme="dark"] .slider-badge { background: linear-gradient(90deg, #E34A6F 0%, #F7B2BD 100%); }
.creative-slide[data-theme="light"] .slider-badge { background: linear-gradient(90deg, #60A561 0%, #F7B2BD 100%); color: #053225; }

.creative-slide[data-theme="blue"] .highlight { background: linear-gradient(90deg, #60A561 0%, #053225 100%); }
.creative-slide[data-theme="dark"] .highlight { background: linear-gradient(90deg, #E34A6F 0%, #F7B2BD 100%); }
.creative-slide[data-theme="light"] .highlight { background: linear-gradient(90deg, #F7B2BD 0%, #60A561 100%); }

/* Creative slider arrows */
.creative-hero-slider .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.creative-hero-slider .slider-arrow:hover {
    background: rgba(227, 74, 111, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.creative-hero-slider .slider-arrow-left { left: 32px; }
.creative-hero-slider .slider-arrow-right { right: 32px; }

.creative-hero-slider .slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.creative-hero-slider .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.creative-hero-slider .slider-dot.active {
    background: #E34A6F;
    border-color: white;
    transform: scale(1.2);
}

@media (max-width: 900px) {
    .creative-content {
        max-width: 600px;
    }
    .creative-title {
        font-size: 2.5rem;
    }
    .creative-subtitle {
        font-size: 1.1rem;
    }
    .creative-hero-slider .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .creative-content {
        max-width: 400px;
        padding: 0 15px;
    }
    .creative-title {
        font-size: 2rem;
    }
    .creative-subtitle {
        font-size: 1rem;
    }
    .creative-hero-slider .slider-arrow-left { left: 10px; }
    .creative-hero-slider .slider-arrow-right { right: 10px; }
}

/* Carousel Mode */
.carousel-mode {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #053225 0%, #60A561 100%);
    border-radius: 20px;
    margin: 2rem 0;
}

.slider-track {
    display: flex;
    gap: 20px;
    padding: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slider-track::-webkit-scrollbar { display: none; }

.slider-slide {
    flex: 0 0 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slider-slide:not(.active) {
    opacity: 0.7;
    transform: scale(0.95);
}

.slider-slide.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.slider-bg-layer, .slider-svg-decor {
    border-radius: 15px;
}

.creative-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(227, 74, 111, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left { left: 18px; }
.slider-arrow-right { right: 18px; }

@media (max-width: 1100px) {
    .carousel-mode { height: 340px; }
    .slider-slide { height: 300px; max-width: 260px; min-width: 180px; }
    .slider-arrow-left { left: -36px; }
    .slider-arrow-right { right: -36px; }
}

@media (max-width: 700px) {
    .carousel-mode { height: 220px; }
    .slider-slide { height: 180px; max-width: 98vw; min-width: 120px; border-radius: 18px; }
    .slider-bg-layer, .slider-svg-decor { border-radius: 18px; }
    .slider-arrow { width: 32px; height: 32px; font-size: 1rem; }
    .slider-arrow-left { left: -18px; }
    .slider-arrow-right { right: -18px; }
}

/* Image Carousel */
.carousel-mode {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #053225 0%, #60A561 100%);
    border-radius: 20px;
    margin: 2rem 0;
}

.slider-track {
    display: flex;
    gap: 20px;
    padding: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slider-slide {
    flex: 0 0 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.overlay-label {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.slider-label-box {
    background: linear-gradient(90deg, #E34A6F 0%, #F7B2BD 100%);
    color: white;
    padding: 10px 16px 8px 16px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-label-box strong {
    display: block;
    font-size: 1.1rem;
}

.overlay-btn {
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: linear-gradient(90deg, #053225 0%, #60A561 100%);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    z-index: 2;
}

.overlay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 50, 37, 0.3);
}

@media (max-width: 900px) {
    .slider-slide { height: 300px; max-width: 340px; min-width: 160px; border-radius: 14px; }
    .slider-image { min-height: 160px; max-height: 300px; border-radius: 14px; }
    .overlay-label { top: 10px; left: 10px; }
    .slider-label-box { padding: 8px 12px 6px 12px; border-radius: 7px; min-width: 100px; font-size: 0.95rem; }
    .overlay-btn { right: 10px; bottom: 10px; min-width: 90px; font-size: 1rem; border-radius: 7px; padding: 8px 0; }
}

@media (max-width: 700px) {
    .slider-slide { height: 180px; max-width: 98vw; min-width: 80px; border-radius: 7px; }
    .slider-image { min-height: 60px; max-height: 180px; border-radius: 7px; }
    .overlay-label { top: 4px; left: 4px; }
    .slider-label-box { padding: 4px 7px 3px 7px; border-radius: 4px; min-width: 60px; font-size: 0.8rem; }
    .overlay-btn { right: 4px; bottom: 4px; min-width: 60px; font-size: 0.8rem; border-radius: 4px; padding: 4px 0; }
}

/* Integrated Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    margin: 2rem 0;
}

.slider-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #053225 0%, #60A561 100%);
    z-index: 1;
}

.slider-integrated-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.slider-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
}

.slider-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.slider-label-box {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: linear-gradient(90deg, #E34A6F 0%, #F7B2BD 100%);
    color: white;
    padding: 12px 18px 10px 18px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.slider-main-image .cta-button {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(90deg, #053225 0%, #60A561 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    z-index: 3;
}

.slider-thumbnails {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-thumbnail {
    width: 60px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0.7;
}

.slider-thumbnail.active,
.slider-thumbnail:hover {
    opacity: 1;
    border-color: #E34A6F;
    transform: scale(1.1);
}

.slider-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(227, 74, 111, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left { left: 18px; }
.slider-arrow-right { right: 18px; }

@media (max-width: 900px) {
    .slider-integrated-container { width: 98vw; }
    .slider-main-image { height: 220px; }
    .slider-label-box { left: 10px; bottom: 10px; padding: 8px 12px 7px 12px; font-size: 0.95rem; min-width: 120px; }
    .slider-main-image .cta-button { right: 10px; bottom: 10px; min-width: 70px; font-size: 0.9rem; border-radius: 5px; padding: 6px 0; }
    .slider-thumbnails { gap: 8px; }
    .slider-thumbnail { width: 48px; height: 36px; }
    .slider-arrow { width: 36px; height: 36px; font-size: 1.1rem; }
    .slider-arrow-left { left: 4px; }
    .slider-arrow-right { right: 4px; }
}

/* ========================================
   About Page Styles
   ======================================== */
.about-container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 48px 16px 64px 16px; 
}

.about-title { 
    font-size: 2.8rem; 
    font-weight: 800; 
    color: #E34A6F; 
    margin-bottom: 18px; 
    letter-spacing: -2px; 
}

.about-lead { 
    color: #B2A198; 
    font-size: 1.18rem; 
    margin-bottom: 38px; 
}

.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 48px; 
    margin-bottom: 48px; 
}

.about-values { 
    background: #f8f9fa; 
    border-radius: var(--border-radius-xl); 
    box-shadow: var(--shadow-md); 
    padding: 38px 28px 32px 28px; 
}

.about-values-title { 
    font-size: 1.25rem; 
    font-weight: 700; 
    color: #E34A6F; 
    margin-bottom: 18px; 
}

.about-values-list { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

.about-values-list li { 
    margin-bottom: 14px; 
    color: #E34A6F; 
    font-size: 1.07rem; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.about-values-list i { 
    color: #E34A6F; 
    font-size: 1.1rem; 
}

.about-timeline { 
    background: #f8f9fa; 
    border-radius: var(--border-radius-xl); 
    box-shadow: var(--shadow-md); 
    padding: 38px 28px 32px 28px; 
}

.about-timeline-title { 
    font-size: 1.25rem; 
    font-weight: 700; 
    color: #E34A6F; 
    margin-bottom: 18px; 
}

.about-timeline-list { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    border-left: 3px solid #E34A6F; 
    margin-left: 12px; 
}

.about-timeline-list li { 
    margin-bottom: 18px; 
    padding-left: 18px; 
    position: relative; 
    color: #E34A6F; 
}

.about-timeline-list li:before { 
    content: ''; 
    position: absolute; 
    left: -10px; 
    top: 6px; 
    width: 12px; 
    height: 12px; 
    background: #E34A6F; 
    border-radius: 50%; 
    border: 2px solid #fff; 
    box-shadow: 0 0 0 2px #E34A6F; 
}

.about-mission-vision { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 32px; 
    margin: 48px 0; 
}

.mission-card, .vision-card { 
    background: linear-gradient(135deg, #E34A6F 0%, #F7B2BD 100%); 
    color: #fff; 
    border-radius: var(--border-radius-xl); 
    padding: 38px 28px; 
    text-align: center; 
    position: relative; 
    overflow: hidden; 
}

.mission-card::before, .vision-card::before { 
    content: ''; 
    position: absolute; 
    top: -50%; 
    left: -50%; 
    width: 200%; 
    height: 200%; 
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); 
    transform: rotate(45deg); 
}

.mission-card-icon, .vision-card-icon { 
    font-size: 3rem; 
    margin-bottom: 20px; 
    opacity: 0.9; 
    position: relative; 
    z-index: 2; 
}

.mission-card-title, .vision-card-title { 
    font-size: 1.5rem; 
    font-weight: 700; 
    margin-bottom: 16px; 
    position: relative; 
    z-index: 2; 
}

.mission-card-text, .vision-card-text { 
    font-size: 1.1rem; 
    line-height: 1.6; 
    opacity: 0.95; 
    position: relative; 
    z-index: 2; 
}

.about-team { 
    background: #f8f9fa; 
    border-radius: var(--border-radius-xl); 
    box-shadow: var(--shadow-md); 
    padding: 38px 28px 32px 28px; 
    margin-top: 32px; 
}

.about-team-title { 
    font-size: 1.18rem; 
    font-weight: 700; 
    color: #E34A6F; 
    margin-bottom: 18px; 
}

.about-team-list { 
    display: flex; 
    gap: 24px; 
    flex-wrap: wrap; 
}

.about-team-member { 
    text-align: center; 
}

.about-team-member-img { 
    width: 64px; 
    height: 64px; 
    border-radius: 50%; 
    object-fit: cover; 
    margin-bottom: 8px; 
    border: 2px solid #E34A6F; 
}

.about-team-member-name { 
    font-weight: 600; 
    color: #E34A6F; 
    font-size: 1.05rem; 
}

.about-team-member-role { 
    color: #B2A198; 
    font-size: 0.98rem; 
}

.about-cta { 
    background: linear-gradient(90deg, #E34A6F 0%, #F7B2BD 100%); 
    color: #fff; 
    border-radius: var(--border-radius-xl); 
    padding: 38px 28px 32px 28px; 
    text-align: center; 
    margin-top: 48px; 
}

.about-cta-title { 
    font-size: 1.4rem; 
    font-weight: 700; 
    margin-bottom: 12px; 
}

.about-cta-btn { 
    background: #fff; 
    color: #E34A6F; 
    border: none; 
    border-radius: var(--border-radius-md); 
    padding: 14px 38px; 
    font-size: 1.08rem; 
    font-weight: 700; 
    cursor: pointer; 
    margin-top: 18px; 
    transition: background 0.2s, color 0.2s; 
    text-decoration: none; 
    display: inline-block; 
}

.about-cta-btn:hover { 
    background: #E34A6F; 
    color: #fff; 
}

@media (max-width: 900px) {
    .about-grid { 
        grid-template-columns: 1fr; 
        gap: 18px; 
    }
    .about-mission-vision { 
        grid-template-columns: 1fr; 
        gap: 24px; 
        margin: 32px 0; 
    }
}

@media (max-width: 600px) {
    .about-container { 
        padding: 24px 4px 32px 4px; 
    }
    .about-title { 
        font-size: 1.5rem; 
    }
}

/* ========================================
   Services Page Styles
   ======================================== */
.services-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 48px 16px 64px 16px; 
}

.services-header-row { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 48px; 
    align-items: flex-start; 
    justify-content: space-between; 
    margin-bottom: 48px; 
}

.services-header-main { 
    flex: 2 1 400px; 
}

.services-title { 
    font-size: 2.6rem; 
    font-weight: 800; 
    color: #E34A6F; 
    margin-bottom: 18px; 
    letter-spacing: -1px; 
}

.services-desc { 
    color: #B2A198; 
    font-size: 1.18rem; 
    margin-bottom: 18px; 
}

.services-header-form { 
    flex: 1 1 320px; 
    background: #fff; 
    border-radius: 18px; 
    box-shadow: 0 2px 18px rgba(44,62,80,0.08); 
    padding: 32px 24px; 
    min-width: 260px; 
}

.services-header-form h3 { 
    font-size: 1.18rem; 
    color: #E34A6F; 
    font-weight: 700; 
    margin-bottom: 18px; 
}

.services-header-form input, .services-header-form textarea { 
    width: 100%; 
    padding: 10px 12px; 
    border-radius: 8px; 
    border: 1.5px solid #e0e0f0; 
    margin-bottom: 14px; 
    font-size: 1rem; 
    font-family: inherit; 
}

.services-header-form textarea { 
    min-height: 70px; 
    resize: vertical; 
}

.services-header-form button { 
    width: 100%; 
    background: linear-gradient(90deg, #E34A6F 0%, #F7B2BD 100%); 
    color: #fff; 
    border: none; 
    border-radius: 8px; 
    padding: 12px 0; 
    font-size: 1.08rem; 
    font-weight: 700; 
    cursor: pointer; 
    transition: background 0.2s; 
}

.services-header-form button:hover { 
    background: linear-gradient(90deg, #F7B2BD 0%, #E34A6F 100%); 
}

.services-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 32px; 
    margin-bottom: 48px; 
}

.service-card { 
    background: #fff; 
    border-radius: 18px; 
    box-shadow: 0 2px 18px rgba(44,62,80,0.08); 
    padding: 24px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: box-shadow 0.2s, transform 0.2s; 
    cursor: default; 
}

.service-card:hover { 
    box-shadow: 0 8px 32px rgba(44,62,80,0.13); 
    transform: translateY(-6px) scale(1.03); 
}

.service-card-icon { 
    background: #fef0f5; 
    color: #E34A6F; 
    border-radius: 50%; 
    width: 54px; 
    height: 54px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.7rem; 
    margin-bottom: 18px; 
    box-shadow: 0 1px 6px rgba(227,74,111,0.07); 
}

.service-card-title { 
    font-size: 1.18rem; 
    font-weight: 700; 
    color: #E34A6F; 
    margin-bottom: 10px; 
}

.service-card-desc { 
    color: #B2A198; 
    font-size: 1.01rem; 
    font-weight: 400; 
}

/* FAQ Accordion */
.faq-section { 
    max-width: 900px; 
    margin: 0 auto; 
}

.faq-accordion { 
    margin-top: 32px; 
}

.faq-item { 
    background: #fff; 
    border-radius: 8px; 
    margin-bottom: 10px; 
    box-shadow: 0 1px 6px rgba(44,62,80,0.06); 
    overflow: hidden; 
}

.faq-question { 
    cursor: pointer; 
    padding: 18px 24px; 
    font-size: 1.08rem; 
    font-weight: 600; 
    color: #E34A6F; 
    display: flex; 
    align-items: center; 
    border: none; 
    background: none; 
    width: 100%; 
    text-align: left; 
    transition: background 0.2s; 
}

.faq-question .faq-icon { 
    margin-right: 16px; 
    font-size: 1.2rem; 
    color: #E34A6F; 
    transition: transform 0.2s; 
}

.faq-item.active .faq-question { 
    background: #f0f8f0; 
}

.faq-item.active .faq-icon { 
    transform: rotate(45deg); 
}

.faq-answer { 
    padding: 0 24px 18px 56px; 
    color: #B2A198; 
    font-size: 1.01rem; 
    display: none; 
}

.faq-item.active .faq-answer { 
    display: block; 
}

@media (max-width: 900px) {
    .services-header-row { 
        flex-direction: column; 
        gap: 24px; 
    }
    .services-header-form { 
        width: 100%; 
        min-width: 0; 
    }
    .services-grid { 
        grid-template-columns: 1fr; 
        gap: 18px; 
    }
}

@media (max-width: 600px) {
    .services-container { 
        padding: 24px 4px 32px 4px; 
    }
    .services-title { 
        font-size: 1.3rem; 
    }
}

/* ========================================
   References Page Styles
   ======================================== */
.works-container { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 48px 16px 64px 16px; 
}

.works-title { 
    font-size: 3rem; 
    font-weight: 800; 
    color: #E34A6F; 
    margin-bottom: 10px; 
    letter-spacing: -2px; 
}

.works-desc { 
    color: #B2A198; 
    font-size: 1.18rem; 
    margin-bottom: 38px; 
}

.works-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 24px; 
}



.work-card { 
    background: #fff; 
    border-radius: 18px; 
    box-shadow: 0 2px 18px rgba(44,62,80,0.08); 
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: box-shadow 0.2s, transform 0.2s; 
    cursor: default; 
    padding: 30px; 
    min-height: 120px; 
}

.work-card:hover { 
    box-shadow: 0 8px 32px rgba(44,62,80,0.13); 
    transform: translateY(-6px) scale(1.03); 
}

.work-card-img { 
    width: 100%; 
    max-width: 150px; 
    height: auto; 
    object-fit: contain; 
    filter: grayscale(0%); 
    transition: all 0.3s ease; 
    opacity: 1 !important; 
    visibility: visible !important; 
}

.work-card:hover .work-card-img { 
    filter: grayscale(0%); 
    opacity: 1 !important; 
    transform: scale(1.1); 
}

.work-card-content { 
    display: none; 
}

.work-card-title { 
    display: none; 
}

.work-card-desc { 
    display: none; 
}

@media (max-width: 1100px) {
    .works-grid { 
        grid-template-columns: 1fr 1fr 1fr; 
        gap: 20px; 
    }
}

@media (max-width: 900px) {
    .works-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 18px; 
    }
    .works-title { 
        font-size: 2rem; 
    }
}

@media (max-width: 600px) {
    .works-grid { 
        grid-template-columns: 1fr; 
        gap: 16px; 
    }
    .works-container { 
        padding: 24px 4px 32px 4px; 
    }
}

/* ========================================
   Projects Page Styles
   ======================================== */
.portfolio-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 48px 16px 64px 16px; 
}

.portfolio-filters { 
    margin-bottom: 36px; 
}

.portfolio-filters-label { 
    color: #B2A198; 
    font-size: 1.08rem; 
    margin-bottom: 12px; 
    display: block; 
}

.portfolio-filter-tabs { 
    display: flex; 
    gap: 18px; 
    margin-bottom: 18px; 
    justify-content: flex-start; 
}

.portfolio-filter-tab {
    font-weight: 700;
    color: #E34A6F;
    font-size: 1.13rem;
    cursor: pointer;
    border: none;
    background: linear-gradient(90deg, #fef0f5 0%, #f8f9fa 100%);
    padding: 8px 28px 8px 18px;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 2px 8px rgba(44,62,80,0.06);
    margin-right: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative;
}

.portfolio-filter-tab i { 
    font-size: 1.1em; 
}

.portfolio-filter-tab.active {
    background: linear-gradient(90deg, #E34A6F 0%, #F7B2BD 100%);
    color: #fff;
    box-shadow: 0 4px 18px rgba(44,62,80,0.13);
    transform: scale(1.08);
    z-index: 2;
}

.portfolio-filter-btns { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 10px; 
    margin-bottom: 8px; 
}

.portfolio-filter-btn {
    background: linear-gradient(90deg, #fef0f5 0%, #f8f9fa 100%);
    color: #E34A6F;
    border: none;
    border-radius: 22px;
    padding: 8px 22px 8px 16px;
    font-size: 1.01rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 1px 6px rgba(44,62,80,0.06);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.portfolio-filter-btn i { 
    font-size: 1em; 
}

.portfolio-filter-btn.active, .portfolio-filter-btn:hover {
    background: linear-gradient(90deg, #E34A6F 0%, #F7B2BD 100%);
    color: #fff;
    box-shadow: 0 2px 12px rgba(44,62,80,0.13);
    transform: scale(1.07);
}

.portfolio-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 36px; 
}

.portfolio-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 2px 18px rgba(44,62,80,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
    border: 2.5px solid transparent;
}

.portfolio-card:hover {
    box-shadow: 0 8px 32px rgba(44,62,80,0.13);
    transform: translateY(-6px) scale(1.03);
    background: #fef0f5;
    border-color: #E34A6F;
}

.portfolio-card-img { 
    width: 100%; 
    aspect-ratio: 4/3; 
    object-fit: cover; 
}

.portfolio-card-content { 
    padding: 18px 18px 16px 18px; 
}

.portfolio-card-title { 
    font-size: 1.18rem; 
    font-weight: 700; 
    color: #E34A6F; 
    margin-bottom: 6px; 
}

.portfolio-card-desc { 
    color: #B2A198; 
    font-size: 1.01rem; 
    font-weight: 400; 
}

@media (max-width: 900px) {
    .portfolio-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 18px; 
    }
}

@media (max-width: 600px) {
    .portfolio-grid { 
        grid-template-columns: 1fr; 
        gap: 10px; 
    }
    .portfolio-container { 
        padding: 24px 4px 32px 4px; 
    }
}

/* ========================================
   Site-Fit Modern Slider
   ======================================== */
.sitefit-slider {
    position: relative;
    height: 90vh; /* 60vh'den 90vh'ye çıkarıldı (1.5x) */
    min-height: 600px; /* 400px'den 600px'e çıkarıldı (1.5x) */
    max-height: 900px; /* 600px'den 900px'e çıkarıldı (1.5x) */
    background: #000;
    overflow: hidden;
    z-index: 1;
}

.slider-sitefit-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-sitefit-main {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Slider Slide Stilleri */
.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.slider-slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.5s ease, opacity 1s ease;
    transform: scale(1.05);
    z-index: 1;
    position: relative;
}

@media (max-width: 768px) {
    .slider-bg-image {
        object-position: center;
        transform: scale(1.1);
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .slider-bg-image {
        object-position: center;
        transform: scale(1.15);
        object-fit: cover;
    }
}

@media (max-width: 380px) {
    .slider-bg-image {
        object-position: center;
        transform: scale(1.2);
        object-fit: cover;
    }
}

/* Mobil için ek optimizasyonlar */
@media (max-width: 768px) {
    .sitefit-slider {
        overflow: hidden;
    }
    
    .slider-sitefit-main {
        position: relative;
        overflow: hidden;
    }
    
    .slider-bg-image {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }
    
    /* Mobil için slider slide optimizasyonu */
    .slider-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.8s ease;
    }
    
    .slider-slide.active {
        opacity: 1;
    }
    
    /* Mobil için thumbnail boyutları */
    .slider-sitefit-thumbnail {
        width: 80px;
        height: 50px;
    }
    
    .slider-sitefit-thumbnails {
        bottom: 15px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .sitefit-slider {
        overflow: hidden;
    }
    
    .slider-sitefit-main {
        position: relative;
        overflow: hidden;
    }
    
    .slider-bg-image {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
    }
}

@media (max-width: 380px) {
    .slider-bg-image {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
    }
}

/* Görsel yükleme optimizasyonu */
.slider-bg-image {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Mobil için lazy loading desteği */
@media (max-width: 768px) {
    .slider-bg-image {
        loading: lazy;
    }
}

.slider-sitefit-main .slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

@media (max-width: 768px) {
    .slider-sitefit-main .slider-overlay {
        background: transparent;
        z-index: 1;
    }
}

@media (max-width: 480px) {
    .slider-sitefit-main .slider-overlay {
        background: transparent;
        z-index: 1;
    }
}

.slider-content {
    position: absolute;
    top: 60%; /* 50%'den 60%'ya çıkarıldı - daha aşağıda konumlandırıldı */
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    width: 90%;
    max-width: 900px; /* 800px'den 900px'e çıkarıldı */
    z-index: 50;
    animation: fadeInUp 1s ease forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: visible;
    pointer-events: auto;
}

.slider-title {
    font-size: 3.5rem; /* 2.8rem'den 3.5rem'e çıkarıldı */
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    text-align: center;
    width: 100%;
}

.slider-subtitle {
    font-size: 1.4rem; /* 1.2rem'den 1.4rem'e çıkarıldı */
    font-weight: 400;
    max-width: 700px; /* 600px'den 700px'e çıkarıldı */
    margin: 0 auto var(--spacing-xl);
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0,0,0,0.4);
    text-align: center;
    width: 100%;
}

.slider-btn {
    background: var(--primary-light);
    color: #fff;
    padding: calc(var(--spacing-md) * 1.2) calc(var(--spacing-2xl) * 1.2); /* Padding 1.2 katına çıkarıldı */
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem; /* Font boyutu eklendi */
    transition: background-color var(--transition-normal), transform var(--transition-normal);
    display: inline-block;
    text-align: center;
    align-self: center;
}

.slider-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.slider-sitefit-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    transition: background-color 0.3s ease;
}

.slider-sitefit-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-sitefit-arrow-left { left: 20px; }
.slider-sitefit-arrow-right { right: 20px; }

.slider-sitefit-thumbnails {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-sitefit-thumbnail {
    width: 100px;
    height: 60px;
    cursor: pointer;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.slider-sitefit-thumbnail:hover {
    transform: scale(1.1);
}

.slider-sitefit-thumbnail.active {
    border-color: var(--primary-light);
    box-shadow: 0 0 15px rgba(96, 165, 97, 0.7);
}

.slider-sitefit-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-sitefit-thumbnail .thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    transition: background-color 0.3s ease;
}

.slider-sitefit-thumbnail:hover .thumb-overlay {
    background: rgba(0,0,0,0.2);
}

.slider-sitefit-thumbnail .thumb-title {
    position: absolute;
    bottom: 5px;
    left: 5px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}


/* Responsive Slider */
@media (max-width: 768px) {
    .sitefit-slider {
        height: 60vh; /* Mobilde eski boyut korundu */
        min-height: 350px; /* Mobilde eski boyut korundu */
    }
    .slider-content {
        padding: 0 30px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        position: relative;
        z-index: 50;
    }
    .slider-title {
        font-size: 2.2rem; /* 1.8rem'den 2.2rem'e çıkarıldı */
        text-align: center;
        margin-bottom: 0.8rem;
        line-height: 1.1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        padding: 0 10px;
    }
    .slider-subtitle {
        font-size: 1.1rem; /* 0.9rem'den 1.1rem'e çıkarıldı */
        text-align: center;
        margin: 0 auto 1.2rem auto;
        max-width: 100%;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 15px;
    }
    .slider-btn {
        text-align: center;
        margin: 0 auto;
        display: inline-block;
        padding: 10px 16px;
        font-size: 0.85rem;
        min-width: 120px;
        max-width: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .slider-sitefit-thumbnails {
        display: flex; /* Show thumbnails on mobile */
        bottom: 10px;
        gap: 6px;
    }
    .slider-sitefit-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        display: block;
        visibility: visible;
        opacity: 1;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(5px);
    }
    .slider-sitefit-arrow-left { 
        left: 8px; 
    }
    .slider-sitefit-arrow-right { 
        right: 8px; 
    }
}

@media (max-width: 480px) {
    .sitefit-slider {
        height: 50vh; /* Küçük mobilde eski boyut korundu */
        min-height: 280px; /* Küçük mobilde eski boyut korundu */
    }
    .slider-content {
        padding: 0 25px;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        position: relative;
        z-index: 50;
    }
    .slider-title {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 0.6rem;
        line-height: 1.1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        padding: 0 8px;
    }
    .slider-subtitle {
        font-size: 0.8rem;
        text-align: center;
        margin: 0 auto 1rem auto;
        line-height: 1.2;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 12px;
    }
    .slider-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        text-align: center;
        margin: 0 auto;
        display: inline-block;
        min-width: 100px;
        max-width: 180px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .slider-sitefit-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        display: block;
        visibility: visible;
        opacity: 0.9;
        background: rgba(255, 255, 255, 0.6);
    }
    .slider-sitefit-arrow-left {
        left: 5px;
    }
    .slider-sitefit-arrow-right {
        right: 5px;
    }
}

@media (max-width: 380px) {
    .sitefit-slider {
        height: 45vh;
        min-height: 250px;
    }
    .slider-content {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        position: relative;
        z-index: 50;
    }
    .slider-title {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 0.5rem;
        line-height: 1.0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        padding: 0 5px;
    }
    .slider-subtitle {
        font-size: 0.75rem;
        text-align: center;
        margin: 0 auto 0.8rem auto;
        line-height: 1.1;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 10px;
    }
    .slider-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        text-align: center;
        margin: 0 auto;
        display: inline-block;
        min-width: 80px;
        max-width: 150px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .slider-sitefit-arrow {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
        display: block;
        visibility: visible;
        opacity: 0.8;
        background: rgba(255, 255, 255, 0.7);
    }
    .slider-sitefit-arrow-left {
        left: 3px;
    }
    .slider-sitefit-arrow-right {
        right: 3px;
    }
}

/* Çok küçük ekranlar için ek optimizasyon */
@media (max-width: 320px) {
    .sitefit-slider {
        height: 40vh;
        min-height: 220px;
    }
    .slider-content {
        padding: 0 15px;
    }
    .slider-title {
        font-size: 1.1rem;
        padding: 0 3px;
    }
    .slider-subtitle {
        font-size: 0.7rem;
        padding: 0 8px;
    }
    .slider-btn {
        padding: 5px 10px;
        font-size: 0.7rem;
        min-width: 70px;
        max-width: 120px;
    }
    .slider-sitefit-arrow {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
    .slider-sitefit-arrow-left {
        left: 2px;
    }
    .slider-sitefit-arrow-right {
        right: 2px;
    }
}


/* ========================================
   Brand Marquee Section
   ======================================== */
.brand-marquee-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-marquee-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-marquee {
    display: flex;
    gap: 48px;
    align-items: center;
    animation: marquee-scroll 30s linear infinite;
}

.brand-marquee img {
    height: 70px;
    opacity: 0.85;
    transition: all 0.3s ease;
    filter: grayscale(30%) brightness(1.1) contrast(1.2);
}

.brand-marquee img:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1.3) contrast(1.4);
    transform: scale(1.1);
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 900px) {
    .brand-marquee { gap: 32px; }
    .brand-marquee img { 
        height: 55px; 
        opacity: 0.9;
        filter: grayscale(20%) brightness(1.15) contrast(1.25);
    }
}

/* E2E Services */
.e2e-services-section {
    background: white;
    padding: 4rem 0;
    width: 100%;
    overflow: hidden;
}

.e2e-services-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #053225;
    text-align: center;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.e2e-services-header p {
    color: #B2A198;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.e2e-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.e2e-service-box {
    background: #f8f9fa;
    border-radius: 18px;
    padding: 1.5rem 1rem 1rem 1rem;
    text-align: center;
    min-width: 180px;
    max-width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

.e2e-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E34A6F, #F7B2BD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem auto;
    box-shadow: 0 4px 12px rgba(227, 74, 111, 0.3);
}

.e2e-service-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #053225;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.e2e-service-box p {
    color: #B2A198;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

@media (max-width: 900px) {
    .e2e-services-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 18px; 
    }
    .e2e-service-box { padding: 24px 10px 18px 10px; min-width: 140px; max-width: 100vw; }
    .e2e-service-icon { width: 44px; height: 44px; font-size: 1.2rem; }
    .e2e-services-header h2 { font-size: 1.3rem; }
    .e2e-services-header p { font-size: 1rem; max-width: 90%; }
}

@media (max-width: 600px) {
    .e2e-services-section { padding: 32px 0 32px 0; }
    .e2e-services-header h2 { font-size: 1.1rem; margin-bottom: 0.8rem; }
    .e2e-services-header p { font-size: 0.98rem; max-width: 95%; margin-bottom: 2rem; }
    .e2e-services-grid { 
        grid-template-columns: 1fr;
        gap: 10px; 
    }
    .e2e-service-box { margin-bottom: 12px; }
}

@media (max-width: 480px) {
    .e2e-services-section { padding: 24px 0; }
    .e2e-services-header h2 { font-size: 1rem; margin-bottom: 0.6rem; }
    .e2e-services-header p { font-size: 0.9rem; max-width: 98%; margin-bottom: 1.5rem; }
    .e2e-service-box { padding: 20px 15px 15px 15px; }
    .e2e-service-box h3 { font-size: 1.1rem; }
    .e2e-service-box p { font-size: 0.85rem; }
}

@media (max-width: 380px) {
    .e2e-services-section { padding: 20px 0; }
    .e2e-services-header h2 { font-size: 0.95rem; margin-bottom: 0.5rem; }
    .e2e-services-header p { font-size: 0.85rem; max-width: 100%; margin-bottom: 1.2rem; }
    .e2e-service-box { padding: 18px 12px 12px 12px; }
    .e2e-service-box h3 { font-size: 1rem; }
    .e2e-service-box p { font-size: 0.8rem; }
}

/* --- BLOG SECTION STYLES --- */
.blog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

/* Blog Page Specific Styles */
body.blog-page {
    background: #f8f9fa;
}

body.blog-page .layout-main {
    min-height: 70vh;
    padding-top: 40px;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 16px 64px 16px;
    min-height: 60vh;
}

.blog-header {
    text-align: center;
    margin-bottom: 48px;
}

.blog-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #053225;
    margin-bottom: 18px;
    letter-spacing: -2px;
}

.blog-subtitle {
    color: #B2A198;
    font-size: 1.18rem;
    margin-bottom: 38px;
}

/* Blog List Styles */
.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.blog-loading {
    text-align: center;
    padding: 60px 20px;
    color: #B2A198;
    font-size: 1.1rem;
}

.blog-loading p {
    margin: 0;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

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

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-post-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 18px rgba(44,62,80,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
    user-select: none;
    transform: translateY(0);
}

.blog-post-card:hover {
    box-shadow: 0 8px 32px rgba(44,62,80,0.15);
    transform: translateY(-8px);
    text-decoration: none;
    color: inherit;
}

.blog-post-card:active {
    transform: translateY(-4px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-category {
    color: #E34A6F;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    color: #666;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-read-more {
    color: #E34A6F;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #ff6b8a;
}

.blog-no-posts {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
    font-size: 1.1rem;
}

.blog-card-content {
    padding: 28px;
}

.blog-card-category {
    color: #60A561;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #053225;
    margin-bottom: 16px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.blog-post-card:hover .blog-card-title {
    color: #60A561;
}

.blog-card-excerpt {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #B2A198;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.blog-view-all {
    text-align: center;
    margin-top: 48px;
}

.blog-view-all .cta-button {
    background: linear-gradient(135deg, #60A561 0%, #4a8c4a 100%);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(96, 165, 97, 0.3);
}

.blog-view-all .cta-button:hover {
    background: linear-gradient(135deg, #4a8c4a 0%, #60A561 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 165, 97, 0.4);
}

/* Blog Detail Styles */
.blog-detail { 
    display: none; 
    max-width: 900px; 
    margin: 0 auto; 
    background: #fff; 
    border-radius: 20px; 
    box-shadow: 0 4px 25px rgba(44,62,80,0.1); 
    overflow: hidden;
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.blog-detail.active { display: block !important; }

.blog-detail-header {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.blog-detail-image { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.3s ease;
}

.blog-detail-image:hover {
    transform: scale(1.05);
}

.blog-detail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(5,50,37,0.8) 0%, rgba(96,165,97,0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.blog-detail-header-content {
    color: white;
    max-width: 100%;
}

.blog-detail-category-header {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.blog-detail-title-header {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.blog-detail-meta-header {
    display: flex;
    gap: 24px;
    font-size: 1rem;
    opacity: 0.9;
    flex-wrap: wrap;
}

.blog-detail-meta-header span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-content { 
    padding: 50px; 
    position: relative;
}

.blog-detail-body { 
    color: #2c3e50; 
    font-size: 1.15rem; 
    line-height: 1.8; 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.blog-detail-body h3 { 
    font-size: 1.8rem; 
    margin: 40px 0 20px 0; 
    color: #053225; 
    font-weight: 700;
    position: relative;
    padding-left: 20px;
}

.blog-detail-body h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #60A561, #4a8c4a);
    border-radius: 2px;
}

.blog-detail-body p { 
    margin-bottom: 24px; 
    text-align: justify;
}

.blog-detail-body p:first-of-type {
    font-size: 1.25rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 32px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left: 4px solid #60A561;
    border-radius: 0 8px 8px 0;
}

.blog-back-btn { 
    background: linear-gradient(135deg, #60A561, #4a8c4a);
    color: #fff; 
    padding: 14px 28px; 
    border-radius: 25px; 
    text-decoration: none; 
    margin-bottom: 32px; 
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease; 
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(96,165,97,0.3);
}

.blog-back-btn:hover { 
    background: linear-gradient(135deg, #4a8c4a, #60A561);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96,165,97,0.4);
    text-decoration: none;
    color: #fff;
}

.blog-navigation {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #053225;
    font-weight: 600;
    transition: all 0.2s ease;
    max-width: 200px;
}

.blog-nav-link:hover {
    background: #60A561;
    color: white;
    transform: translateX(5px);
    text-decoration: none;
}

.blog-nav-link.prev:hover {
    transform: translateX(-5px);
}

.reading-time {
    background: rgba(96,165,97,0.1);
    color: #60A561;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

/* Blog Mobile Responsiveness */
@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-container { 
        padding: 24px 12px 32px 12px; 
    }
    
    .blog-title { 
        font-size: 2rem; 
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }
    
    .blog-list { 
        grid-template-columns: 1fr; 
        gap: 20px; 
    }
    
    .blog-post-card {
        border-radius: 12px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-card-title {
        font-size: 1.2rem;
    }
    
    .blog-card-excerpt {
        font-size: 0.95rem;
    }
    
    .blog-card-meta {
        font-size: 0.85rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .blog-view-all .cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .blog-detail-content { 
        padding: 30px 24px; 
    }
    
    .blog-detail-title-header { 
        font-size: 2rem; 
    }
    
    .blog-detail-overlay { 
        padding: 24px; 
    }
    
    .blog-detail-header { 
        height: 250px; 
    }
    
    .blog-detail-body { 
        font-size: 1.05rem; 
    }
    
    .blog-detail-body h3 { 
        font-size: 1.5rem; 
        padding-left: 16px;
    }
    
    .blog-detail-body h3::before {
        width: 3px;
        height: 20px;
    }
    
    .blog-navigation { 
        flex-direction: column; 
        gap: 16px; 
    }
    
    .blog-nav-link { 
        max-width: 100%; 
        text-align: center; 
        justify-content: center;
    }
    
    .blog-detail-meta-header {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card-content {
        padding: 16px;
    }
    
    .blog-card-title {
        font-size: 1.1rem;
    }
    
    .blog-detail-content { 
        padding: 20px 16px; 
    }
    
    .blog-detail-title-header { 
        font-size: 1.6rem; 
    }
    
    .blog-detail-body { 
        font-size: 1rem; 
    }
    
    .blog-detail-overlay { 
        padding: 16px; 
    }
    
    .blog-detail-body p:first-of-type {
        font-size: 1.1rem;
        padding: 16px;
    }
}
/* --- END BLOG SECTION STYLES --- */

/* --- BLOG DETAIL PAGE ADDITIONAL STYLES --- */

/* Error State */
.blog-error {
    text-align: center;
    padding: 80px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.blog-error h2 {
    font-size: 2rem;
    color: #053225;
    margin-bottom: 16px;
}

.blog-error p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* Related Posts */
.related-posts {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e9ecef;
}

.related-posts h3 {
    font-size: 1.8rem;
    color: #053225;
    margin-bottom: 32px;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.related-post-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(44,62,80,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(44,62,80,0.15);
    text-decoration: none;
    color: inherit;
}

.related-post-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.related-post-content {
    padding: 20px;
}

.related-post-category {
    color: #60A561;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-post-card h4 {
    margin: 8px 0 0 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #053225;
    line-height: 1.4;
}

/* Enhanced Blog Navigation */
.blog-navigation .blog-nav-link {
    min-height: 80px;
    align-items: center;
    padding: 16px 20px;
}

.blog-navigation .blog-nav-link div {
    flex: 1;
}

/* Loading Animation Enhancement */
.blog-loading {
    position: relative;
}

.blog-loading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #60A561;
    border-radius: 2px;
    animation: loadingBar 2s ease-in-out infinite;
}

@keyframes loadingBar {
    0%, 100% { width: 40px; opacity: 1; }
    50% { width: 80px; opacity: 0.7; }
}

/* Social Sharing Buttons (Optional) */
.blog-social-share {
    margin: 40px 0;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.blog-social-share h4 {
    margin-bottom: 16px;
    color: #053225;
    font-size: 1.1rem;
}

.social-share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.social-share-btn.facebook {
    background: #1877f2;
    color: white;
}

.social-share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.social-share-btn.linkedin {
    background: #0a66c2;
    color: white;
}

.social-share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.social-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-decoration: none;
    color: white;
}

/* Mobile Responsiveness for Related Posts */
@media (max-width: 768px) {
    .related-posts {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .related-posts h3 {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .related-post-card img {
        height: 140px;
    }
    
    .related-post-content {
        padding: 16px;
    }
    
    .blog-navigation .blog-nav-link {
        min-height: auto;
        padding: 12px 16px;
    }
    
    .social-share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-share-btn {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .blog-error {
        padding: 60px 16px;
    }
    
    .blog-error h2 {
        font-size: 1.6rem;
    }
    
    .related-posts-grid {
        gap: 12px;
    }
}
/* --- END BLOG DETAIL PAGE STYLES --- */

/* Form Error Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group.focused label {
    color: #E34A6F;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Form Enhancement Styles */
.form-group {
    position: relative;
}

.form-group label {
    transition: all 0.3s ease;
}

.form-group.focused label {
    color: #E34A6F;
    font-weight: 700;
}

/* Notification Styles */
.notification {
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Enhanced Form Styling */
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: #E34A6F;
    box-shadow: 0 0 0 3px rgba(227, 74, 111, 0.1);
    transform: translateY(-1px);
}

.contact-form .form-group input:hover,
.contact-form .form-group select:hover,
.contact-form .form-group textarea:hover {
    border-color: #F7B2BD;
}

/* Loading State Styles */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.submit-btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Enhanced Contact Info Cards */
.contact-info-card {
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 74, 111, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-info-card:hover::before {
    left: 100%;
}

/* Enhanced FAQ Styling */
.faq-item {
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #E34A6F 0%, #F7B2BD 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover::before,
.faq-item.active::before {
    transform: scaleY(1);
}

.faq-question {
    position: relative;
}

.faq-question::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 74, 111, 0.3), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-question::after {
    transform: scaleX(1);
}

/* Enhanced Map Container */
.map-container {
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 0 1px rgba(227, 74, 111, 0.1);
    pointer-events: none;
    z-index: 1;
}

/* Enhanced Hero Section */
.contact-hero {
    position: relative;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

/* Enhanced Form Sidebar */
.contact-sidebar-card {
    position: relative;
    overflow: hidden;
}

.contact-sidebar-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 30px 0;
    border-color: transparent rgba(227, 74, 111, 0.1) transparent transparent;
    transition: all 0.3s ease;
}

.contact-sidebar-card:hover::after {
    border-width: 0 40px 40px 0;
}

/* Enhanced Submit Button */
.submit-btn {
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

/* Enhanced Contact Info Icons */
.contact-info-icon {
    position: relative;
    overflow: hidden;
}

.contact-info-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon::before {
    width: 100%;
    height: 100%;
}

/* Enhanced Form Row Animation */
.form-row {
    animation: fadeInUp 0.6s ease;
}

.form-row:nth-child(2) {
    animation-delay: 0.1s;
}

.form-row:nth-child(3) {
    animation-delay: 0.2s;
}

.form-row:nth-child(4) {
    animation-delay: 0.3s;
}

.form-row:nth-child(5) {
    animation-delay: 0.4s;
}

.form-row:nth-child(6) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Contact Info Grid Animation */
.contact-info-card {
    animation: fadeInUp 0.6s ease;
}

.contact-info-card:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-info-card:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-info-card:nth-child(3) {
    animation-delay: 0.3s;
}


/* Enhanced FAQ Animation */
.faq-item {
    animation: fadeInUp 0.6s ease;
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #E34A6F 0%, #F7B2BD 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.6;
}

/* Contact Info Section */
.contact-info-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns layout */
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info-card {
    background: white;
    padding: 2.5rem 2rem; /* Optimized padding for 3-column layout */
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(227, 74, 111, 0.1);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(227, 74, 111, 0.15);
    border-color: rgba(227, 74, 111, 0.3);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E34A6F 0%, #F7B2BD 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.contact-info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: white;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.contact-form-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E34A6F;
    box-shadow: 0 0 0 3px rgba(227, 74, 111, 0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, #E34A6F 0%, #F7B2BD 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #F7B2BD 0%, #E34A6F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 74, 111, 0.3);
}

/* Contact Sidebar */
.contact-form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-sidebar-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(227, 74, 111, 0.1);
}

.contact-sidebar-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.contact-sidebar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-sidebar-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #555;
}

.contact-sidebar-card i {
    color: #E34A6F;
    font-size: 1.1rem;
}

.contact-phone-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #E34A6F 0%, #F7B2BD 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-phone-btn:hover {
    background: linear-gradient(135deg, #F7B2BD 0%, #E34A6F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 74, 111, 0.3);
}

/* Map Section */
.contact-map-section {
    padding: 5rem 0;
    background: #f8f9fa;
    text-align: center;
}

.contact-map-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Offices Section */
.contact-offices-section {
    padding: 5rem 0;
    background: #f8f9fa;
    text-align: center;
}

.contact-offices-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.offices-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Office Tabs */
.office-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.office-tab {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 1rem 2rem;
    cursor: pointer !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #666;
    min-width: 140px;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    user-select: none;
}

.office-tab:hover {
    border-color: #E34A6F;
    color: #E34A6F;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(227, 74, 111, 0.15);
}

.office-tab.active {
    background: linear-gradient(135deg, #E34A6F 0%, #F7B2BD 100%);
    border-color: #E34A6F;
    color: white;
    box-shadow: 0 6px 20px rgba(227, 74, 111, 0.3);
}

.office-tab i {
    font-size: 1.1rem;
}

/* Office Content */
.office-content {
    max-width: 1200px;
    margin: 0 auto;
}

.office-panel {
    display: none !important; /* Force hide by default */
    animation: fadeIn 0.5s ease;
}

.office-panel.active {
    display: grid !important; /* Show only active panel */
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

/* Force first panel to be visible by default */
#america-office {
    display: grid !important; /* Show America office by default */
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.office-info {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: left;
}

.office-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    color: #E34A6F;
}

.office-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.office-info i {
    color: #E34A6F;
    font-size: 1.1rem;
    min-width: 20px;
}

.office-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.8rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid on tablet */
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-content h2,
    .contact-map-section h2,
    .contact-offices-section h2 {
        font-size: 2rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-sidebar-card {
        padding: 1.5rem;
    }
    
    /* Office Tabs Mobile */
    .office-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .office-tab {
        min-width: 200px;
        padding: 0.875rem 1.5rem;
    }
    
    .office-panel.active {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Force America office to also use mobile layout */
    #america-office {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .office-info {
        order: 2;
    }
    
    .office-map {
        order: 1;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2.2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-form-content h2,
    .contact-map-section h2,
    .contact-offices-section h2 {
        font-size: 1.8rem;
    }
    
    /* Small mobile office layout */
    .office-panel.active,
    #america-office {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 1.5rem;
    }
}

/* ========================================
   Homepage References Section Styles
   ======================================== */
.references-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.references-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #E34A6F 50%, transparent 100%);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.reference-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 100px;
    border: 2px solid transparent;
}

.reference-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(44, 62, 80, 0.15);
    border-color: #E34A6F;
}

.reference-item img {
    width: 100%;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.reference-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.references-view-all {
    text-align: center;
    margin-top: 50px;
}

.references-view-all .cta-button {
    background: linear-gradient(135deg, #E34A6F 0%, #ff6b8a 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(227, 74, 111, 0.3);
}

.references-view-all .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 74, 111, 0.4);
    background: linear-gradient(135deg, #ff6b8a 0%, #E34A6F 100%);
}

/* Responsive Design for References Section */
@media (max-width: 1200px) {
    .references-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .references-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .reference-item {
        padding: 20px;
        min-height: 90px;
    }
    
    .reference-item img {
        max-width: 100px;
    }
}

@media (max-width: 768px) {
    .references-section {
        padding: 60px 0;
    }
    
    .references-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        margin-top: 40px;
    }
    
    .reference-item {
        padding: 18px;
        min-height: 80px;
    }
    
    .reference-item img {
        max-width: 80px;
    }
}

@media (max-width: 576px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .reference-item {
        padding: 15px;
        min-height: 70px;
    }
    
    .reference-item img {
        max-width: 70px;
    }
    
    .references-view-all .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
