/* Main CSS Variables */
:root {
    --primary-color: #3498db;
    --primary-light: #5dade2;
    --primary-dark: #2980b9;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --accent-light: #f39c12;
    --text-color: #333;
    --text-light: #f4f4f4;
    --text-dark: #222;
    --bg-color: #fff;
    --bg-light: #f9f9f9;
    --bg-dark: #2c3e50;
    --bg-card: #fff;
    --border-color: #ddd;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 5px;
    --border-radius-lg: 10px;
    --section-padding: 80px 0;
}

/* Dark Mode Variables */
html[data-theme="dark"] {
    --primary-color: #3498db;
    --primary-light: #5dade2;
    --primary-dark: #2980b9;
    --secondary-color: #1d2935;
    --accent-color: #e74c3c;
    --accent-light: #f39c12;
    --text-color: #e0e0e0;
    --text-light: #f4f4f4;
    --text-dark: #bbb;
    --bg-color: #121212;
    --bg-light: #1e1e1e;
    --bg-dark: #0a0a0a;
    --bg-card: #1e1e1e;
    --border-color: #333;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    --shadow-dark: 0 5px 20px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

section {
    padding: var(--section-padding);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 80px;
    height: 80px;
}

.loader svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

#loader-circle {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 202;
    stroke-dashoffset: 202;
    animation: dash 2s ease-in-out infinite;
}

@keyframes dash {
    0% {
        stroke-dashoffset: 202;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -202;
    }
}

.loader-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 1px;
}

/* Theme Toggle Button */
.theme-toggle {
    display: flex;
    align-items: center;
}

#theme-toggle-btn {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

#theme-toggle-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: scale(1.1);
}

html[data-theme="dark"] #theme-toggle-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

#theme-toggle-btn .fa-sun {
    opacity: 0;
    position: absolute;
    transform: rotate(90deg) scale(0.5);
    transition: all 0.3s ease;
}

#theme-toggle-btn .fa-moon {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

html[data-theme="dark"] #theme-toggle-btn .fa-sun {
    opacity: 1;
    transform: rotate(0) scale(1);
}

html[data-theme="dark"] #theme-toggle-btn .fa-moon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    background-color: transparent;
    transition: all 0.3s ease;
}

.navbar.sticky {
    background-color: var(--bg-color);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

html[data-theme="dark"] .navbar.sticky {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    transition: var(--transition);
}

.navbar.sticky .logo img {
    height: 35px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 101;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
}

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

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

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

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

.nav-menu li {
    margin-left: 30px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

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

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Hero Badge */
.badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

html[data-theme="dark"] .badge {
    background-color: rgba(52, 152, 219, 0.2);
}

/* Cart Icon and Counter */
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-icon a {
    position: relative;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition);
}

.cart-icon a:hover {
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-count.bump {
    animation: bump 0.3s ease;
}

@keyframes bump {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Updated Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-light));
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.secondary-btn {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.secondary-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.secondary-btn:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.secondary-btn:hover i {
    transform: translateX(3px);
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.hero-stats .stat {
    display: flex;
    flex-direction: column;
}

.hero-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-color);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--primary-color);
    color: white;
}

.cart-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

#close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

#close-cart:hover {
    transform: scale(1.1);
}

.cart-items {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    animation: fadeIn 0.3s ease;
}

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

.cart-item-details {
    flex-grow: 1;
}

.cart-item-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: bold;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.quantity-btn {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.quantity-input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
}

.remove-cart-item {
    color: var(--accent-color);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.remove-cart-item:hover {
    transform: scale(1.1);
}

.cart-empty {
    text-align: center;
    padding: 50px 0;
    color: #999;
}

.cart-empty i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--border-color);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-light);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.checkout-btn, .inquiry-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
    margin-bottom: 10px;
}

.inquiry-btn {
    background-color: var(--primary-color);
    color: white;
}

.checkout-btn {
    background-color: var(--bg-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.checkout-btn:hover, .inquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Add to Cart Button in Service Cards */
.add-to-cart-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.add-to-cart-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.add-to-cart-btn i {
    font-size: 0.9rem;
}

/* Service Cards Enhancement */
.service-card {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.05;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover::before {
    top: 0;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: white;
}

.service-price {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 10px 0;
}

/* Responsive Cart */
@media (max-width: 768px) {
    .cart-sidebar {
        max-width: 300px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-item-actions {
        margin-top: 10px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* Back to Top Button */
#back-to-top-btn {
    position: fixed;
    bottom: -60px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: bottom 0.3s, background-color 0.3s;
    z-index: 99;
}

#back-to-top-btn.show {
    bottom: 20px;
}

#back-to-top-btn:hover {
    background-color: var(--secondary-color);
}

/* Services Filter */
.services-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--text-color);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Updated Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.05;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover::before {
    top: 0;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-price {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 10px 0;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.7rem;
    text-align: center;
    line-height: 1.2;
}

/* Team Member Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.member-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.8), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.team-member:hover .image-overlay {
    opacity: 1;
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    margin: 0 0 5px;
    font-size: 1.2rem;
    color: var(--text-color);
}

.member-title {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.view-bio-btn {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-top: 10px;
}

.view-bio-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Testimonial Quote Icon */
.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

/* Contact Form with Icons */
.contact-form .form-group {
    margin-bottom: 20px;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
}

.textarea-icon i {
    top: 20px;
    transform: none;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--bg-light);
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(3px);
}

.error-message {
    color: var(--accent-color);
    font-size: 0.8rem;
    margin-top: 5px;
}

.form-status {
    margin-top: 20px;
    padding: 10px;
    border-radius: var(--border-radius);
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background-color: rgba(46, 204, 113, 0.2);
    color: #27ae60;
}

.form-status.error {
    display: block;
    background-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.form-status {
    margin-top: 20px;
    text-align: center;
}

.success-message {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid #2ecc71;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.success-message::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    margin-right: 10px;
    font-weight: 900;
}

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

/* Enhanced Footer Styles */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 30px;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-99%);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
}

.footer-description {
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.8;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 22px;
}

.footer-links-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-services ul,
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-services ul li,
.hours-list li {
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-links ul li a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a i {
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateX(5px);
}

.footer-links ul li a:hover i {
    transform: translateX(3px);
}

.footer-services ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-services ul li i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 20px;
}

.footer-services ul li:hover {
    opacity: 1;
    transform: translateX(5px);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    opacity: 0.8;
    padding: 5px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-weight: 600;
}

.hours-list .time {
    color: var(--primary-light);
}

.footer-map {
    margin-top: 25px;
}

.mini-map {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mini-map:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

/* Footer Middle / Newsletter */
.footer-middle {
    margin-bottom: 40px;
}

.newsletter-container {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(52, 152, 219, 0.2));
    border-radius: var(--border-radius-lg);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.newsletter-container::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    top: -50px;
    left: -50px;
    z-index: 0;
}

.newsletter-container::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    bottom: -20px;
    right: 10%;
    z-index: 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 50%;
    z-index: 1;
}

.newsletter-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.newsletter-content h3 {
    margin-bottom: 5px;
    padding-bottom: 0;
}

.newsletter-content h3::after {
    display: none;
}

.newsletter-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

.newsletter-form-container {
    width: 50%;
    z-index: 1;
}

.newsletter-input-group {
    display: flex;
    position: relative;
    width: 100%;
}

.newsletter-input-group input {
    flex-grow: 1;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input-group input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
}

.newsletter-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-submit:hover {
    background-color: var(--primary-dark);
}

.newsletter-submit i {
    transition: var(--transition);
}

.newsletter-submit:hover i {
    transform: translateX(3px);
}

/* Footer Social */
.footer-social-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-container h3 {
    margin-bottom: 20px;
    text-align: center;
}

.footer-social-container h3::after {
    left: 50%;
    transform: translateX(-50%);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-icon-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateY(100%);
    z-index: -1;
}

.social-icon-link:hover {
    color: white;
    transform: translateY(-5px);
}

.social-icon-link:hover::before {
    transform: translateY(0);
}

.social-icon-link.facebook:hover::before { background-color: #3b5998; }
.social-icon-link.twitter:hover::before { background-color: #1da1f2; }
.social-icon-link.instagram:hover::before { background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); }
.social-icon-link.linkedin:hover::before { background-color: #0077b5; }
.social-icon-link.youtube:hover::before { background-color: #ff0000; }

/* Footer Bottom */
.footer-bottom {
    position: relative;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.back-to-top {
    display: flex;
    justify-content: center;
}

#back-to-top-btn {
    position: fixed;
    bottom: -60px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: bottom 0.3s, background-color 0.3s, transform 0.3s;
    z-index: 99;
}

#back-to-top-btn.show {
    bottom: 20px;
}

#back-to-top-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .newsletter-content {
        max-width: 100%;
        flex-direction: column;
    }
    
    .newsletter-form-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-links-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-hours {
        grid-column: span 2;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-links-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-hours {
        grid-column: auto;
    }
    
    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-input-group input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }
    
    .newsletter-submit {
        border-radius: var(--border-radius);
        width: 100%;
        justify-content: center;
        padding: 12px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Responsive Media Queries for Main Content */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
        width: 80px;
        height: 80px;
    }
    
    .experience-badge .number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px;
        transition: var(--transition);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    
    html[data-theme="dark"] .nav-menu {
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .cart-sidebar {
        max-width: 300px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-item-actions {
        margin-top: 10px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .services-filter {
        gap: 5px;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

/* About Section Responsive */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image img {
        height: 350px;
    }
    
    .about-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
    
    .stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .about-highlight {
        flex-direction: column;
        gap: 10px;
    }
    
    .timeline-content {
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .about-cards {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .about-image img {
        height: 250px;
    }
}

/* Enhanced Contact Section Styles */
.contact {
    position: relative;
    background-color: var(--bg-light);
    overflow: hidden;
}

.contact-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-light));
    opacity: 0.05;
}

.contact-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -150px;
}

.contact-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 5%;
    left: -100px;
}

.contact-wrapper {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

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

.contact-header {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-header-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.contact-header p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-card {
    background-color: var(--bg-color);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

.contact-card-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.contact-card-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.contact-card p {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 5px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-top: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.contact-link i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-dark);
}

.contact-link:hover i {
    transform: translateX(5px);
}

.contact-social {
    margin-top: 10px;
}

.contact-social h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.contact-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.contact-social-icons {
    display: flex;
    gap: 12px;
}

.contact-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    color: var(--primary-color);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-dark);
}

.contact-form-container {
    background-color: var(--bg-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 40px;
    transition: var(--transition);
}

.contact-form-container:hover {
    box-shadow: var(--shadow-dark);
}

.contact-form-header {
    margin-bottom: 25px;
}

.contact-form-header h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.contact-form-header p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 5px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.form-checkbox label {
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--bg-light);
    color: var(--text-color);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.contact-form .submit-btn {
    margin-top: 20px;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .contact-form-container {
        padding: 25px 20px;
    }
    
    .contact-social-icons {
        flex-wrap: wrap;
    }
}

/* Team Section Styles */
.team {
    position: relative;
    overflow: hidden;
}

.team-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.team-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.team-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -150px;
    left: -150px;
}

.team-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: -100px;
    right: -100px;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: var(--text-color);
}

.team-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.team-tab {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-tab:hover {
    background: rgba(var(--primary-rgb), 0.1);
}

.team-tab.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.team-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.team-member {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.member-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-tags {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.member-tag {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.team-member:hover .image-overlay {
    transform: translateY(0);
}

.member-social {
    display: flex;
    gap: 10px;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.member-info {
    padding: 20px;
}

.member-info h3 {
    margin: 0 0 5px;
    font-size: 1.2rem;
    color: var(--text-color);
}

.member-title {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.member-skills {
    margin: 15px 0;
}

.skill-item {
    margin-bottom: 10px;
}

.skill-name {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.skill-bar {
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
}

.skill-level {
    height: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    position: relative;
    width: 0;
    transition: width 1s ease;
}

.view-bio-btn {
    width: 100%;
    padding: 10px;
    border: none;
    background: transparent;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    margin-top: 15px;
    transition: all 0.3s ease;
}

.view-bio-btn i {
    transition: transform 0.3s ease;
}

.view-bio-btn:hover {
    color: var(--primary-color);
}

.view-bio-btn:hover i {
    transform: translateX(5px);
}

/* Team Join Section */
.team-join {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 40px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.join-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.join-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.join-text {
    flex: 1;
}

.join-text h3 {
    margin: 0 0 5px;
    color: var(--text-color);
}

.join-text p {
    margin: 0;
    color: var(--text-color);
}

/* Bio Modal Styles */
.bio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.bio-modal.active {
    opacity: 1;
    visibility: visible;
}

.bio-content {
    background: var(--bg-card);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease;
}

.bio-modal.active .bio-content {
    transform: translateY(0);
    opacity: 1;
}

.close-bio {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-bio:hover {
    background: var(--primary-color);
    color: white;
}

.bio-header {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(to right, rgba(var(--primary-rgb), 0.1), transparent);
    border-radius: 15px 15px 0 0;
}

.bio-header img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

.bio-header-info {
    flex: 1;
    padding-top: 10px;
}

.bio-header-info h3 {
    margin: 0 0 5px;
    font-size: 1.5rem;
    color: var(--text-color);
}

.bio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.bio-tag {
    padding: 5px 12px;
    background: var(--secondary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.bio-body {
    padding: 30px;
    color: var(--text-color);
}

.bio-text {
    margin-bottom: 25px;
    line-height: 1.6;
}

.bio-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.bio-detail h4 {
    margin: 0 0 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.bio-detail h4 i {
    color: var(--primary-color);
}

.bio-detail ul {
    margin: 0;
    padding-left: 20px;
}

.bio-detail li {
    margin-bottom: 8px;
}

.fun-fact {
    padding: 15px;
    background: rgba(var(--secondary-rgb), 0.1);
    border-radius: 10px;
    font-style: italic;
    margin-bottom: 0;
}

.fun-fact i {
    color: var(--secondary-color);
}

.bio-footer {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
}

.contact-link {
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    text-decoration: none;
}

.contact-link i {
    transition: transform 0.3s ease;
}

.contact-link:hover i {
    transform: translateX(5px);
}

/* Animation for team section */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .bio-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .join-content {
        flex-direction: column;
        text-align: center;
    }
    
    .join-icon {
        margin: 0 auto;
    }
    
    .bio-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .team-tab {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
}

@media screen and (max-width: 480px) {
    .team-tabs {
        flex-wrap: wrap;
    }
    
    .bio-details {
        grid-template-columns: 1fr;
    }
    
    .team-join {
        padding: 25px;
    }
}

/* About Section */
.about-story-container {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-story-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.about-story-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--primary-color);
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}

.about-story-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.story-icon-container {
    margin-right: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.story-icon-container .highlight-icon {
    font-size: 1.5rem;
    color: var(--white);
}

.about-story-header h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
}

.about-story-content {
    color: var(--text-color);
    line-height: 1.7;
}

.about-story-content p {
    margin-bottom: 1.5rem;
}

.about-story-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 160px;
    background-color: var(--light-bg);
    padding: 0.8rem 1.2rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background-color: var(--primary-color-light);
    transform: translateY(-3px);
}

.highlight-icon-wrapper {
    width: 38px;
    height: 38px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon-wrapper {
    background-color: var(--primary-color);
    color: var(--white);
}

.highlight-item span {
    font-weight: 600;
    line-height: 1.2;
}

.about-story-quote {
    position: relative;
    background-color: rgba(52, 152, 219, 0.08);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem 1.5rem 3.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin-top: 2rem;
}

.about-story-quote .quote-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.2rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.6;
}

.about-story-quote p {
    margin: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .about-story-container {
        padding: 1.5rem;
    }
    
    .about-story-highlight {
        flex-direction: column;
        gap: 1rem;
    }
    
    .highlight-item {
        min-width: 100%;
    }
}

/* Team Empty State */
.empty-team-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 30px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-lg);
    border: 2px dashed var(--border-color);
    margin: 0 auto;
    width: 100%;
    grid-column: 1 / -1;
    min-height: 250px;
}

.empty-team-message i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.6;
}

.empty-team-message h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.empty-team-message p {
    color: var(--text-dark);
    font-size: 1rem;
    max-width: 300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
}

.section-header .underline {
    height: 3px;
    width: 80px;
    background-color: var(--primary-color);
    margin: 0 auto 15px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.skyc-wordmark {
    font-family: 'Segoe UI', 'Montserrat', 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1;
}

.navbar .skyc-wordmark {
    font-size: 2rem;
    margin-right: 10px;
}

.footer-logo .skyc-wordmark {
    font-size: 2.2rem;
    margin-bottom: 5px;
    display: block;
}

/* Extra Responsive Enhancements */
@media (max-width: 992px) {
  .container {
    width: 95%;
    padding: 0 10px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .newsletter-content, .newsletter-form-container {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .navbar .container {
    flex-direction: row;
    padding: 0 10px;
  }
  .logo, .navbar .skyc-wordmark {
    font-size: 1.5rem;
  }
  .hero-content {
    max-width: 100%;
    padding: 0 10px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
  .team-grid, .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-content, .contact-content {
    flex-direction: column;
    gap: 30px;
  }
  .about-story-container, .contact-form-container {
    padding: 1.2rem;
  }
  .footer-logo .skyc-wordmark {
    font-size: 1.5rem;
  }
  .footer-top, .footer-links-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .newsletter-container {
    flex-direction: column;
    gap: 15px;
    padding: 20px 10px;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 10px 0;
  }
  .navbar .container {
    padding: 0 5px;
  }
  .hero h1 {
    font-size: 1.3rem;
  }
  .section-header h2 {
    font-size: 1.1rem;
  }
  .team-member, .service-card, .about-story-container, .contact-form-container {
    padding: 10px;
    border-radius: 8px;
  }
  .team-member, .service-card {
    min-width: 0;
  }
  .footer-logo .skyc-wordmark {
    font-size: 1.1rem;
  }
  .footer {
    padding: 40px 0 15px;
  }
  .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
    font-size: 0.8rem;
  }
  .newsletter-container {
    padding: 10px 5px;
  }
  .newsletter-input-group input, .newsletter-submit {
    font-size: 0.9rem;
    padding: 10px;
  }
}

@media (max-width: 400px) {
  .hero h1, .section-header h2 {
    font-size: 1rem;
  }
  .skyc-wordmark {
    font-size: 1rem;
  }
  .btn, .submit-btn, .add-to-cart-btn {
    font-size: 0.9rem;
    padding: 8px 10px;
  }
  .cart-sidebar {
    max-width: 95vw;
  }
}

/* Improved Newsletter Form Styles */
.newsletter-form-container {
    width: 100%;
    max-width: 500px;
}

#newsletter-form {
    display: flex;
    width: 100%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    overflow: hidden;
}

#newsletter-email {
    flex: 1;
    padding: 15px 20px;
    font-size: 1rem;
    border: 2px solid transparent;
    background-color: var(--bg-color);
    color: var(--text-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    transition: all 0.3s ease;
    outline: none;
}

#newsletter-email:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

#newsletter-email::placeholder {
    color: #999;
    font-style: italic;
    transition: all 0.3s ease;
}

#newsletter-email:focus::placeholder {
    opacity: 0.5;
}

#newsletter-form button {
    padding: 0 25px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    white-space: nowrap;
}

#newsletter-form button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

#newsletter-status {
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    height: 20px;
    transition: all 0.3s ease;
}

/* Dark mode adjustments */
html[data-theme="dark"] #newsletter-email {
    background-color: var(--bg-dark-secondary);
    border-color: var(--border-color-dark);
}

html[data-theme="dark"] #newsletter-email:focus {
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    #newsletter-form {
        flex-direction: column;
    }
    
    #newsletter-email, 
    #newsletter-form button {
        width: 100%;
        border-radius: var(--border-radius);
    }
    
    #newsletter-form button {
        margin-top: 10px;
        padding: 12px;
    }
} 