/* ===== RESET AND BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a5fb4;
    --secondary: #c21010;
    --dark: #1e3a5f;
    --light: #f8f9fa;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --white: #ffffff;
    --black: #212529;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-secondary);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTON STYLES ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #a00d0d;
}

.btn-light {
    background-color: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    background-color: var(--light-gray);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-block {
    width: 100%;
    padding: 15px;
    font-size: 18px;
}

/* ===== SECTION HEADERS ===== */
.section-subtitle {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-intro {
    color: var(--gray);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== TOP HEADER ===== */
.top-header {
    background-color: var(--dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.church-tagline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.church-tagline i {
    color: var(--secondary);
}

.top-header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary);
}

/* ===== MAIN HEADER ===== */
.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo Styles */
.logo {
    flex: 0 0 auto;
    max-width: 350px;
}

.logo a {
    text-decoration: none;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    flex-shrink: 0;
    display: block;
}

.logo-image img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.logo-text {
    flex: 1;
    min-width: 0;
}

.logo-text h1 {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-primary);
    line-height: 1.2;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--dark);
}

.logo-text p {
    font-size: 11px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    white-space: nowrap;
}

/* Navigation List */
.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 0;
}

.nav-item:hover > a,
.nav-item.active > a {
    color: var(--primary);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 4px;
    padding: 10px 0;
    list-style: none;
    min-width: 240px;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--light-gray);
}

.dropdown-menu.wide-dropdown {
    min-width: 280px;
}

.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 5px);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu > li > a {
    padding: 12px 20px;
    display: block;
    white-space: nowrap;
    color: var(--black);
    font-weight: 400;
    transition: var(--transition);
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a.active {
    background-color: var(--light-gray);
    color: var(--primary);
    padding-left: 25px;
}

/* Nested Dropdown */
.nested-dropdown {
    position: relative;
}

.nested-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.nested-dropdown > a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nested-dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 4px;
    padding: 10px 0;
    list-style: none;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid var(--light-gray);
}

.nested-dropdown:hover > .nested-dropdown-menu {
    opacity: 1;
    visibility: visible;
    left: calc(100% + 5px);
}

.nested-dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    white-space: nowrap;
    color: var(--black);
    transition: var(--transition);
}

.nested-dropdown-menu li a:hover,
.nested-dropdown-menu li a.active {
    background-color: var(--light-gray);
    color: var(--primary);
    padding-left: 25px;
}

/* Highlight Button */
.nav-item.highlight a {
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 4px;
}

.nav-item.highlight a:hover {
    background-color: var(--dark);
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.live-btn {
    background-color: #e74c3c;
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.live-btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
    z-index: 1001;
}

/* Dropdown Arrow Animation */
.fa-chevron-down {
    transition: transform 0.3s ease;
}

.dropdown:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

/* Active State Indicators */
.nav-item.active > a {
    color: var(--primary);
    font-weight: 600;
}

.dropdown-menu a.active {
    background-color: rgba(26, 95, 180, 0.1);
    color: var(--primary);
    font-weight: 500;
    border-left: 3px solid var(--primary);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.slide-content {
    position: absolute;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    text-align: center;
    padding: 0 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    animation: fadeInUp 1.5s ease;
}

.slide-subtitle {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.3s both;
}

.slide-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-primary);
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.5s both;
}

.slide-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.7s both;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease 0.9s both;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 3;
}

.slider-prev,
.slider-next {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 18px;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--primary);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--secondary);
    transform: scale(1.2);
}

/* ===== WELCOME SECTION ===== */
.welcome-section {
    padding: 80px 0;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text {
    animation: fadeInLeft 1.5s ease;
}

.welcome-text p {
    margin-bottom: 20px;
    color: var(--gray);
}

.welcome-highlight {
    font-style: italic;
    color: var(--primary);
    border-left: 4px solid var(--secondary);
    padding-left: 15px;
    margin: 25px 0;
    font-size: 18px;
}

.welcome-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat h3 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat p {
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.welcome-image {
    position: relative;
    animation: fadeInRight 1.5s ease;
}

.image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.1);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 20px;
}

.image-caption h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light);
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: fadeInUp 1s ease;
    animation-fill-mode: both;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
    font-family: var(--font-primary);
}

.service-content p {
    color: var(--gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--secondary);
    gap: 12px;
}

/* ===== QUICK INFO SECTION ===== */
.quick-info {
    padding: 80px 0;
    background-color: var(--white);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease;
    animation-fill-mode: both;
}

.info-card:nth-child(1) { animation-delay: 0.2s; }
.info-card:nth-child(2) { animation-delay: 0.4s; }
.info-card:nth-child(3) { animation-delay: 0.6s; }

.info-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.info-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.info-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.info-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.info-link:hover {
    color: var(--secondary);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease;
    animation-fill-mode: both;
}

.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.3s; }
.testimonial-card:nth-child(3) { animation-delay: 0.4s; }
.testimonial-card:nth-child(4) { animation-delay: 0.5s; }

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--primary);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-initials {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    border-radius: 50%;
}

.testimonial-author h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
}

.testimonial-author p {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

.testimonial-icon {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--primary);
    opacity: 0.2;
    font-size: 40px;
    animation: float 3s ease-in-out infinite;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 20px;
}

.testimonial-content p {
    color: var(--gray);
    font-style: italic;
    line-height: 1.7;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--secondary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.testimonial-category {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-category.healing {
    background-color: rgba(46, 204, 113, 0.1);
    color: #27ae60;
}

.testimonial-category.breakthrough {
    background-color: rgba(52, 152, 219, 0.1);
    color: #2980b9;
}

.testimonial-category.ministry {
    background-color: rgba(155, 89, 182, 0.1);
    color: #8e44ad;
}

.testimonial-category.deliverance {
    background-color: rgba(231, 76, 60, 0.1);
    color: #c0392b;
}

.testimonial-category.salvation {
    background-color: rgba(241, 196, 15, 0.1);
    color: #f39c12;
}

.testimonial-date {
    color: var(--gray);
    font-size: 14px;
}

.testimonial-featured {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary);
    color: white;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 3px;
    z-index: 2;
}

.testimonials-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0;
    background-color: var(--light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-text {
    animation: fadeInLeft 1.5s ease;
}

.contact-description {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 18px;
}

.contact-info {
    background-color: var(--warning);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-info i {
    color: var(--primary);
    margin-top: 3px;
    min-width: 20px;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    animation: fadeInRight 1.5s ease;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-secondary);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 95, 180, 0.1);
}

.newsletter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    padding: 12px;
    background: var(--light);
    border-radius: 5px;
    border-left: 3px solid var(--primary);
}

.newsletter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.newsletter-checkbox label {
    color: var(--dark);
    font-size: 14px;
    cursor: pointer;
    flex: 1;
}

.newsletter-checkbox label i {
    color: var(--primary);
    margin-right: 5px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--dark), var(--secondary));
    background-size: 300% 300%;
    animation: gradientBG 8s ease infinite;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.main-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-logo h2 {
    font-size: 20px;
    margin-bottom: 5px;
}

.footer-logo p {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    margin-bottom: 15px;
}

.footer-description {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ffffff;
}

.contact-info i {
    color: var(--secondary);
    min-width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(to right, var(--primary), var(--dark));
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.page-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.3s both;
}

/* ===== ANIMATION KEYFRAMES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== ANIMATION UTILITY CLASSES ===== */
.animate-fade-up { animation: fadeInUp 1s ease forwards; }
.animate-fade-down { animation: fadeInDown 1s ease forwards; }
.animate-fade-left { animation: fadeInLeft 1s ease forwards; }
.animate-fade-right { animation: fadeInRight 1s ease forwards; }
.animate-float { animation: float 3s ease-in-out infinite; }

/* Animation Delays */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .nav-list {
        gap: 15px;
    }
    
    .logo {
        max-width: 300px;
    }
    
    .logo-text h1 {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .logo-image img {
        height: 45px;
        max-width: 140px;
    }
    
    .logo-text h1 {
        font-size: 15px;
    }
    
    .logo-text p {
        font-size: 10px;
    }
}

 
/* ===== MOBILE MENU STYLES ===== */


@media (max-width: 768px) {
    .mobile-toggle {
        display: block !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        padding-top: 80px;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0 !important;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .nav-item > a {
        padding: 15px 20px;
        width: 100%;
        justify-content: space-between;
    }
    
    .dropdown-menu,
    .nested-dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        display: none;
        width: 100%;
        background-color: var(--light) !important;
        border: none;
        transform: none !important;
        left: 0 !important;
    }
    
    .dropdown.active > .dropdown-menu,
    .nested-dropdown.active > .nested-dropdown-menu {
        display: block !important;
    }
    
    .dropdown-menu a,
    .nested-dropdown-menu a {
        padding: 12px 30px !important;
        white-space: normal;
    }
    
    .nested-dropdown.active > a i {
        transform: rotate(90deg);
    }
    
    .nested-dropdown-menu {
        background-color: #f5f5f5 !important;
    }
    
    .nested-dropdown-menu a {
        padding-left: 45px !important;
    }
    
    .top-header-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .slide-title {
        font-size: 32px;
    }
    
    .service-card,
    .info-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .logo {
        max-width: none;
        flex: 1;
    }
    
    .logo-image img {
        height: 40px;
        max-width: 100px;
    }
    
    .logo-text h1 {
        font-size: 14px;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .logo-text p {
        font-size: 9px;
        white-space: normal;
    }
    
    .live-btn span {
        display: none;
    }
    
    .live-btn {
        padding: 8px 12px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 28px;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .slide-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .info-cards,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-image img {
        height: 35px;
        max-width: 80px;
    }
    
    .logo-text h1 {
        font-size: 12px;
    }
    
    .logo-text p {
        font-size: 8px;
    }
    
    .nav-menu {
        width: 250px;
    }
    
    .contact-info p {
        flex-direction: column;
        gap: 5px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

a {
text-decoration: none;
}

/* Force mobile menu styles on all pages */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block !important;
    }
    
    .nav-menu {
        display: block !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        padding-top: 80px;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0 !important;
    }
    
    .nav-list {
        display: block !important;
        flex-direction: column !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .nav-item {
        width: 100% !important;
        display: block !important;
        border-bottom: 1px solid #e9ecef !important;
    }
    
    .nav-item > a {
        padding: 15px 20px !important;
        display: flex !important;
        justify-content: space-between !important;
        width: 100% !important;
    }
}