/* ============================================
   CSS Variables for Easy Customization
   ============================================ */
:root {
    --primary-color: #0a2540;
    --secondary-color: #1e5a7a;
    --accent-color: #ff6b35;
    --accent-secondary: #ffa726;
    --text-dark: #1a1a2e;
    --text-light: #6b7c93;
    --bg-light: #f0f4f8;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

.whatsapp-btn-nav {
    background-color: #25D366;
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.whatsapp-btn-nav:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

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

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
    fill: var(--white);
}

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

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.85) 0%, rgba(30, 90, 122, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.typing-text {
    font-size: 1.5rem;
    min-height: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-secondary);
    font-weight: 500;
}


.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--accent-secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* ============================================
   Tagline Section
   ============================================ */
.tagline-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tagline-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tagline-text {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    padding: 5rem 2rem;
    background-color: var(--white);
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
    flex-shrink: 0;
}

.view-more-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    flex: 1;
    min-width: 120px;
}

.view-more-btn:hover {
    background-color: var(--accent-color);
    transform: translateX(5px);
}

.help-me-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #25D366;
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
    min-width: 120px;
}

.help-me-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.help-me-btn .whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* ============================================
   About Page Styles
   ============================================ */
.about-section {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.about-intro-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    background: linear-gradient(135deg, rgba(240, 244, 248, 0.8) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(240, 244, 248, 0.8) 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow);
    overflow: hidden;
}

.about-card-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.about-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-frame {
    padding: 1.5rem;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.logo-frame:hover {
    transform: translateY(-5px);
}

.about-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.about-logo:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 12px 35px rgba(0, 0, 0, 0.15);
}

.about-info-section {
    text-align: left;
}

.about-info-section .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-info-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-continued-content {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
    text-align: left;
}

.about-continued-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.founder-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    border-radius: 15px;
}

.founder-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow);
    margin: 0 auto;
}

.founder-info {
    text-align: center;
}

.founder-name {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.founder-title {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.founder-bio {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: justify;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.mission-box, .vision-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.mission-box h3, .vision-box h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mission-box p, .vision-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

/* ============================================
   Services Page Styles
   ============================================ */
.services-detail-section {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.service-detail {
    margin-bottom: 5rem;
    scroll-margin-top: 100px;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.service-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow);
}

.service-detail-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Video Container with Loading Animation */
.service-video-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow);
    background-color: var(--bg-light);
}

.service-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Loading Spinner */
.video-loading-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-loading-spinner.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.service-detail-content {
    padding: 2rem 0;
}

.service-detail-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: justify;
}

.service-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.service-features-list li {
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    color: #000;
    transition: var(--transition);
    text-align: justify;
}

.service-features-list li:hover {
    background-color: #e0e8f0;
    transform: translateX(5px);
}

/* ============================================
   Service Accordion Styles
   ============================================ */
.service-accordion {
    background-color: var(--white);
    border-radius: 10px;
    border: 2px solid #e0e8f0;
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.service-accordion:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.service-accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background-color: var(--bg-light);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition);
    position: relative;
}

.service-accordion-header:hover {
    background-color: #e8f0f8;
    color: var(--accent-color);
}

.service-accordion-header i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: var(--accent-color);
    margin-left: 1rem;
}

.service-accordion.active .service-accordion-header i {
    transform: rotate(180deg);
}

.service-accordion.active .service-accordion-header {
    background-color: var(--accent-color);
    color: var(--white);
}

.service-accordion.active .service-accordion-header i {
    color: var(--white);
}

.service-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: var(--white);
}

.service-accordion.active .service-accordion-content {
    max-height: 3000px;
    padding: 2rem;
}

.service-accordion-content .service-features-list {
    margin: 0;
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-section {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow);
}

.contact-form-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.submit-btn {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background-color: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.contact-info-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow);
    height: fit-content;
}

.contact-info-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.3rem;
    color: var(--accent-color);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-text {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-detail-text strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.3rem;
}

.phone-number-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.phone-number-item a:first-child {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

.phone-number-item a:first-child:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.call-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.call-now-btn:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230, 126, 34, 0.3);
}

.call-now-btn i {
    font-size: 0.85rem;
}

.whatsapp-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #25D366;
    color: var(--white);
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.whatsapp-contact-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-contact-btn .whatsapp-icon {
    width: 18px;
    height: 18px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.map-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.map-container-full {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
}

.map-container-full iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.6;
}

/* Icons that are direct children of li (for Contact Info section) */
.footer-links li > i {
    color: var(--accent-color);
    margin-top: 0.2rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-secondary);
}

.footer-links a i {
    color: var(--accent-color);
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
    transition: var(--transition);
}

/* Smaller circle icons for Services section bullets */
.footer-links a i.fa-circle {
    font-size: 0.5rem;
    width: 12px;
    vertical-align: middle;
}

.footer-links a:hover i {
    color: var(--accent-secondary);
    transform: scale(1.1);
}

.footer-links a:hover i.fa-circle {
    transform: scale(1.2);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Loading Screen - Creative Animation
   ============================================ */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    overflow: hidden;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Animated Particles */
.loader-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    width: 6px;
    height: 6px;
}

.particle:nth-child(2) {
    left: 20%;
    top: 60%;
    animation-delay: 1s;
    width: 10px;
    height: 10px;
}

.particle:nth-child(3) {
    left: 30%;
    top: 40%;
    animation-delay: 2s;
    width: 8px;
    height: 8px;
}

.particle:nth-child(4) {
    left: 50%;
    top: 10%;
    animation-delay: 0.5s;
    width: 7px;
    height: 7px;
}

.particle:nth-child(5) {
    left: 60%;
    top: 70%;
    animation-delay: 1.5s;
    width: 9px;
    height: 9px;
}

.particle:nth-child(6) {
    left: 70%;
    top: 30%;
    animation-delay: 2.5s;
    width: 6px;
    height: 6px;
}

.particle:nth-child(7) {
    left: 80%;
    top: 50%;
    animation-delay: 0.8s;
    width: 8px;
    height: 8px;
}

.particle:nth-child(8) {
    left: 90%;
    top: 15%;
    animation-delay: 1.8s;
    width: 7px;
    height: 7px;
}

.particle:nth-child(9) {
    left: 15%;
    top: 80%;
    animation-delay: 0.3s;
    width: 9px;
    height: 9px;
}

.particle:nth-child(10) {
    left: 85%;
    top: 85%;
    animation-delay: 1.2s;
    width: 6px;
    height: 6px;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -50px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, -80px) scale(0.8);
        opacity: 1;
    }
    75% {
        transform: translate(40px, -30px) scale(1.1);
        opacity: 0.7;
    }
}

/* Animated Waves */
.loader-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: waveAnimation 8s ease-in-out infinite;
}

.wave-1 {
    animation-delay: 0s;
    opacity: 0.7;
}

.wave-2 {
    animation-delay: 2s;
    opacity: 0.5;
    height: 120px;
}

.wave-3 {
    animation-delay: 4s;
    opacity: 0.3;
    height: 140px;
}

@keyframes waveAnimation {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-20px);
    }
}

/* Logo Container */
.loader-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-company-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3),
                 0 0 20px rgba(255, 107, 53, 0.3);
    animation: companyNameGlow 2s ease-in-out infinite alternate;
    margin-bottom: 0.5rem;
}

@keyframes companyNameGlow {
    0% {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3),
                     0 0 20px rgba(255, 107, 53, 0.3);
    }
    100% {
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4),
                     0 0 30px rgba(255, 107, 53, 0.5),
                     0 0 40px rgba(255, 167, 38, 0.3);
    }
}

.loader-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo-ring {
    position: absolute;
    width: 280px;
    height: 280px;
    border: 3px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    animation: rotateRing 3s linear infinite;
}

.loader-logo-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--accent-color);
}

@keyframes rotateRing {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader-logo {
    width: 200px;
    height: auto;
    position: relative;
    z-index: 2;
    animation: logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

.loader-logo-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Text Animation */
.loader-text-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.loader-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
                     0 0 20px rgba(255, 107, 53, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                     0 0 30px rgba(255, 107, 53, 0.6),
                     0 0 40px rgba(255, 167, 38, 0.4);
    }
}

.loader-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-color);
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    40% {
        transform: translateY(-15px) scale(1.2);
        opacity: 1;
    }
}

/* ============================================
   Responsive Design - Mobile First
   ============================================ */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .logo-text {
        display: block;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founder-section {
        grid-template-columns: 1fr 1.5fr;
    }
    
    .founder-info {
        text-align: left;
    }
    
    .mission-vision {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-detail-header {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-card-content {
        grid-template-columns: 1fr 2fr;
        gap: 3rem;
        align-items: center;
    }
    
    .about-logo-section {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-features-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile Menu Styles */
@media (max-width: 767px) {
    .header {
        padding: 0.75rem 0;
    }
    
    .header-container {
        padding: 0 1rem;
        gap: 0.5rem;
        align-items: center;
    }
    
    .logo-container {
        flex: 1;
        min-width: 0;
        gap: 0.5rem;
        align-items: center;
    }
    
    .logo-img {
        height: 40px;
        flex-shrink: 0;
    }
    
    .logo-text {
        display: block !important;
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--primary-color);
        line-height: 1.2;
        flex: 1;
        min-width: 0;
    }
    
    .menu-toggle {
        display: flex;
        flex-shrink: 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        box-shadow: 0 4px 15px var(--shadow);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .whatsapp-btn-nav {
        width: 100%;
        justify-content: center;
    }
    
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .phone-number-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .call-now-btn {
        width: 100%;
        justify-content: center;
    }
    
    .whatsapp-contact-btn {
        width: 100%;
        justify-content: center;
    }
    
    .floating-whatsapp svg {
        width: 30px;
        height: 30px;
    }
    
    .service-buttons {
        flex-direction: column;
    }
    
    .view-more-btn,
    .help-me-btn {
        width: 100%;
        min-width: auto;
    }
    
    .loader-logo {
        width: 150px;
    }
    
    .loader-logo-ring {
        width: 220px;
        height: 220px;
    }
    
    .loader-logo-glow {
        width: 200px;
        height: 200px;
    }
    
    .loader-text {
        font-size: 1.2rem;
    }
    
    .contact-section {
        padding: 3rem 1.5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info-box {
        padding: 1.5rem;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .map-container-full {
        margin: 2rem auto 0;
        padding: 0;
    }
    
    .map-container-full iframe {
        height: 350px;
    }
    
    .loader-company-name {
        font-size: 1.3rem;
    }
    
    .loader-content {
        gap: 1.5rem;
    }
    
    /* Hero Section Mobile Adjustments */
    .hero-section {
        padding-top: 90px;
        min-height: calc(100vh - 90px);
        align-items: flex-start;
        padding-bottom: 2rem;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
        margin-top: 1rem;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        padding-top: 0.5rem;
    }
    
    .typing-text {
        font-size: 1.4rem;
        min-height: 3.5rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-description {
        font-size: 1.15rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 0.875rem 2rem;
    }
}

/* Success Message Modal Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

