/* ====================
   GLOBAL STYLES
==================== */
:root {
    --primary-dark-blue: #0A2AEB;
    --primary-bright-blue: #217DFF;
    --primary-light-blue: #6AB9FF;
    --light-gray: #E0E0E0;
    --gradient-blue: linear-gradient(135deg, #217DFF 0%, #6AB9FF 100%);
    --gradient-dark: linear-gradient(135deg, #0A2AEB 0%, #217DFF 100%);
    --shadow-light: 0 4px 20px rgba(33, 125, 255, 0.15);
    --shadow-medium: 0 8px 30px rgba(10, 42, 235, 0.2);
    --shadow-heavy: 0 15px 50px rgba(10, 42, 235, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
}

/* ====================
   NAVIGATION
==================== */
.navbar {
    background: rgba(10, 42, 235, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 42, 235, 0.98) !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.8rem;
    color: white !important;
}

.logo-img {
    height: 50px;
    width: auto;
    margin-right: 15px;
    border-radius: 8px;
}

.brand-text {
    background: linear-gradient(to right, #ffffff, #6AB9FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 10px 15px !important;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ====================
   HERO SECTION
==================== */
.hero-section {
    background: var(--gradient-dark);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(10px); }
    100% { transform: translateY(0) translateX(0); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn:active {
    transform: translateY(-1px);
}

.hero-buttons .btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(to right, #ffffff, #6AB9FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.tech-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    perspective: 1000px;
}

.icon-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.icon-item:hover {
    transform: translateY(-10px) rotateX(10deg);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow-heavy);
}

.icon-item i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
    color: white;
}

.icon-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* ====================
   SECTION TITLES
==================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ====================
   SERVICES SECTION
==================== */
.services-section {
    padding: 100px 0;
    background: #fafafa;
}

.service-category {
    margin-bottom: 60px;
}

.category-header {
    position: relative;
    margin-bottom: 40px;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin-bottom: 15px;
    display: inline-block;
    padding: 10px 20px;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-light);
    border: 2px solid var(--light-gray);
}

.category-title i {
    color: var(--primary-bright-blue);
}

.category-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-bright-blue);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin: 15px 0;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    min-height: 80px;
}

.service-btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-bright-blue);
    background: var(--primary-bright-blue);
    color: white;
    position: relative;
    overflow: hidden;
}

.service-btn:hover {
    background: white;
    color: var(--primary-bright-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(33, 125, 255, 0.3);
}

.service-btn:active {
    transform: translateY(-1px);
}

.service-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(33, 125, 255, 0.25);
}

/* Form buttons */
.btn-primary {
    background: var(--gradient-blue);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(33, 125, 255, 0.4);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.back-to-top.show {
    display: flex;
}

/* Modal buttons */
.modal .btn {
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
}

/* Social icons */
.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-medium);
}

/* Button disabled states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Loading states */
.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ====================
   PROJECTS SECTION
==================== */
.projects-section {
    padding: 100px 0;
    background: white;
}

.project-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    height: 100%;
    background: white;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 42, 235, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay .btn {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay .btn {
    transform: translateY(0);
}

.project-info {
    padding: 20px;
}

.project-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-dark-blue);
}

.project-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* ====================
   ABOUT SECTION
==================== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.ceo-profile {
    position: relative;
    text-align: center;
}

.ceo-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid white;
    box-shadow: var(--shadow-heavy);
    margin: 0 auto;
    display: block;
    transition: all 0.4s ease;
}

.ceo-profile:hover .ceo-image {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(10, 42, 235, 0.4);
}

.ceo-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ceo-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin: 30px 0 10px;
}

.ceo-title {
    font-size: 1.2rem;
    color: var(--primary-bright-blue);
    font-weight: 500;
    margin-bottom: 20px;
}

.ceo-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.credential-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.credential-item .fa-graduation-cap,
.credential-item .fa-award,
.credential-item .fa-lightbulb {
    font-size: 1.5rem;
    color: var(--primary-bright-blue);
    margin-right: 15px;
    min-width: 30px;
}

.credential-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.credential-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.ceo-website-btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Why Choose Us */
.why-choose-section {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    margin-top: 50px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.feature-box h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-dark-blue);
}

.feature-box p {
    color: #666;
    line-height: 1.6;
}

/* ====================
   CONTACT SECTION
==================== */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-dark-blue);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: white;
    box-shadow: var(--shadow-light);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    min-width: 50px;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.contact-item p {
    margin: 0 0 5px 0;
}

.contact-item p a {
    color: var(--primary-bright-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-item p a:hover {
    text-decoration: underline;
}

.contact-item small {
    color: #888;
    font-size: 0.85rem;
}

.social-links h4 {
    margin-bottom: 15px;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-medium);
}

/* Contact Form */
.contact-form-container {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.contact-form-container h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-dark-blue);
    margin-bottom: 25px;
}

.form-control {
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.form-control:focus {
    border-color: var(--primary-bright-blue);
    box-shadow: 0 0 0 0.25rem rgba(33, 125, 255, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary-bright-blue);
    border-color: var(--primary-bright-blue);
}

/* Map Section */
.map-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-top: 50px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

/* ====================
   FOOTER
==================== */
.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 70px 0 30px;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    border-radius: 10px;
}

.footer h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(to right, #ffffff, #6AB9FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-divider {
    background: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.copyright, .developed-by {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.developed-by i {
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ====================
   MODALS
==================== */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow-heavy);
}

.modal-header {
    background: var(--gradient-blue);
    color: white;
    border-radius: 20px 20px 0 0;
    border: none;
}

.modal-title {
    font-weight: 600;
}

.booking-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-bright-blue);
}

.delivery-guarantee {
    background: rgba(40, 167, 69, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* ====================
   FLOATING BUTTONS
==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.back-to-top.show {
    display: flex;
}

/* ====================
   RESPONSIVE DESIGN
==================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .tech-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.7rem;
        padding: 8px 15px;
    }
    
    .ceo-image {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .tech-icons {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .category-title {
        font-size: 1.5rem;
        padding: 6px 12px;
    }
    
    .category-subtitle {
        font-size: 1rem;
    }
    
    .project-card {
        margin-bottom: 25px;
    }
    
    .ceo-badge {
        bottom: 10px;
        right: 10px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .why-choose-section {
        padding: 30px 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 80px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .ceo-image {
        width: 200px;
        height: 200px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .modal-dialog {
        margin: 10px;
    }
}

/* ====================
   ANIMATIONS
==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====================
   LOADING ANIMATION
==================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ====================
   UTILITY CLASSES
==================== */
.text-primary {
    color: var(--primary-dark-blue) !important;
}

.bg-gradient-blue {
    background: var(--gradient-blue) !important;
}

.shadow-custom {
    box-shadow: var(--shadow-medium) !important;
}

.rounded-custom {
    border-radius: 20px !important;
}

.transition-all {
    transition: all 0.3s ease !important;
}