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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    top: 0 !important;
}

/* Hide Google Translate Banner */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body > .skiptranslate {
    display: none !important;
}

iframe.skiptranslate {
    display: none !important;
}

.goog-te-balloon-frame {
    display: none !important;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    background: #2c3e50;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo h1 {
    color: #fff;
    font-size: 1.8rem;
    margin: 0;
}

/* Google Translate Widget */
.translate-widget {
    margin-right: 2rem;
}

#google_translate_element {
    display: inline-block;
}

#google_translate_element select {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    transition: background 0.3s ease;
}

#google_translate_element select:hover {
    background: #2980b9;
}

.goog-te-gadget {
    font-family: Arial, sans-serif !important;
    font-size: 0 !important;
}

.goog-te-gadget-simple {
    background-color: #3498db !important;
    border: none !important;
    padding: 8px 12px !important;
    border-radius: 5px !important;
    font-size: 14px !important;
    display: inline-block !important;
}

.goog-te-gadget-simple:hover {
    background-color: #2980b9 !important;
}

.goog-te-gadget-simple .goog-te-menu-value span {
    color: white !important;
}

.goog-te-gadget-simple .goog-te-menu-value span:first-child {
    display: inline !important;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.btn-primary:hover {
    background: #c0392b;
    border-color: #c0392b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-2px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 70px;
}

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

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: #f8f9fa;
}

.mission-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Impact Areas */
.impact-areas {
    padding: 80px 0;
}

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

.area-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.area-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.area-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.area-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.area-card p {
    color: #666;
    line-height: 1.6;
}

/* Our Story */
.our-story {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.story-text h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.story-text p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.stat-item h3 {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
}

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

.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mv-card h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.mv-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Our Approach */
.our-approach {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.approach-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.approach-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.approach-icon img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.approach-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

/* Our Values */
.our-values {
    padding: 80px 0;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #3498db;
}

.value-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

/* Program Sections */
.program-section {
    padding: 80px 0;
}

.alt-bg {
    background: #f8f9fa;
}

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

.program-content.reverse {
    grid-template-columns: 1fr 2fr;
}

.program-text h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.program-text p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.program-features h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.program-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.program-features li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.program-features li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.program-impact h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.impact-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #e74c3c;
}

.stat .label {
    color: #666;
    font-size: 0.9rem;
}

.program-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

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

.placeholder-image {
    height: 300px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.category-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.category-card h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Apply Section */
.apply-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.apply-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.apply-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.apply-icon img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.apply-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.apply-card p {
    color: #666;
    line-height: 1.6;
}

.apply-cta {
    text-align: center;
    margin-top: 3rem;
}

.apply-cta p {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.contact-info h3,
.contact-form h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1rem;
    color: #666;
}

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

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

/* Footer */
footer {
    background: #2c3e50;
    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;
}

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

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

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

.footer-section a:hover {
    color: #3498db;
}

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

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

    .translate-widget {
        margin-right: 1rem;
    }

    #google_translate_element select,
    .goog-te-gadget-simple {
        padding: 6px 8px !important;
        font-size: 12px !important;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #2c3e50;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        z-index: 999;
        display: flex;
    }

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

    .nav-item {
        margin: 1rem 0;
    }

    .nav-item:first-child {
        margin-left: 0;
    }

    .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);
    }

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

    .footer-section {
        text-align: center;
    }

    .footer-section ul {
        padding: 0;
    }

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

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

    .page-header h1,
    .section-title,
    h1, h2, h3 {
        text-align: center;
    }

    .story-text h2,
    .form-text h2,
    .location-info h3,
    .emergency-info h2 {
        text-align: center;
    }

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

    .story-content,
    .program-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .program-content.reverse {
        grid-template-columns: 1fr;
    }

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

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid,
    .approach-grid,
    .values-grid,
    .apply-grid {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        justify-content: center;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        display: grid;
    }

    .form-text {
        order: 1;
    }

    .contact-form {
        order: 2;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        display: grid;
    }

    .map-placeholder {
        order: 1;
    }

    .location-info {
        order: 2;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 40px 0;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-text h2 {
        font-size: 1.8rem;
    }

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

    .quick-contact {
        padding: 1.5rem;
    }

    .quick-contact li {
        font-size: 0.9rem;
        word-break: break-word;
    }

    .location-section {
        padding: 40px 0;
    }

    .transport-item {
        padding: 1rem;
    }

    .transport-item strong,
    .transport-item p {
        font-size: 0.95rem;
    }

    .emergency-contact {
        padding: 40px 0;
    }

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

    .emergency-info p {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
}

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

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

    .page-header h1 {
        font-size: 2rem;
    }

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

    .story-stats {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .emergency-number a {
        font-size: 1.5rem;
        padding: 12px 25px;
    }

    .page-header h1,
    .section-title,
    h1, h2, h3 {
        text-align: center;
    }

    .contact-form-section,
    .location-section,
    .emergency-contact,
    .contact-info-section {
        padding: 30px 0;
    }

    .form-container {
        gap: 1.5rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .form-text h2 {
        font-size: 1.5rem;
    }

    .quick-contact {
        padding: 1.25rem;
    }

    .quick-contact h3 {
        font-size: 1.1rem;
    }

    .quick-contact li {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 0.95rem;
    }

    .map-placeholder {
        min-height: 250px;
    }

    .transport-item {
        padding: 0.9rem;
    }

    .emergency-info h2 {
        font-size: 1.5rem;
    }

    .emergency-number a {
        font-size: 1.3rem;
        padding: 10px 20px;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-icon {
        font-size: 2rem;
    }
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-icon img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-icon svg {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

.contact-form-section {
    padding: 80px 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-text h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.form-text p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.quick-contact h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.quick-contact ul {
    list-style: none;
    margin: 0;
}

.quick-contact li {
    margin-bottom: 0.8rem;
    color: #666;
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.contact-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
}

.location-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.location-content {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.map-placeholder {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    border-radius: 15px;
    height: 400px;
    width: 100%;
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.map-content {
    text-align: center;
    padding: 2rem;
}

.map-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.map-content h3 {
    margin-bottom: 1rem;
}

.map-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.location-info h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

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

.transport-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.transport-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.5rem;
}

.transport-item p {
    color: #666;
    margin: 0;
}

.emergency-contact {
    background: #e74c3c;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.emergency-info h2 {
    margin-bottom: 1rem;
}

.emergency-info p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.emergency-number {
    margin: 2rem 0;
}

.emergency-number a {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}

.emergency-number a:hover {
    background: white;
    color: #e74c3c;
}

/* WhatsApp Floating Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-button {
    width: 72px;
    height: 72px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    width: 42px;
    height: 42px;
    animation: pulse 2s infinite;
}

.whatsapp-tooltip {
    position: absolute;
    right: 84px;
    top: 50%;
    transform: translateY(-50%);
    background: #2c3e50;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip:after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #2c3e50;
}

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 90px;
}

/* Pulse animation for WhatsApp icon */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive adjustments for WhatsApp widget */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 100px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 66px;
        height: 66px;
    }
    
    .whatsapp-icon {
        width: 36px;
        height: 36px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on mobile for better UX */
    }
}

@media (max-width: 480px) {
    .whatsapp-widget {
        bottom: 100px;
        right: 15px;
    }
    
    .whatsapp-button {
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-icon {
        width: 34px;
        height: 34px;
    }
}

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

/* Animation classes for jQuery */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

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

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

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

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