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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(52, 152, 219, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo h2 {
    color: #16a085;
    font-size: 100%;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #16a085;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #16a085;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 50%, #27ae60 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 160, 133, 0.8) 0%, rgba(26, 188, 156, 0.8) 50%, rgba(39, 174, 96, 0.8) 100%);
    z-index: 2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.btn-primary {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(22, 160, 133, 0.3);
}

.btn-primary::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.6s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #138d75 0%, #16a085 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 160, 133, 0.4);
}

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

.btn-secondary {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(22, 160, 133, 0.3);
}

.btn-secondary::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.6s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #138d75 0%, #16a085 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 160, 133, 0.4);
}

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

/* Enhanced button animations */
.btn {
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(22, 160, 133, 0.3);
}

.btn:active {
    transform: translateY(-1px);
}

/* Ensure all buttons are clickable */
.btn, .btn-primary, .btn-secondary, .service-card .btn {
    cursor: pointer !important;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
}

/* Force button styling */
.service-card .btn {
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 10;
    position: relative;
}

/* Debug styles - make buttons very obvious */
.service-card .btn,
.service-card .btn-secondary {
    border: 2px solid #16a085 !important;
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%) !important;
    color: white !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Service card button specific styling */
.service-card .btn,
.service-card .btn-secondary {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(22, 160, 133, 0.3);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-card .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.6s ease;
}

.service-card .btn:hover {
    background: linear-gradient(135deg, #138d75 0%, #16a085 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 160, 133, 0.4);
}

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

.service-card .btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(22, 160, 133, 0.3);
}

.service-card .btn:active {
    transform: translateY(-1px);
}

.service-card .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.6s ease;
}

.service-card .btn:hover {
    background: linear-gradient(135deg, #138d75 0%, #16a085 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 160, 133, 0.4);
}

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

/* Add shimmer effect for btn-secondary buttons */
.service-card .btn-secondary::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.6s ease;
}

.service-card .btn-secondary:hover::before {
    left: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #16a085;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #16a085, #1abc9c);
    border-radius: 2px;
}

.section-header h2::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: #e8f8f5;
    border-radius: 1px;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    padding-top: 20px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8fbfa;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(22, 160, 133, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 188, 156, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
}

.tagline {
    font-size: 1.3rem;
    font-weight: 600;
    color: #16a085;
    font-style: italic;
    margin: 30px 0;
}

.about-image-real {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(22, 160, 133, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.about-image-real:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 80px rgba(22, 160, 133, 0.25);
}

.image-placeholder i {
    font-size: 4rem;
    color: #16a085;
    margin-bottom: 20px;
}

.image-placeholder h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.image-placeholder p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-us {
    padding: 100px 0;
    background: white;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.why-us-text {
    padding-right: 20px;
}

.why-us-text p {
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.8;
    font-size: 1.1rem;
}

.why-us-text p strong {
    color: #16a085;
    font-weight: 600;
    position: relative;
    padding: 0 2px;
}

.why-us-text p strong::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #16a085, #1abc9c);
    opacity: 0.3;
    border-radius: 1px;
}

.why-us-text .btn {
    margin-top: 30px;
    display: inline-block;
}

.why-us-image {
    text-align: center;
}

.why-us-image-real {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(22, 160, 133, 0.2);
    transition: transform 0.3s ease;
}

.why-us-image-real:hover {
    transform: scale(1.02);
}

/* Values Section */
.values {
    padding: 100px 0;
    background: #f8fbfa;
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 80%, rgba(22, 160, 133, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 20%, rgba(26, 188, 156, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(22, 160, 133, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(232, 248, 245, 0.6);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(22, 160, 133, 0.03), transparent);
    transition: left 0.6s ease;
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #16a085;
    box-shadow: 0 20px 60px rgba(22, 160, 133, 0.15);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: #16a085;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.value-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.value-card p {
    color: #7f8c8d;
    line-height: 1.7;
}

.vision-mission {
    margin-top: 60px;
}

.vision-content, .mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.vision-content::after, .mission-content::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(22, 160, 133, 0.3), transparent);
    border-radius: 1px;
}

.vision-text {
    padding-right: 20px;
}

.mission-text {
    padding-left: 20px;
}

.vision-text h3, .mission-text h3 {
    color: #16a085;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.vision-text p, .mission-text p {
    color: #7f8c8d;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.vision-text .btn, .mission-text .btn {
    margin-top: 20px;
    display: inline-block;
}

.vision-image, .mission-image {
    text-align: center;
}

.vision-image-real, .mission-image-real {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(22, 160, 133, 0.2);
    transition: transform 0.3s ease;
}

.vision-image-real:hover, .mission-image-real:hover {
    transform: scale(1.02);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

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

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(22, 160, 133, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(232, 248, 245, 0.6);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 160, 133, 0.02) 0%, transparent 50%, rgba(26, 188, 156, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: #16a085;
    box-shadow: 0 25px 80px rgba(22, 160, 133, 0.18);
}

.service-card:hover::after {
    opacity: 1;
}

.service-image {
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid #e8f8f5;
}

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

.service-card:hover .service-image-real {
    transform: scale(1.05);
}

.service-card h3 {
    color: #16a085;
    margin: 25px 25px 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card p {
    color: #2c3e50;
    margin: 0 25px 25px;
    line-height: 1.7;
}

.service-card .btn {
    margin: 0 25px 25px;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-card .btn:hover {
    background: linear-gradient(135deg, #138d75 0%, #16a085 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 160, 133, 0.4);
}

.service-card .btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(22, 160, 133, 0.3);
}

.service-card .btn:active {
    transform: translateY(-1px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8fbfa;
}

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

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(22, 160, 133, 0.1);
    border: 1px solid #e8f8f5;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e8f8f5;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

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

.contact-info {
    color: #2c3e50;
}

.contact-info h3 {
    color: #16a085;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #7f8c8d;
}

.contact-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info i {
    color: #16a085;
    font-size: 1.2rem;
    width: 20px;
}

.social-links {
    margin-bottom: 30px;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #16a085;
    color: white;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    margin-right: 15px;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #138d75;
}

.working-hours {
    margin-bottom: 25px;
}

.working-hours p {
    margin-bottom: 10px;
    color: #2c3e50;
}

.toll-free h4 {
    color: #16a085;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #16a085;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Enhanced spacing for better visual hierarchy */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Subtle scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #16a085, #1abc9c);
    transform-origin: left;
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-indicator.visible {
    opacity: 1;
}

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

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

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

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

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

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

.slide-in-bottom {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s ease;
}

.slide-in-bottom.animate {
    opacity: 1;
    transform: translateY(0);
}

.rotate-in {
    opacity: 0;
    transform: rotate(-10deg) scale(0.8);
    transition: all 0.8s ease;
}

.rotate-in.animate {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.bounce-in {
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animations for grid items */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stagger-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-item:nth-child(6) { transition-delay: 0.6s; }

/* Parallax effect for hero */
.hero {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 50%, #27ae60 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

/* Hover animations */
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

/* Loading animation for images */
.image-placeholder {
    position: relative;
    overflow: hidden;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content,
    .contact-content,
    .vision-mission {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid,
    .values-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* WhatsApp Floating Icon */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: white;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(22, 160, 133, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(22, 160, 133, 0.9));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f8fbfa;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(22, 160, 133, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.testimonial-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #16a085;
}

.client-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content p {
    font-style: italic;
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-content h4 {
    color: #16a085;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-content span {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Responsive WhatsApp icon */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-us-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .why-us-text {
        padding-right: 0;
        order: 2;
    }
    
    .why-us-image {
        order: 1;
    }
    
    .why-us-image-real {
        max-width: 100%;
    }
    
    .vision-content, .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .vision-text, .mission-text {
        padding-right: 0;
        order: 2;
    }
    
    .vision-image, .mission-image {
        order: 1;
    }
    
    .vision-image-real, .mission-image-real {
        max-width: 100%;
    }
}
