/* Refined Base Styles - Professional Light Theme */
:root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --secondary: #475569;
    --accent: #f59e0b;
    --light: #f8fafc;
    --lighter: #ffffff;
    --dark: #1e293b;
    --darker: #0f172a;
    --gray: #94a3b8;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --card-bg: #ffffff;
    --border: #e2e8f0;
    --shadow: rgba(0, 0, 0, 0.05);
    --shadow-hover: rgba(0, 0, 0, 0.1);
    --section-bg: #f1f5f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--light);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Professional Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--lighter);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.25);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--lighter);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--darker);
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    color: var(--secondary);
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

/* ===== NAVBAR REDESIGN ===== */
.navbar {
    position: fixed;
    width: 100%;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: var(--lighter);
    box-shadow: 0 4px 30px var(--shadow-hover);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-img {
    height: 42px;
    width: auto;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--darker);
    letter-spacing: -0.5px;
}

.logo-highlight {
    color: var(--primary);
    position: relative;
}

.logo-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateX(3px);
}

.logo:hover .logo-img {
    transform: rotate(-5deg) scale(1.05);
}

.logo:hover .logo-highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-item {
    position: relative;
    margin: 0 0.5rem;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    font-weight: 500;
    color: var(--dark);
    transition: all 0.3s ease;
    position: relative;
    gap: 6px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 0.1;
    transform: scale(1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-button {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    color: var(--lighter) !important;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
    gap: 8px;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

/* Dropdown Menu Styles */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--lighter);
    min-width: 220px;
    box-shadow: 0 10px 30px var(--shadow-hover);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 15px;
    border: 1px solid var(--border);
    transform: translateY(10px);
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 10px 24px;
    color: var(--dark);
    transition: all 0.3s;
    font-size: 0.9rem;
    gap: 10px;
}

.dropdown-menu a i {
    font-size: 0.8rem;
    width: 18px;
    text-align: center;
}

.dropdown-menu a:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    padding-left: 28px;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 8px;
    transform: translateY(0);
}

.dropdown-icon {
    font-size: 0.75rem;
    transition: transform 0.3s;
    margin-left: 4px;
}

.nav-item.dropdown:hover .dropdown-icon,
.nav-item.dropdown:focus-within .dropdown-icon {
    transform: rotate(180deg);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}

.menu-toggle .bar {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.menu-toggle .bar:nth-child(1) {
    transform-origin: top left;
}

.menu-toggle .bar:nth-child(3) {
    transform-origin: bottom left;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .navbar {
        background-color: var(--lighter);
        backdrop-filter: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--lighter);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        box-shadow: -5px 0 30px var(--shadow);
        transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        padding: 80px 2rem 2rem;
        gap: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
        width: 100%;
        border-radius: 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-link::before {
        display: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-button {
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, -3px);
        width: 30px;
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, 3px);
        width: 30px;
    }

    /* Mobile logo adjustments */
    .logo-img {
        height: 36px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    /* Mobile Dropdown Menu */
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        background: rgba(0,0,0,0.03);
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        transform: none;
    }
    
    .nav-item.dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }
    
    .dropdown-menu a {
        padding-left: 40px;
        font-size: 1rem;
    }
    
    .dropdown-icon {
        margin-left: auto;
        padding: 10px;
        transform: rotate(0deg) !important;
    }
    
    .nav-item.dropdown.active .dropdown-icon {
        transform: rotate(180deg) !important;
    }
}

/* ===== HERO SECTION REDESIGN ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--darker);
    padding-top: 80px;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(90, 91, 92, 0.85) 0%, 
                rgba(82, 88, 105, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 30px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--lighter);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: var(--lighter);
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-buttons .btn-primary:hover {
    background: var(--primary-dark);
    color: var(--lighter);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(164, 169, 180, 0.25);
}

.hero-buttons .btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: var(--lighter);
    padding: 14px 34px;
    border-radius: 6px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.slide-controls {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
}

.slide-prev, .slide-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slide-prev:hover, .slide-next:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.slide-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    background: var(--lighter);
    transform: scale(1.2);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    display: block;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lighter);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-scroll a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        max-width: 90%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        max-width: 280px;
    }
    
    .slide-controls {
        bottom: 120px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-scroll a {
        width: 45px;
        height: 45px;
    }
    
    .slide-controls {
        bottom: 140px;
    }
}
.hero {
    background: linear-gradient(135deg, 
                rgba(111, 112, 115, 0.85) 0%, 
                rgba(120, 121, 125, 0.9) 100%);
}

.hero-slideshow {
    mix-blend-mode: overlay;
}

/* This ensures the slideshow works as a background with the color overlay */
.slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out;
}

/* Make sure the overlay covers the slideshow properly */
.hero-overlay {
    background: transparent;
}

/* ===== SERVICES SECTION - COMPACT VIEW ===== */
.services {
    padding: 70px 0;
    background: var(--lighter);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.services .container {
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.service-card {
    background: var(--card-bg);
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px var(--shadow);
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px var(--shadow-hover);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 24px;
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
    color: var(--darker);
    font-weight: 600;
}

.service-card p {
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
    flex-grow: 1;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    margin-top: 8px;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Section header adjustments */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--darker);
}

.section-header p {
    color: var(--secondary);
    max-width: 550px;
    margin: 0 auto;
    font-size: 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .service-card {
        padding: 22px 18px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 50px 0;
        min-height: auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }
    
    .service-card {
        padding: 20px 18px;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }
    
    .service-icon i {
        font-size: 22px;
    }
    
    .service-card h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 40px 0;
    }
    
    .service-card {
        padding: 18px 15px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .service-card p {
        font-size: 13px;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--section-bg);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-hover);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-desc {
    margin-bottom: 30px;
    font-size: 18px;
    color: var(--secondary);
    line-height: 1.7;
}

.about-features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 20px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--lighter);
}

.contact-content {
    display: flex;
    gap: 50px;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 20px 40px var(--shadow);
    border: 1px solid var(--border);
}

.contact-info {
    flex: 1;
    padding-right: 40px;
}

.contact-info .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.contact-info .section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-info .section-header p {
    color: var(--secondary);
    font-size: 18px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow);
}

.info-item i {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.info-item div {
    flex: 1;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--darker);
}

.info-item p {
    color: var(--secondary);
    margin: 0;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary);
    font-size: 18px;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    color: var(--lighter);
}

/* Contact Form Styles */
.contact-form {
    flex: 1;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 1px solid var(--border);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 28px;
    color: var(--darker);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--secondary);
    margin: 0;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--darker);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--light);
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--lighter);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: none;
    min-height: 140px;
}

.form-group .input-icon {
    position: absolute;
    right: 20px;
    top: 43px;
    color: var(--gray);
}

.contact-form .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Form validation styles */
.form-group.has-error input,
.form-group.has-error textarea {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.help-block {
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.has-error .help-block {
    display: block;
}

/* Alert Styles */
#alert-container {
    position: fixed;
    top: 100px;
    right: 20px;
    width: 350px;
    z-index: 9999;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.4s ease;
    pointer-events: none;
}

#alert-container.alert-show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

#alert-container .alert {
    box-shadow: 0 5px 15px var(--shadow);
    border: none;
    border-left: 4px solid;
    border-radius: 8px;
    padding: 16px 20px;
    position: relative;
    background: var(--lighter);
    margin-bottom: 10px;
}

#alert-container .alert-success {
    border-left-color: var(--success);
    color: #155724;
}

#alert-container .alert-danger {
    border-left-color: var(--danger);
    color: #721c24;
}

#alert-container .alert-info {
    border-left-color: var(--primary);
    color: #0c5460;
}

#alert-container .close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    color: inherit;
    opacity: 0.7;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

#alert-container .close:hover {
    opacity: 1;
}

/* Loading Button Styles */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: var(--lighter);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer */
.footer {
    background: var(--darker);
    color: var(--light);
    padding: 70px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    padding: 0 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 40px;
    margin-right: 12px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lighter);
}

.footer-logo-highlight {
    color: var(--primary);
}

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.7;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--lighter);
    font-size: 15px;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.5px;
    color: var(--lighter);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 12px;
}

.footer-links a:hover {
    color: var(--lighter);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    left: -5px;
}

.footer-contact .contact-item {
    display: flex;
    margin-bottom: 18px;
}

.footer-contact .contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: var(--primary);
    flex-shrink: 0;
    font-size: 14px;
}

.footer-contact .contact-info {
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #333;
}

.modal-body {
    padding: 40px;
    text-align: center;
}

.modal-body i {
    font-size: 60px;
    color: #27ae60;
    margin-bottom: 20px;
}

.modal-body h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.modal-body p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
        padding: 40px;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-info .section-header h2 {
        font-size: 36px;
    }
    
    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        padding-left: 0;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .contact-content {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-item i {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    #alert-container {
        width: 90%;
        left: 5%;
        right: 5%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20% auto;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}