:root {
    --primary-green: #6B9080;
    --light-green: #A4C3A2;
    --pale-green: #EAF4F4;
    --accent-green: #4F6D52;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --text-dark: #2C3E50;
    --text-light: #5A6C57;
    --shadow-light: rgba(107, 144, 128, 0.1);
    --shadow: rgba(107, 144, 128, 0.15);
    --border-light: rgba(107, 144, 128, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Header & Navigation */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(107, 144, 128, 0.3);
}

.brand-text h2 {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.brand-text span {
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 500;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.nav-link:hover {
    color: var(--primary-green);
    background: var(--pale-green);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--white);
    background: var(--primary-green);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.cta-button {
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.cta-button i {
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: var(--pale-green);
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--primary-green);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Intro Section */
.intro-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--pale-green) 0%, var(--white) 100%);
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Side - Therapist Note */
.therapist-note-side {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
    position: relative;
}

.therapist-note-side .quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--primary-green);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.therapist-note-side h3 {
    color: var(--primary-green);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.therapist-note-side p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 2rem;
}

.therapist-note-side .signature {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 1rem;
    text-align: right;
}

/* Right Side - Photo */
.therapist-photo-side {
    text-align: center;
}

.therapist-image {
    margin-bottom: 2rem;
}

.intro-profile-photo {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--white);
}

.therapist-info h1 {
    font-size: 1.4rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.therapist-info h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.therapist-info .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

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

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray);
    line-height: 1.7;
}

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

.qual-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--pale-green);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.qual-item:hover {
    transform: translateX(10px);
}

.qual-item i {
    font-size: 2rem;
    color: var(--primary-green);
}

.qual-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.qual-item p {
    margin: 0;
    color: var(--gray);
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-photo {
    width: 375px;
    height: 500px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 30px var(--shadow);
    border: 4px solid var(--primary-green);
}

.profile-photo:error,
.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px var(--shadow);
}

.image-placeholder i {
    font-size: 6rem;
    color: white;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow);
    border-color: var(--primary-green);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--pale-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-green);
}

.service-card:hover .service-icon i {
    color: white;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary-green);
}

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

.service-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--pale-green);
}

.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: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-details p {
    margin: 0;
    color: var(--gray);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--pale-green);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 0 20px;
}

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

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

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: var(--light-green);
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-section i {
    margin-right: 0.5rem;
    color: var(--light-green);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        gap: 3rem;
    }

    .about-content {
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

    .nav-cta {
        display: none;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-4px, 4px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-4px, -4px);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 88px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: left;
        transition: all 0.3s ease;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        padding: 1rem 0;
        z-index: 999;
        gap: 0;
    }

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

    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 0;
        font-weight: 500;
    }

    .nav-link:hover {
        background: var(--pale-green);
        transform: none;
        padding-left: 2.5rem;
    }

    .brand-logo {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .brand-text h2 {
        font-size: 1rem;
    }

    .brand-text span {
        font-size: 0.7rem;
    }

    .nav-brand {
        gap: 0.8rem;
    }

    .navbar {
        padding: 0.7rem 1.5rem;
    }

    .intro-section {
        padding: 85px 0 60px;
    }

    .intro-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .therapist-note-side {
        padding: 2.5rem;
        order: 2;
    }

    .therapist-photo-side {
        order: 1;
    }

    .intro-profile-photo {
        width: 300px;
        height: 300px;
    }

    .therapist-info h1 {
        font-size: 1.2rem;
    }

    .therapist-info h2 {
        font-size: 2.2rem;
    }

    .therapist-info .subtitle {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .qualifications {
        gap: 1rem;
    }

    .qual-item {
        flex-direction: row;
        text-align: left;
        padding: 1rem;
    }

    .qual-item i {
        font-size: 1.5rem;
        margin-right: 1rem;
    }

    .services {
        padding: 60px 0;
    }

    .about {
        padding: 60px 0;
    }

    .contact {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

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

    .brand-logo {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .brand-text h2 {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .brand-text span {
        font-size: 0.65rem;
    }

    .nav-brand {
        gap: 0.6rem;
    }

    .navbar {
        padding: 0.6rem 1rem;
    }

    .nav-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .intro-section {
        padding: 75px 0 50px;
    }

    .intro-layout {
        gap: 2rem;
    }

    .therapist-note-side {
        padding: 2rem;
    }

    .therapist-note-side h3 {
        font-size: 1.4rem;
    }

    .therapist-note-side p {
        font-size: 1rem;
    }

    .intro-profile-photo {
        width: 250px;
        height: 250px;
    }

    .therapist-info h1 {
        font-size: 1.1rem;
    }

    .therapist-info h2 {
        font-size: 1.8rem;
    }

    .therapist-info .subtitle {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .floating-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .floating-card h3 {
        font-size: 1.2rem;
    }

    .floating-card i {
        font-size: 2.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .profile-photo,
    .image-placeholder {
        width: 250px;
        height: 250px;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .qual-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .qual-item i {
        font-size: 2rem;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 320px) {
    .nav-brand h2 {
        font-size: 0.9rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem 1rem;
    }

    .floating-card {
        padding: 1rem;
    }

    .profile-photo,
    .image-placeholder {
        width: 200px;
        height: 200px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Clean animations only */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-card {
    animation: float 6s ease-in-out infinite;
}

.qual-item:hover {
    transform: translateX(10px);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(107, 144, 128, 0.1);
}


/* Çalışma Grubu Section */
.work-group {
    padding: 80px 0;
    background: var(--light-gray);
}

.group-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.group-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.group-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.group-icon {
    width: 80px;
    height: 80px;
    background: var(--pale-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-green);
    font-size: 2rem;
}

.group-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Uygulanan Yöntemler Section */
.methods {
    padding: 80px 0;
    background: var(--white);
}

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

.method-item {
    background: var(--pale-green);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.method-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px var(--shadow);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-item h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
}

/* Çalışma Alanları Section */
.work-areas {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.area-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-green);
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
}

.area-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow);
    border-left-color: var(--accent-green);
}

.area-item i {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.area-item h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.area-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Map Container */
.map-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .therapist-note,
    .work-group,
    .methods,
    .work-areas {
        padding: 60px 0;
    }

    .note-card {
        padding: 2rem;
        margin: 0 1rem;
    }

    .note-card p {
        font-size: 1.1rem;
    }

    .group-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .group-card {
        padding: 2rem 1.5rem;
    }

    .group-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .method-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .note-card {
        padding: 1.5rem;
    }

    .note-card p {
        font-size: 1rem;
    }

    .group-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .group-card {
        padding: 1.5rem 1rem;
    }

    .group-card h3 {
        font-size: 1.2rem;
    }

    .method-item {
        padding: 1.5rem;
    }

    .method-item h4 {
        font-size: 1.1rem;
    }

    .area-item {
        padding: 1.5rem;
    }

    .area-item h4 {
        font-size: 1.2rem;
    }

    .map-container iframe {
        height: 250px;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-link {
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    min-width: 60px;
    justify-content: center;
}

.whatsapp-link:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-link i {
    font-size: 1.5rem;
}

.whatsapp-text {
    display: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* WhatsApp Button Responsive */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-link {
        padding: 12px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
    }

    .whatsapp-link i {
        font-size: 1.8rem;
    }
}

@media (min-width: 769px) {
    .whatsapp-text {
        display: inline;
    }
}

/* Office Gallery Section */
.office-gallery {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    cursor: pointer;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        transform: translate(-50%, -50%) scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--light-green);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-image {
        height: 250px;
    }

    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
}