/* CSS شامل لموقع العنقاء */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    direction: rtl;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Reset any elements that might interfere with header */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Top Bar Styles */
.top-bar {
    background: #04a887;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    width: 100%;
    box-sizing: border-box;
    height: 40px;
    margin: 0;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.top-bar-text {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
    white-space: nowrap;
    flex-shrink: 0;
}

.top-bar-text i {
    font-size: 12px;
}

.phone-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #00d4aa;
}

.whatsapp-links {
    display: flex;
    gap: 15px;
    margin-right: 20px;
    flex-shrink: 0;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    padding: 5px 10px;
    background: rgba(37, 211, 102, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background: #25d366;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-link i {
    font-size: 14px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.social-link {
    color: white;
    text-decoration: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Header Styles */
.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    border: none;
    outline: none;
    height: 80px;
    display: flex;
    align-items: center;
    margin: 0;
}

.main-header.scrolled {
    background: rgba(255,255,255,0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.main-header.scrolled .logo-title {
    font-size: 22px;
}

.main-header.scrolled .logo-subtitle {
    font-size: 11px;
}

.main-header.scrolled .logo-image {
    width: 40px;
    height: 40px;
}

.main-header.scrolled .nav-link {
    padding: 10px 14px;
    font-size: 13px;
}

.main-header.scrolled .user-dropdown-toggle {
    padding: 6px 10px;
    font-size: 13px;
}

.main-header.scrolled .user-avatar {
    width: 28px;
    height: 28px;
    font-size: 12px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    z-index: 1002;
    position: relative;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-image {
    width: 45px;
    height: 45px;
    margin-left: 12px;
    flex-shrink: 0;
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    background: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 22px;
    font-weight: bold;
    color: #04a887;
    line-height: 1.1;
    margin-bottom: 2px;
}

.logo-subtitle {
    font-size: 11px;
    color: #666;
    line-height: 1.2;
    white-space: nowrap;
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin: 0 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    background: #04a887;
    color: white;
}

.nav-link i {
    margin-left: 8px;
    font-size: 14px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    z-index: 1001;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background: #f8f9fa;
    color: #04a887;
}

.dropdown-link i {
    margin-left: 10px;
    width: 16px;
}

.dropdown-icon {
    margin-right: 5px;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.header-actions .btn {
    padding: 10px 16px;
    font-size: 13px;
    min-width: 100px;
}

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

.user-name {
    color: #04a887;
    font-weight: 600;
    font-size: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    min-width: 120px;
    justify-content: center;
}

.btn-primary {
    background: #04a887 !important;
    color: white !important;
    border-color: #04a887 !important;
}

.btn-primary:hover {
    background: #038a73 !important;
    border-color: #038a73 !important;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #04a887;
    border: 2px solid #04a887;
}

.btn-outline:hover {
    background: #04a887;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(4, 168, 135, 0.3);
}

.btn i {
    margin-left: 8px;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background: #5a6268;
    border-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1002;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-logo {
    display: flex;
    align-items: center;
    z-index: 1002;
    position: relative;
}

.mobile-logo-image {
    width: 40px;
    height: 40px;
    margin-left: 10px;
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.mobile-logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #04a887;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: #f8f9fa;
    color: #04a887;
}

.mobile-nav-link i {
    margin-left: 15px;
    width: 20px;
}

.mobile-actions {
    padding: 20px;
    border-top: 1px solid #eee;
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
}

/* Main Content */
.main-content {
    margin-top: 100px;
    min-height: calc(100vh - 100px);
    position: relative;
    z-index: 1;
    background: #fff;
    padding-top: 20px;
}

/* Ensure no elements overlap with header */
.hero,
.section,
.stats-section,
.packages-section,
.process-section,
.projects-section,
.team-section,
.testimonials-section,
.cta-section {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .top-bar-container {
        padding: 0 20px;
        gap: 8px;
    }
    
    .top-bar-left {
        gap: 15px;
    }
    
    .top-bar-text {
        font-size: 13px;
    }
    
    .whatsapp-links {
        gap: 10px;
    }
    
    .social-links {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .logo-section {
        flex: 1;
        min-width: 0;
    }
    
    .logo-link {
        gap: 8px;
    }
    
    .logo-title {
        font-size: 18px;
    }
    
    .logo-subtitle {
        font-size: 10px;
        display: none;
    }
    
    .nav-item {
        margin: 0 3px;
    }
    
    .nav-link {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        background: none;
        border: none;
        color: #333;
        font-size: 24px;
        cursor: pointer;
        padding: 10px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(4, 168, 135, 0.1);
        color: #04a887;
    }
    
    .mobile-menu {
        display: block;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }
    
    .mobile-menu.active {
        transform: translateY(0);
    }
    
    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-menu .nav-item {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .mobile-menu .nav-link {
        display: block;
        padding: 15px 20px;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .mobile-menu .nav-link:hover {
        background: rgba(4, 168, 135, 0.1);
        color: #04a887;
    }
    
    .mobile-menu .dropdown-menu {
        position: static;
        background: #f8f9fa;
        box-shadow: none;
        border: none;
        display: none;
    }
    
    .mobile-menu .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .auth-buttons {
        gap: 5px;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: flex;
        height: 35px;
        font-size: 12px;
    }
    
    .top-bar-container {
        padding: 0 15px;
        flex-direction: column;
        height: auto;
        min-height: 35px;
        gap: 5px;
    }
    
    .top-bar-left {
        gap: 10px;
        flex: none;
        width: 100%;
        justify-content: center;
    }
    
    .top-bar-right {
        display: none;
    }
    
    .top-bar-text {
        font-size: 11px;
    }
    
    .top-bar-right {
        display: none;
    }
    
    .whatsapp-links {
        display: none; /* Hide WhatsApp links on mobile */
    }
    
    .main-header {
        top: 35px;
        position: fixed;
        width: 100%;
        z-index: 1000;
        height: 70px;
        display: flex;
        align-items: center;
    }
    
    .header-container {
        padding: 0 15px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .main-content {
        margin-top: 105px;
        padding-top: 15px;
    }
    
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-actions .btn {
        display: none;
    }
    
    .logo-title {
        font-size: 18px;
    }
    
    .logo-subtitle {
        font-size: 9px;
    }
    
    .header-container {
        padding: 0 15px;
        height: 70px;
        gap: 10px;
    }
    
    .header-actions {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .main-header {
        height: 60px;
    }
    
    .header-container {
        padding: 0 10px;
        height: 60px;
        gap: 8px;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
        display: block;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .logo-title {
        font-size: 14px;
    }
    
    .logo-subtitle {
        font-size: 8px;
    }
    
    .main-content {
        margin-top: 95px;
        padding-top: 10px;
    }
    
    .header-actions {
        gap: 8px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .main-header {
        height: 55px;
        display: flex;
        align-items: center;
    }
    
    .header-container {
        padding: 0 8px;
        height: 55px;
        gap: 5px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .logo-image {
        width: 25px;
        height: 25px;
        display: block;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .logo-title {
        font-size: 12px;
    }
    
    .logo-subtitle {
        font-size: 7px;
    }
    
    .main-content {
        margin-top: 90px;
        padding-top: 8px;
    }
    
    .header-actions {
        gap: 5px;
    }
}

/* Homepage Styles */
.hero {
    background: linear-gradient(135deg, #04a887 0%, #038a73 50%, #026b5a 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-subtitle i {
    color: #ffd700;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 2rem 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature i {
    color: #4ade80;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.15)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/><circle cx="600" cy="100" r="80" fill="url(%23a)"/><circle cx="100" cy="600" r="90" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.4;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

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

.hero-desc {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Hero buttons have different styling */
.hero .btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    min-width: 160px;
}

/* Hero specific button styles */
.hero .btn-primary {
    background: #04a887;
    color: white;
    border-color: #04a887;
}

.hero .btn-primary:hover {
    background: #038a73;
    border-color: #038a73;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(4, 168, 135, 0.3);
}

.hero .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero .btn-outline:hover {
    background: white;
    color: #04a887;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #04a887, #038a73);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.stats-section {
    background: linear-gradient(135deg, #04a887 0%, #038a73 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Counter Animation */
.counter {
    transition: all 0.3s ease;
}

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

.counter.animate {
    animation: countUp 0.6s ease-out;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(4, 168, 135, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #04a887, #038a73);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(4, 168, 135, 0.2);
}

.service-icon {
    font-size: 4rem;
    color: #04a887;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: #038a73;
}

.service-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.service-desc {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-right: 20px;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #04a887;
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #04a887;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #038a73;
    transform: translateX(-5px);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.about-content h3 {
    color: #04a887;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-content h3 i {
    color: #038a73;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-right: 25px;
}

.values-list li:before {
    content: '★';
    position: absolute;
    right: 0;
    color: #04a887;
    font-size: 1.2rem;
}

.about-highlight {
    background: linear-gradient(135deg, #04a887, #038a73);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

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

.about-highlight i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.about-highlight p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Packages Section */
.packages-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.packages-category {
    margin-bottom: 4rem;
}

.packages-category-title {
    font-size: 1.8rem;
    color: #04a887;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(4, 168, 135, 0.2);
    border-color: #04a887;
}

.package-card.featured {
    border-color: #04a887;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #04a887, #038a73);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.package-price {
    font-size: 2rem;
    color: #04a887;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.package-duration {
    color: #666;
    font-size: 0.9rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-right: 25px;
}

.package-features li:before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #04a887;
    font-weight: bold;
    font-size: 1.2rem;
}

.package-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    background: #04a887;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-cta:hover {
    background: #038a73;
    transform: translateY(-2px);
}

.package-cta.featured {
    background: linear-gradient(135deg, #04a887, #038a73);
}

.packages-cta {
    text-align: center;
    margin-top: 3rem;
}

.packages-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Projects Section */
.projects-section {
    background: #f8f9fa;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(4, 168, 135, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(4, 168, 135, 0.2);
}

.project-category {
    background: linear-gradient(135deg, #04a887, #038a73);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.project-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: #f0f0f0;
    color: #04a887;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.projects-cta {
    text-align: center;
    margin-top: 3rem;
}

.projects-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Team Section */
.team-section {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(4, 168, 135, 0.1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(4, 168, 135, 0.2);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #04a887, #038a73);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.team-name {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-role {
    color: #04a887;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-desc {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.team-description {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
}

.team-description p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(4, 168, 135, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 4rem;
    color: #04a887;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #04a887, #038a73);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.testimonial-name {
    font-weight: 700;
    color: #333;
    margin-bottom: 0.2rem;
}

.testimonial-position {
    color: #04a887;
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #04a887, #038a73);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.process-icon {
    font-size: 3rem;
    color: #04a887;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #04a887 0%, #038a73 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-desc {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #04a887, #00d4aa, #04a887);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-section {
    text-align: right;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    z-index: 1002;
    position: relative;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.footer-brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #04a887;
    margin: 0;
    line-height: 1.2;
}

.footer-brand-desc {
    font-size: 14px;
    color: #ccc;
    margin: 5px 0 0 0;
    line-height: 1.3;
}

.footer-desc {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #04a887;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: #04a887;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-link:hover {
    color: #04a887;
    transform: translateX(-5px);
}

.footer-link i {
    width: 16px;
    text-align: center;
    color: #04a887;
}

.whatsapp-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.whatsapp-footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #25d366;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(37, 211, 102, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-footer-link:hover {
    background: #25d366;
    color: white;
    transform: translateX(-5px);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-footer-link i {
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(4, 168, 135, 0.1);
    color: #04a887;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(4, 168, 135, 0.2);
}

.social-link:hover {
    background: #04a887;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(4, 168, 135, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    color: #04a887;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

.contact-value {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #04a887;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-copyright {
    color: #999;
    font-size: 14px;
}

.footer-credits {
    color: #999;
    font-size: 14px;
}

.footer-credit-link {
    color: #04a887;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit-link:hover {
    color: #00d4aa;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #04a887 !important;
    color: white !important;
    border: none !important;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(4, 168, 135, 0.3);
    transition: all 0.3s ease;
        opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    }

.back-to-top.visible {
        opacity: 1;
    visibility: visible;
        transform: translateY(0);
    }

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(4, 168, 135, 0.4);
    background: #038a73 !important;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Auth Pages Styles */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #04a887 0%, #038a73 100%);
    padding: 20px;
}

.auth-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    padding: 3rem;
    width: 100%;
    max-width: 450px;
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #04a887, #038a73);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #04a887, #038a73);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.auth-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.auth-subtitle {
    color: #666;
    font-size: 1rem;
}

.auth-form {
    margin-bottom: 2rem;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-input:focus {
    outline: none;
    border-color: #04a887;
    background: white;
    box-shadow: 0 0 0 3px rgba(4, 168, 135, 0.1);
}

.form-input.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.form-error {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: none;
}

.form-input.error + .form-error {
    display: block;
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    cursor: pointer;
}

.remember-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #04a887;
}

.forgot-password {
    color: #04a887;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-button {
    width: 100%;
    background: linear-gradient(135deg, #04a887, #038a73);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.auth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(4, 168, 135, 0.3);
}

.auth-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.auth-button.loading .button-text {
    opacity: 0;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

.auth-button.loading .loading-spinner {
    display: block;
}

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

.auth-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
    color: #666;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
    z-index: 1;
}

.auth-divider span {
    background: white;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.social-auth {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-button:hover {
    border-color: #04a887;
    color: #04a887;
    transform: translateY(-2px);
}

.auth-link {
    text-align: center;
    color: #666;
}

.auth-link a {
    color: #04a887;
    text-decoration: none;
    font-weight: 600;
}

.auth-link a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
    .auth-container {
        padding: 10px;
    }
    
    .auth-card {
        padding: 2rem;
    }
    
    .auth-title {
        font-size: 1.5rem;
    }
    
    .social-auth {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Footer Responsive */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo-img {
        width: 40px;
        height: 40px;
        display: block;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-grid {
        padding: 0 20px;
        gap: 25px;
    }
    
    .footer-brand-name {
        font-size: 20px;
    }
    
    .footer-logo-img {
        width: 35px;
        height: 35px;
        display: block;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .footer-bottom-content {
        padding: 0 20px;
    }
    
    .whatsapp-footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .whatsapp-footer-link {
        font-size: 13px;
        padding: 6px 10px;
    }
}

/* Profile Page Styles */
.profile-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.profile-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.tab-button {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #6c757d;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-button:hover {
    background: #e9ecef;
    color: #04a887;
}

.tab-button.active {
    background: #04a887;
    color: white;
}

.tab-content {
    display: none;
    padding: 30px;
}

.tab-content.active {
    display: block;
}

.profile-card {
    background: #fff;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-form {
    max-width: 500px;
}

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

.form-label {
    display: block;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: #fff;
}

.form-input:focus {
    outline: none;
    border-color: #04a887;
    box-shadow: 0 0 0 3px rgba(4, 168, 135, 0.1);
}

.role-display {
    padding: 12px 15px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-weight: 500;
    color: #04a887;
}

.form-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: #04a887;
    color: white;
}

.btn-primary:hover {
    background: #038a73;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 168, 135, 0.3);
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert ul {
    margin: 0;
    padding-right: 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background: linear-gradient(135deg, #04a887, #038a73);
    color: white;
    border-radius: 12px;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.page-description {
    font-size: 18px;
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .profile-tabs {
        flex-direction: column;
    }
    
    .tab-button {
        border-bottom: 1px solid #e9ecef;
    }
    
    .tab-content {
        padding: 20px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .page-description {
        font-size: 16px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Enhanced Header Styles */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Logo Section Improvements */
.logo-section {
    display: flex;
    align-items: center;
    z-index: 1002;
    position: relative;
    transition: all 0.3s ease;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-image {
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-title {
    font-size: 24px;
    font-weight: 700;
    color: #04a887;
    line-height: 1;
    transition: all 0.3s ease;
}

.logo-subtitle {
    font-size: 12px;
    color: #666;
    font-weight: 400;
    line-height: 1;
    transition: all 0.3s ease;
}

/* Navigation Improvements */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #04a887, #038a73);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
}

.nav-link:hover::before {
    opacity: 0.1;
}

.nav-link:hover {
    color: #04a887;
    transform: translateY(-2px);
}

.nav-link.active {
    background: linear-gradient(135deg, #04a887, #038a73);
    color: white;
    box-shadow: 0 4px 15px rgba(4, 168, 135, 0.3);
}

.nav-link i {
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.nav-link span {
    position: relative;
    z-index: 1;
}

/* Dropdown Improvements */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
    padding: 8px 0;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-link:hover {
    background: #f8f9fa;
    color: #04a887;
    padding-right: 25px;
}

.dropdown-link i {
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Button Improvements */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, #04a887, #038a73);
    color: white;
    box-shadow: 0 4px 15px rgba(4, 168, 135, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 168, 135, 0.4);
}

.btn-outline {
    background: transparent;
    color: #04a887;
    border: 2px solid #04a887;
}

.btn-outline:hover {
    background: #04a887;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(4, 168, 135, 0.3);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #04a887;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: #038a73;
}

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

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

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

/* User Dropdown Styles */
.user-dropdown {
    position: relative;
}

.user-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #333;
}

.user-dropdown-toggle:hover {
    background: #e9ecef;
    border-color: #04a887;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: #04a887;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.user-name {
    font-weight: 500;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.user-dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.user-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-info-header {
    padding: 20px;
    background: linear-gradient(135deg, #04a887, #038a73);
    color: white;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar-large {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.user-details h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.user-details p {
    margin: 4px 0 0 0;
    font-size: 13px;
    opacity: 0.9;
}

.dropdown-divider {
    height: 1px;
    background: #e9ecef;
    margin: 8px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #04a887;
}

.dropdown-item i {
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.logout-item {
    color: #dc3545;
}

.logout-item:hover {
    background: #f8d7da;
    color: #dc3545;
}

/* Mobile User Menu Styles */
.mobile-user-info {
    padding: 20px;
    background: linear-gradient(135deg, #04a887, #038a73);
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mobile-user-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.mobile-user-details h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.mobile-user-details p {
    margin: 4px 0 0 0;
    font-size: 14px;
    opacity: 0.9;
}

.mobile-user-menu {
    padding: 0 20px 20px;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    transition: all 0.3s ease;
}

.mobile-menu-item:last-child {
    border-bottom: none;
}

.mobile-menu-item:hover {
    color: #04a887;
    padding-right: 10px;
}

.mobile-menu-item i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.mobile-menu-item.logout-item {
    color: #dc3545;
}

.mobile-menu-item.logout-item:hover {
    color: #dc3545;
}

.mobile-auth-buttons {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-actions {
        gap: 10px;
    }
    
    .auth-buttons {
        gap: 8px;
    }
    
    .user-dropdown-toggle {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .user-avatar {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .user-name {
        max-width: 80px;
    }
    
    .user-dropdown-menu {
        min-width: 250px;
        right: -10px;
    }
}

@media (max-width: 480px) {
    .user-dropdown-toggle {
        padding: 5px 8px;
    }
    
    .user-name {
        display: none;
    }
    
    .user-dropdown-menu {
        min-width: 200px;
        right: -20px;
    }
    
    .logo-title {
        font-size: 20px;
    }
    
    .logo-subtitle {
        font-size: 10px;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .main-header.scrolled .logo-title {
        font-size: 18px;
    }
    
    .main-header.scrolled .logo-subtitle {
        font-size: 9px;
    }
    
    .main-header.scrolled .logo-image {
        width: 30px;
        height: 30px;
    }
    
    .main-header.scrolled .nav-link {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .main-header.scrolled .user-dropdown-toggle {
        padding: 4px 6px;
        font-size: 12px;
    }
    
    .main-header.scrolled .user-avatar {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
}

/* Additional Header Enhancements */
.main-header {
    transition: all 0.3s ease;
}

.header-container {
    transition: all 0.3s ease;
}

.logo-section {
    transition: all 0.3s ease;
}

.nav-menu {
    transition: all 0.3s ease;
}

.header-actions {
    transition: all 0.3s ease;
}

/* Smooth animations for all header elements */
.main-header * {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
.user-dropdown-toggle:focus,
.nav-link:focus,
.btn:focus {
    outline: 2px solid #04a887;
    outline-offset: 2px;
}

/* Loading states */
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

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

/* Header Animation Enhancements */
.main-header {
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hover effects for better interactivity */
.nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 168, 135, 0.2);
}

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

.logo-link:hover {
    transform: translateY(-2px);
}

/* Smooth transitions for dropdown menus */
.dropdown-menu,
.user-dropdown-menu {
    animation: fadeInUp 0.3s ease-out;
}

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

/* Mobile menu enhancements */
.mobile-menu {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* User dropdown arrow animation */
.dropdown-arrow {
    transition: transform 0.3s ease;
}

.user-dropdown-toggle:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Active state for user dropdown */
.user-dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Improved focus states */
.user-dropdown-toggle:focus-visible,
.nav-link:focus-visible,
.btn:focus-visible {
    outline: 2px solid #04a887;
    outline-offset: 2px;
    border-radius: 25px;
}

/* Better contrast for accessibility */
.nav-link.active {
    color: white !important;
    background: linear-gradient(135deg, #04a887, #038a73) !important;
}

.nav-link.active:hover {
    background: linear-gradient(135deg, #038a73, #027a5f) !important;
}

/* Final Header Polish */
.main-header {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-header.scrolled {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* Improved mobile responsiveness */
@media (max-width: 768px) {
    .main-header {
        animation: none; /* Disable animation on mobile for better performance */
    }
    
    .nav-link:hover {
        transform: none; /* Disable hover effects on mobile */
    }
    
    .btn:hover {
        transform: none; /* Disable hover effects on mobile */
    }
    
    .logo-link:hover {
        transform: none; /* Disable hover effects on mobile */
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .nav-link {
        border: 1px solid transparent;
    }
    
    .nav-link:hover {
        border-color: #04a887;
    }
    
    .nav-link.active {
        border-color: #04a887;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .main-header,
    .nav-link,
    .btn,
    .logo-link,
    .dropdown-menu,
    .user-dropdown-menu,
    .mobile-menu {
        animation: none;
        transition: none;
    }
    
    .nav-link:hover,
    .btn:hover,
    .logo-link:hover {
        transform: none;
    }
} 