/* Global Styles */
:root {
    --primary-color: #28a745; /* Bootstrap green */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #343a40;
    --header-height: 76px;
    --footer-height: 120px;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color: var(--bg-light);
    font-family: 'Arial', sans-serif;
    min-height: calc(100vh - var(--header-height) - var(--footer-height));
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.header {
    background-color: var(--text-light);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    padding: 0;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    font-weight: bold;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.navbar-brand img {
    filter: brightness(0);
    transition: all 0.3s ease;
}

.navbar-brand img:hover {
    filter: brightness(0) opacity(0.8);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    padding: 1rem !important;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    background-color: var(--primary-color) !important;
    color: var(--text-light) !important;
}

.nav-link.client-portal {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--text-dark) !important;
    padding: 0.5rem 1.2rem;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link.client-portal:hover {
    background-color: rgba(40, 167, 69, 0.2);
    color: var(--text-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Remove outline from navbar-toggler */
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

/* Section Styles */
.section {
    padding: 0;
    display: flex;
    align-items: center;
}

/* Main Content */
main {
    margin-top: var(--header-height);
    flex: 1;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: #333;
    z-index: -1;
}

.social-links {
    margin-bottom: 1rem;
}

.social-link {
    color: var(--text-light);
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
}

.copyright {
    margin: 0;
    font-size: 0.9rem;
}

/* Section Title Styles */
.section-title {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding: 0.5rem 2rem;
    background-color: var(--text-light);
    border: 4px solid var(--primary-color);
    border-radius: 15px;
    box-shadow: 6px 6px 0 var(--primary-color);
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
    left: 50%;
    transform: translateX(-50%) rotate(-1deg);
}

.section-title:hover {
    transform: translateX(-50%) rotate(1deg) scale(1.05);
}

.section-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: -1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: -1;
}

/* Experience Timeline Styles */
#experience {
    padding: 5rem 0 0 0;
}

#experience .section-title {
    margin: 0 !important;
}

.timeline {
    position: relative;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 2rem);
    background-color: #4CAF50;
    top: 1rem;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: #4CAF50;
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    width: 45%;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-content h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-company {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.timeline-date {
    color: #4CAF50;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.timeline-content ul {
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.timeline-content ul li {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.timeline-content ul li:last-child {
    margin-bottom: 0;
}

/* Intro Section Styles */
.intro-content {
    padding: 3rem 0;
}

.intro-greeting {
    font-size: 5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.intro-name {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-description {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 90%;
}

.intro-buttons {
    margin-top: 2.5rem;
}

.intro-buttons .btn-primary {
    padding: 1rem 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.intro-buttons .btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-link {
    font-size: 1.1rem;
    margin-top: 1rem;
}

.team-link-text {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.team-link-text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.team-link-text:hover {
    color: var(--primary-color);
}

.team-link-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.intro-image {
    padding: 1.5rem;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.intro-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 25px;
    transform: rotate(-3deg);
    z-index: -1;
}

.intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg);
    transition: all 0.3s ease;
}

.intro-image:hover img {
    transform: rotate(0deg) scale(1.02);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .header .container {
        padding: 0 1rem;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-collapse {
        background-color: var(--text-light);
        padding: 1rem;
        border-radius: 4px;
    }

    .nav-link {
        margin: 0.5rem 0;
        transition: all 0.2s ease;
    }

    /* Faster animations for mobile */
    .section-title {
        transition: transform 0.15s ease;
    }

    .section-title:hover {
        transform: translateX(-50%) rotate(0deg) scale(1.02);
    }

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

    .intro-greeting {
        font-size: 4rem;
    }

    .intro-name {
        font-size: 2.5rem;
    }

    .intro-description {
        max-width: 100%;
        font-size: 1.2rem;
    }

    .intro-image {
        margin-top: 2rem;
        max-width: 350px;
    }

    .intro-image::before {
        transform: rotate(-2deg);
    }

    .intro-image img {
        transform: rotate(2deg);
    }
}

@media (max-width: 767.98px) {
    :root {
        --header-height: 66px;
        --footer-height: 140px;
    }

    .section {
        padding: 3rem 0;
    }

    /* Remove hover effects on smaller screens */
    .section-title {
        left: 0;
        transform: rotate(-1deg);
        margin-left: 1rem;
    }

    .section-title:hover {
        transform: rotate(0deg) scale(1.02);
    }

    .nav-link {
        transition: all 0.2s ease;
    }

    .nav-link:hover {
        color: var(--primary-color) !important;
    }

    .nav-link.active {
        background-color: var(--primary-color) !important;
        color: var(--text-light) !important;
        transform: scale(1.05);
    }

    .social-link {
        transition: color 0.2s ease;
    }

    .social-link:hover {
        color: var(--primary-color);
    }
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
        height: calc(100% - 2rem);
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-right: 0;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .timeline-company {
        font-size: 0.95rem;
    }

    .timeline-date {
        font-size: 0.85rem;
    }

    .timeline-content p,
    .timeline-content ul li {
        font-size: 0.95rem;
    }
}

/* Skills Section Styles */
#skills {
    background-color: rgba(40, 167, 69, 0.1);
    padding: 5rem 0;
}

.skill-card {
    background-color: var(--text-light);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease;
}

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

.skill-icon {
    font-size: 2rem;
    color: var(--text-dark);
    width: 50px;
    text-align: center;
}

.skill-content {
    flex: 1;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.skill-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.skill-level {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.skill-progress {
    margin-top: 0.5rem;
}

.progress {
    height: 8px;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    background-color: var(--primary-color);
    border-radius: 4px;
}

@media (max-width: 767.98px) {
    #skills .section-title {
        text-align: left;
        margin-left: 1rem;
    }

    .skill-card {
        padding: 1.2rem;
    }

    .skill-icon {
        font-size: 1.8rem;
        width: 40px;
    }

    .skill-name {
        font-size: 1.1rem;
    }

    .skill-level {
        font-size: 0.8rem;
    }
}

/* Services Section */
#services {
    background-color: #f0f7f0;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.service-nav {
    margin-top: 2rem;
}

.service-nav .nav-pills {
    gap: 1rem;
}

.service-nav .nav-link {
    color: #333;
    background-color: white;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.service-nav .nav-link:hover {
    background-color: #e8f5e8;
    border-color: #4CAF50;
}

.service-nav .nav-link.active {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

/* Quote Form Styles */
.quote-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.quote-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Form Styles */
.form-label {
    font-weight: 500;
    color: #555;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    display: block;
    width: 100%;
}

.form-select {
    border: 1px solid #e0e0e0;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    background-color: white;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
    width: 100%;
    display: block;
    min-height: 44px;
    position: relative;
    z-index: 1;
}

.form-select:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
    outline: none;
}

.form-select option {
    padding: 0.5rem;
    font-size: 1rem;
    width: 100%;
    background-color: white;
    color: #333;
    min-height: 44px;
}

.form-control {
    width: 100%;
    display: block;
}

/* Price Display Styles */
.price-display {
    text-align: right;
    padding: 2rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 300px;
}

.starting-from {
    font-size: 1.1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.price {
    font-size: 5rem;
    font-weight: 800;
    color: #4CAF50;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* HIRE ME Button Styles */
.hire-me-btn {
    background-color: #4CAF50;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.hire-me-btn:hover {
    background-color: #43A047;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.hire-me-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Services Background Image */
.services-bg-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    height: 100%;
    background-image: url('../images/services-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 0.1;
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .services-bg-image {
        display: none;
    }
    
    .price-display {
        text-align: center;
        margin-top: 3rem;
        min-height: 200px;
    }
    
    .price {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .service-nav .nav-pills {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .service-nav .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .quote-form {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 3.5rem;
    }
    
    .hire-me-btn {
        padding: 0.8rem 2.5rem;
        font-size: 1.1rem;
    }

    .form-label {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .form-select {
        padding: 0.6rem;
        font-size: 0.95rem;
        border-radius: 6px;
        background-size: 14px 10px;
        padding-right: 2.2rem;
        width: 100%;
        min-height: 44px;
    }

    .form-select option {
        padding: 0.4rem;
        font-size: 0.95rem;
        width: 100%;
        min-height: 44px;
    }

    .mb-3 {
        margin-bottom: 1rem !important;
        width: 100%;
    }

    /* Improve touch target size */
    .form-select,
    .form-select option {
        min-height: 44px;
    }

    /* Ensure form controls take full width */
    .form-control,
    .form-select,
    textarea.form-control {
        width: 100%;
        max-width: 100%;
    }
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: relative;
    z-index: 1050;
}

.modal-dialog {
    max-width: 500px;
    width: 100%;
    margin: 1.75rem auto;
    position: relative;
    z-index: 1051;
}

.modal-header {
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.btn-close {
    padding: 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-body {
    padding: 1.5rem;
    width: 100%;
    position: relative;
    z-index: 1052;
}

.modal-footer {
    border-top: 1px solid #e0e0e0;
    padding: 1.5rem;
}

.form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.modal .btn-primary {
    background-color: #4CAF50;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.modal .btn-primary:hover {
    background-color: #43A047;
    transform: translateY(-1px);
}

.modal .btn-secondary {
    background-color: #f5f5f5;
    border: none;
    color: #333;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.modal .btn-secondary:hover {
    background-color: #e0e0e0;
}

/* Modal Backdrop */
.modal-backdrop.show {
    opacity: 0.7;
}

/* Responsive Modal */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }

    .modal-header {
        padding: 1rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .modal-footer {
        padding: 1rem;
    }

    .modal-title {
        font-size: 1.3rem;
    }

    .form-control {
        padding: 0.6rem;
    }

    .form-select {
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .form-select option {
        font-size: 16px;
    }
}

/* Ensure dropdowns are visible in Chrome dev tools */
select.form-select {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

select.form-select option {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Chat Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: all 0.3s ease;
    transform: translateY(120%);
}

.chat-widget.active {
    transform: translateY(0);
}

.chat-header {
    padding: 15px;
    background: #4CAF50;
    color: white;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-avatar {
    position: relative;
    width: 40px;
    height: 40px;
}

.support-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.status-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4CAF50;
    border: 2px solid white;
}

.status-indicator.offline {
    background: #9e9e9e;
}

.support-details h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.support-details p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.9;
}

.minimize-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
}

.chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 15px;
    background: #f5f5f5;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-input {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    margin-top: 10px;
}

.chat-input input {
    flex: 1;
    border: none;
    padding: 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.chat-input input:focus {
    outline: none;
}

.chat-input button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.chat-input button:hover {
    background: #45a049;
}

.chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 999;
}

.chat-toggle:hover {
    transform: scale(1.1);
    background: #45a049;
}

.chat-toggle.hidden {
    display: none;
}

/* Message Styles */
.message {
    padding: 10px;
    border-radius: 8px;
    max-width: 80%;
    margin-bottom: 10px;
}

.message.system {
    background-color: #f8f9fa;
    color: #666;
    border-left: 3px solid #4CAF50;
    font-size: 0.9rem;
    white-space: pre-line;
    margin: 10px auto;
    max-width: 90%;
}

.message.user {
    background-color: #4CAF50;
    color: white;
    margin-left: auto;
}

.message.support {
    background-color: #e9ecef;
    color: #333;
    margin-right: auto;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .chat-widget {
        width: calc(100% - 40px);
        height: calc(100% - 100px);
        bottom: 80px;
    }

    .chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1100;
    animation: slideIn 0.3s ease-out;
}

.notification.error {
    background: #dc3545;
    border-left: 4px solid #c82333;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification i {
    font-size: 1.2rem;
}

.notification p {
    margin: 0;
    font-size: 0.95rem;
}

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

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

.notification.removing {
    animation: slideOut 0.3s ease-in forwards;
}

/* reCAPTCHA v3 is invisible, so we don't need specific styling */
/* The notification styles below handle any error messages */

/* reCAPTCHA error styling */
.recaptcha-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.recaptcha-error.show {
    display: block;
} 