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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #32373c;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --primary-black: #000000;
    --primary-gray: #333333;
    --primary-white: #ffffff;
    --accent-red: #dc2626;
    --dark-red: #b91c1c;
    --light-gray: #f5f5f5;
    --medium-gray: #6b7280;
    --border-gray: #e5e5e5;
}

/* Smooth animations for all elements */
* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Modern spacing system */
.section {
    padding: clamp(60px, 8vw, 120px) 0;
}

.section-sm {
    padding: clamp(40px, 6vw, 80px) 0;
}

.section-lg {
    padding: clamp(80px, 10vw, 160px) 0;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-black);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-black);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--primary-gray);
    font-weight: 600;
}

h4 {
    font-size: 1.2rem;
    color: var(--primary-gray);
    font-weight: 600;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary-gray);
    font-weight: 400;
}

/* Modern Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

.btn-primary {
    background: var(--accent-red);
    color: var(--primary-white);
    border-color: var(--accent-red);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(185, 28, 28, 0.4);
    border-color: var(--dark-red);
}

.btn-secondary {
    background-color: var(--primary-white);
    color: var(--accent-red);
    border-color: var(--border-gray);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--accent-red);
    color: var(--primary-white);
    border-color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}

.btn-full {
    width: 100%;
}

/* Modern Header */
.header {
    background: var(--primary-black);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: var(--primary-black);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    gap: 2rem;
}

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

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1) contrast(1.1);
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.2);
}

/* Fallback text styles if logo fails to load */
.logo h1 {
    font-size: 1.9rem;
    color: #0f172a;
    margin-bottom: 0;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo span {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.navbar a {
    text-decoration: none;
    color: var(--primary-white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar a:hover {
    color: var(--accent-red);
}

.navbar a:hover::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #25D366;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
}

.header-contact:hover {
    background: rgba(37, 211, 102, 0.15);
    transform: translateY(-1px);
    color: #128C7E;
}

.header-contact i {
    font-size: 1rem;
}

/* Modern Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-white) 0%, #f8f9fa 50%, var(--primary-white) 100%);
    padding: clamp(140px, 15vw, 180px) 0 clamp(80px, 10vw, 120px);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: var(--primary-black);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.4;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-text p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--medium-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(99, 102, 241, 0.2));
    border-radius: 50%;
    filter: blur(30px);
    animation: pulse 4s ease-in-out infinite;
}

/* Hero Form Styles */
.hero-form {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    max-width: 450px;
    width: 100%;
}

.hero-form h3 {
    color: var(--primary-black);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.hero-form h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 50px;
    height: 3px;
    background: var(--accent-red);
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.hero-form .form-group:last-of-type {
    margin-bottom: 2rem;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #f8f9fa;
    color: var(--primary-gray);
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    background: var(--primary-white);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    transform: translateY(-1px);
}

.hero-form textarea {
    resize: vertical;
    min-height: 80px;
}

.hero-form .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-image i {
    font-size: clamp(6rem, 10vw, 10rem);
    color: var(--accent-red);
    opacity: 0.8;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 20px rgba(220, 38, 38, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

/* Modern Services Section */
.services {
    padding: clamp(80px, 10vw, 120px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.3) 50%, transparent 100%);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 3px;
    background: var(--accent-red);
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--medium-gray);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: #fff;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-red);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    transform: translate(30px, -30px);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.3);
}

.service-card:hover::after {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--accent-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(185, 28, 28, 0.4);
}

.service-icon i {
    font-size: 2.2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

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

.service-card p {
    color: var(--primary-gray);
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--primary-gray);
}

.service-card li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #27ae60;
}

.service-link {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--dark-red);
}

/* Modern Why Choose Us Section */
.why-choose-us {
    padding: clamp(80px, 10vw, 120px) 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

.benefit-item {
    text-align: center;
    padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 2vw, 2rem);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.benefit-item:hover::before {
    left: 100%;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-gray) 0%, var(--primary-black) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(50, 55, 60, 0.3);
    transition: all 0.4s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.benefit-icon i {
    font-size: 2.2rem;
    color: white;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon i {
    transform: scale(1.1);
}

.benefit-item h3 {
    margin-bottom: 1.2rem;
    color: var(--primary-black);
    font-size: 1.4rem;
    font-weight: 700;
}

.benefit-item p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Modern About Section */
.about {
    padding: clamp(80px, 10vw, 120px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-header {
    margin-bottom: 3rem;
}

.about-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.about-header h3 {
    color: var(--accent-red);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 0;
}

.about-description {
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-description p {
    color: var(--primary-gray);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}



/* Remove old styles */
.about-image {
    display: none;
}

/* Modern Contact Section */
.contact {
    padding: clamp(80px, 10vw, 120px) 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-gray) 50%, #4a5568 100%);
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact .section-header h2 {
    color: var(--primary-white);
    background: linear-gradient(135deg, var(--primary-white) 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact .section-header p {
    color: rgba(226, 232, 240, 0.9);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(185, 28, 28, 0.4);
}

.contact-icon i {
    color: white;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon i {
    transform: scale(1.1);
}

.contact-details h3 {
    color: #fca5a5;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-details p {
    color: rgba(203, 213, 225, 0.9);
    margin: 0;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Modern Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-red);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(10px);
    color: #334155;
    font-weight: 500;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    background: var(--primary-white);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    transform: translateY(-2px);
}

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

/* Modern Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-gray) 100%);
    color: var(--primary-white);
    padding: clamp(60px, 8vw, 80px) 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(220, 38, 38, 0.5) 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: #fca5a5;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-section h4 {
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(203, 213, 225, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section li {
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-radius: 6px;
    position: relative;
}

.footer-section li:hover {
    padding-left: 10px;
    background: rgba(220, 38, 38, 0.1);
}

.footer-section a {
    color: rgba(203, 213, 225, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: #fca5a5;
    transform: translateX(5px);
}

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

.social-links a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #374151, #4b5563);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    transform: translateY(0);
}

.social-links a:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}


.footer-bottom {
    border-top: 1px solid rgba(71, 85, 105, 0.5);
    padding-top: 2rem;
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-red) 50%, transparent 100%);
    transform: translateX(-50%);
}

.footer-bottom p {
    color: rgba(148, 163, 184, 0.8);
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
}

/* Chatbot Widget Styles */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
    animation: pulse-chat 2s infinite;
}

.chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.chatbot-button i {
    color: var(--primary-white);
    font-size: 1.5rem;
}

.chatbot-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--primary-white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.chatbot-container.active {
    display: flex;
}

.chatbot-header {
    background: var(--accent-red);
    color: var(--primary-white);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--primary-white);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: #f8f9fa;
    scroll-behavior: smooth;
    max-height: 350px;
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.message {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.bot-message {
    justify-content: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.message-content {
    max-width: 85%;
    padding: 0.75rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.bot-message .message-content {
    background: var(--primary-white);
    color: var(--primary-gray);
    border: 1px solid #e1e5e9;
    border-bottom-left-radius: 5px;
}

.user-message .message-content {
    background: var(--accent-red);
    color: var(--primary-white);
    border-bottom-right-radius: 5px;
}

.chatbot-input {
    padding: 1rem;
    background: var(--primary-white);
    border-top: 1px solid #e1e5e9;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.chatbot-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e1e5e9;
    border-radius: 25px;
    outline: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.chatbot-input input:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

.chatbot-input input:focus {
    border-color: var(--accent-red);
}

.chatbot-input button {
    width: 40px;
    height: 40px;
    background: var(--accent-red);
    border: none;
    border-radius: 50%;
    color: var(--primary-white);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chatbot-input button:hover:not(:disabled) {
    background: var(--dark-red);
    transform: scale(1.05);
}

.chatbot-input button:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
    transform: scale(1);
}

/* Typing Indicator */
.typing-indicator .message-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-style: italic;
    color: #888;
}

.typing-dots {
    display: flex;
    gap: 3px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: typing-bounce 1.4s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing-bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

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

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

/* Mobile responsiveness for chatbot */
@media (max-width: 480px) {
    .chatbot-widget {
        bottom: 20px;
        right: 20px;
    }

    .chatbot-container {
        width: 300px;
        height: 450px;
    }

    .chatbot-button {
        width: 55px;
        height: 55px;
    }

    .chatbot-button i {
        font-size: 1.3rem;
    }
}

/* Enhanced Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        gap: 3rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .navbar ul {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: clamp(120px, 12vw, 140px) 0 clamp(60px, 8vw, 80px);
        min-height: 80vh;
    }

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

    .hero-image {
        order: -1;
    }

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



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


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

    .hero-buttons .btn {
        min-width: 250px;
    }

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

/* Mobile phones */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header {
        position: fixed;
    }

    .header-content {
        padding: 0.75rem 0;
    }

    .logo-img {
        height: 40px;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .navbar ul {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .header-contact {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .hero {
        padding: clamp(100px, 15vw, 120px) 0 clamp(40px, 8vw, 60px);
        min-height: 70vh;
    }

    .hero-content {
        gap: 2rem;
    }

    .section {
        padding: clamp(40px, 8vw, 60px) 0;
    }

    .services {
        padding: clamp(50px, 8vw, 70px) 0;
    }

    .why-choose-us {
        padding: clamp(50px, 8vw, 70px) 0;
    }

    .about {
        padding: clamp(50px, 8vw, 70px) 0;
    }

    .contact {
        padding: clamp(50px, 8vw, 70px) 0;
    }

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

    .service-card {
        padding: 1.5rem;
        border-radius: 16px;
    }


    .benefit-item {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }


    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        min-width: unset;
    }

    .contact-form {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .footer {
        padding: 40px 0 15px;
    }

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

    .social-links {
        justify-content: center;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .service-card,
    .benefit-item {
        padding: 1.25rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .hero-form {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .hero-form h3 {
        font-size: 1.5rem;
    }

    .hero-image i {
        font-size: 4rem;
    }
}