/* Variables */
:root {
    --primary-color: #1a1a1a;    /* Dark background */
    --secondary-color: #ffffff;   /* White text/accents */
    --accent-color: #8d8d8d;  
    --blokken-color: #4f4f4f;   /* Slightly lighter dark for cards */
    --light-color: #222222;      /* Dark gray for sections */
    --text-color: #ffffff;       /* White text */
    --gray-text: #cccccc;        /* Light gray for secondary text */
    --dark-overlay: rgba(0,0,0,0.7); /* Dark overlay for backgrounds */
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
    background-image: url('../images/bg-website.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: -1;
    will-change: transform;
}

/* Header Styles */
header {
    background-color: rgba(0, 0, 0, 0.85);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
}

.scroll-down {
    transform: translate3d(0, -100%, 0);
}

.scroll-up {
    transform: translate3d(0, 0, 0);
}

/* Hide mobile menu button completely */
.mobile-menu-button,
button.mobile-menu-button {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

header:hover {
    background-color: rgba(0, 0, 0, 0.95);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding-left: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
}

nav li {
    display: flex;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--gray-text);
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: var(--secondary-color);
}

/* Responsive Header */
@media (max-width: 992px) {
    nav {
        padding-left: 30px;
    }
    
    nav ul {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1.5rem;
        height: 70px;
    }

    nav {
        padding-left: 20px;
    }

    nav ul {
        gap: 1.5rem;
    }

    .logo img {
        height: 45px;
    }

    nav a {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .header-container {
        padding: 0 1rem;
        height: 60px;
    }

    nav {
        padding-left: 15px;
    }

    nav ul {
        gap: 1rem;
    }

    .logo img {
        height: 40px;
    }

    nav a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    nav ul {
        gap: 0.8rem;
    }

    nav a {
        font-size: 0.85rem;
    }
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    background-image: url('../images/texture-bg.jpg');
    background-blend-mode: overlay;
    background-color: var(--dark-overlay);
    color: var(--text-color);
    padding: 8rem 1rem 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    color: var(--gray-text);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/bg-hero.jpg');
    background-size:cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    padding: 0 1rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-text);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Features Section */
.features {
    padding: 5rem 1rem;
    background-color: var(--light-color);
    position: relative;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Services Detail Page */
.services-detail {
    padding: 4rem 1rem;
    background-color: var(--primary-color);
    background-image: url('../images/texture-bg.jpg');
    background-blend-mode: overlay;
    background-color: var(--dark-overlay);
    position: relative;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 400px;
    background-color: rgba(79, 79, 79, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--secondary-color);
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-card .service-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.95)
    );
    transition: all 0.4s ease;
}

.service-card:hover .service-content {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.98)
    );
}

.service-card .service-header {
    margin-bottom: 0;
    opacity: 1;
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.85);
    padding: 1.2rem;
    border-radius: 12px;
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    z-index: 3;
}

.service-card:hover .service-header {
    background: rgba(0, 0, 0, 0.95);
    border-color: var(--secondary-color);
    transform: translateY(5px);
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.service-card:hover h3 {
    transform: scale(1.05);
}

.service-card .service-header i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    transition: all 0.4s ease;
}

.service-card:hover .service-header i {
    transform: scale(1.2) rotate(5deg);
}

.service-card p {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.service-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

.service-features {
    list-style: none;
    margin-top: auto;
    padding: 0;
    opacity: 0.9;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.service-card:hover .service-features {
    opacity: 1;
    transform: translateY(0);
}

.service-features li {
    color: #ffffff;
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
    opacity: 0.9;
    transition: all 0.4s ease;
}

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

.service-features li:hover {
    transform: translateX(5px);
    color: var(--secondary-color);
}

.service-features li:before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    transition: all 0.4s ease;
}

.service-features li:hover:before {
    transform: scale(1.2) rotate(5deg);
}

@media (max-width: 992px) {
    .service-card {
        height: 380px;
    }

    .service-card .service-header {
        padding: 1rem;
    }

    .service-card h3 {
        font-size: 1.6rem;
    }

    .service-card .service-header i {
        font-size: 1.6rem;
    }

    .service-card p {
        font-size: 1rem;
    }

    .service-features li {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .service-card {
        height: 350px;
    }

    .service-card .service-header {
        padding: 0.8rem;
        top: 15px;
        left: 15px;
        right: 15px;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-card .service-header i {
        font-size: 1.4rem;
    }

    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .service-features li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 576px) {
    .service-card {
        height: 320px;
    }

    .service-card .service-content {
        padding: 1.5rem;
    }

    .service-card .service-header {
        padding: 0.7rem;
        top: 10px;
        left: 10px;
        right: 10px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card .service-header i {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-features li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
}

/* About Detail Page */
.about-detail {
    padding: 6rem 1rem;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.section-header p {
    color: var(--gray-text);
    font-size: 1.2rem;
}

/* Expertise Section */
.expertise-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.expertise-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.expertise-item {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.expertise-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.expertise-item:hover .expertise-icon {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.expertise-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.expertise-item:hover .expertise-icon i {
    color: var(--primary-color);
}

.expertise-item h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.expertise-item p {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .expertise-section {
        padding: 60px 0;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .expertise-item {
        padding: 25px;
    }
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.7);
}

.team-card {
    background: rgba(0, 0, 0, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 500px;
    margin: 0 auto;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 8px 35px rgba(0,0,0,0.3);
}

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

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

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

.team-info {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.team-info h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 600;
}

.team-info span {
    display: block;
    color: var(--gray-text);
    margin: 8px 0;
    font-size: 16px;
    font-weight: 500;
}

.team-info p {
    color: var(--gray-text);
    line-height: 1.5;
    margin: 15px 0 0;
    font-size: 14px;
}

.team-contact {
    display: flex;
    padding: 15px;
    gap: 10px;
    justify-content: center;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.contact-button i {
    font-size: 16px;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
}

.whatsapp-button:hover {
    background-color: #1ea952;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.phone-button {
    background-color: #007bff;
    color: white;
}

.phone-button:hover {
    background-color: #0056b3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

@media (max-width: 768px) {
    .team-image {
        height: 250px;
    }

    .team-info {
        padding: 15px;
    }

    .team-info h3 {
        font-size: 20px;
    }

    .team-info span {
        font-size: 14px;
    }

    .team-contact {
        padding: 12px;
    }

    .contact-button {
        padding: 8px 16px;
    }
}

@media (max-width: 576px) {
    .team-image {
        height: 220px;
    }

    .team-info {
        padding: 15px;
    }

    .team-info h3 {
        font-size: 18px;
    }

    .team-info p {
        font-size: 13px;
    }
}

/* Contact Detail Page */
.contact-detail {
    padding: 6rem 0;
    background-color: var(--primary-color);
    background-image: url('../images/texture-bg.jpg');
    background-blend-mode: overlay;
    background-color: var(--dark-overlay);
}

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

.contact-info-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-section h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: left;
}

.contact-info {
    background: rgba(26, 26, 26, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info:last-child {
    margin-bottom: 0;
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h3 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-info-content p {
    color: var(--gray-text);
    margin: 0;
    font-size: 0.95rem;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-section h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.form-group:focus-within label {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1.1rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

/* Separate styles for select element */
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1.1rem;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

.form-group select option {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1rem;
}

.form-group select option:first-child {
    color: #a0a0a0;
}

.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: rgba(255,255,255,0.15);
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

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

/* Submit button styles remain the same */
.submit-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
}

.submit-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
}

/* Remove Map Section */
.map-section {
    display: none;
}

/* CTA Section */
.cta-section {
    padding: 4rem 1rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    text-align: center;
    background-image: url('../images/texture-bg.jpg');
    background-blend-mode: overlay;
    background-color: var(--dark-overlay);
}

.cta-section h2 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.cta-section p {
    max-width: 700px;
    margin: 1rem auto 2rem;
    color: var(--gray-text);
    opacity: 0.9;
}

/* Footer Styles */
footer {
    background-color: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 4rem 0 2rem 0;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 4rem 0 2rem;
}

.footer-section {
    padding: 0 15px;
}

.footer-logo {
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 100px;
}

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

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease;
}

.footer-contact-info li:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.footer-contact-info li:hover .contact-icon {
    background: var(--secondary-color);
    transform: rotate(360deg);
}

.contact-icon i {
    color: var(--secondary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-contact-info li:hover .contact-icon i {
    color: var(--primary-color);
}

.contact-text span {
    display: block;
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    transition: color 0.3s ease;
}

.contact-text p {
    color: var(--secondary-color);
    margin: 0;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-contact-info li:hover .contact-text span {
    color: var(--secondary-color);
}

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

.footer-services li {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-services li:hover {
    transform: translateX(10px);
}

.footer-services li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-services li:hover i {
    transform: rotate(360deg);
}

.social-media {
    margin-top: 2rem;
}

.social-media h3 {
    margin-bottom: 1.2rem;
}

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

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

.social-link:hover {
    transform: translateY(-5px) rotate(360deg);
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

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

.footer-nav {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-nav a {
    color: var(--gray-text);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

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

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

.footer-bottom p {
    color: var(--gray-text);
    margin: 0;
    font-size: 0.9rem;
}

.footer-credits {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--gray-text);
}

.footer-credits a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer-credits a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-credits a:hover::after {
    width: 100%;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-section {
        align-items: flex-start;
        text-align: left;
        padding: 0;
    }
    
    .footer-logo {
        margin: 0;
    }
    
    .footer-contact-info {
        text-align: left;
        width: 100%;
    }
    
    .footer-contact-info li {
        justify-content: flex-start;
        width: 100%;
    }
    
    .contact-text {
        text-align: left;
        width: 100%;
    }
    
    .contact-text span,
    .contact-text p {
        text-align: left;
        width: 100%;
    }
    
    .footer-services ul {
        align-items: flex-start;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .footer-nav {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .footer-nav a {
        margin: 0;
        padding: 0;
    }
    
    .footer-bottom {
        text-align: left;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .footer-credits {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .footer-content {
        padding: 2rem 1rem;
    }
    
    .footer-section {
        padding: 0;
    }
    
    .footer-section h3 {
        text-align: left;
    }
    
    .footer-contact-info {
        text-align: left;
        width: 100%;
    }
    
    .footer-contact-info li {
        justify-content: flex-start;
        width: 100%;
    }
    
    .contact-icon {
        margin-right: 1rem;
    }
    
    .contact-text {
        text-align: left;
        width: 100%;
    }
    
    .contact-text span,
    .contact-text p {
        text-align: left;
        width: 100%;
    }
    
    .footer-nav {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-bottom {
        padding: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 6rem 1rem 3rem;
    }

    .logo img {
        height: 45px;
    }

    .portfolio-card {
        height: 250px;
    }
    
    .filter-button {
        padding: 6px 15px;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .footer-contact-info li {
        justify-content: center;
    }

    .footer-social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 40px;
    }

    nav ul {
        gap: 0.8rem;
    }

    nav a {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }

    .portfolio-card {
        height: 200px;
    }
}

/* Core Values Section */
.core-values {
    padding: 5rem 0;
    background-color: var(--primary-color);
    background-image: url('../images/texture-bg.jpg');
    background-blend-mode: overlay;
    background-color: var(--dark-overlay);
}

.value-card {
    background: var(--blokken-color);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    height: 100%;
}

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

.value-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-card p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

.value-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.value-features li {
    color: var(--gray-text);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.value-features li:before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* Portfolio Styles */
.portfolio {
    padding: 80px 0;
    position: relative;
    background-color: var(--primary-color);
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-overlay);
    z-index: 1;
}

.portfolio .container {
    position: relative;
    z-index: 2;
}

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

.section-subtitle {
    color: var(--gray-text);
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.portfolio-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    height: 300px;
    cursor: pointer;
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2), transparent);
    padding: 30px 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 8px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-overlay p {
    color: var(--gray-text);
    font-size: 1rem;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.portfolio-card:hover .portfolio-overlay h3,
.portfolio-card:hover .portfolio-overlay p {
    transform: translateY(0);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-button {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-button:hover,
.filter-button.active {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.portfolio-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s ease;
}

.portfolio-item[style*="display: none"] {
    opacity: 0;
    transform: scale(0.8);
}

@media (max-width: 992px) {
    .portfolio-card {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .portfolio-filters {
        gap: 10px;
    }

    .filter-button {
        padding: 6px 15px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .portfolio-card {
        height: 200px;
    }

    .portfolio-overlay {
        padding: 20px 15px;
    }

    .portfolio-overlay h3 {
        font-size: 1.2rem;
    }

    .portfolio-overlay p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: var(--primary-color);
    background-image: url('../images/texture-bg.jpg');
    background-blend-mode: overlay;
    background-color: var(--dark-overlay);
    overflow: hidden;
    position: relative;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 200px;
    color: rgba(255,255,255,0.05);
    font-family: serif;
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    animation: slideTestimonials 40s linear infinite;
    width: fit-content;
    gap: 2rem;
    padding: 2rem 0;
    margin: 0 auto;
}

.testimonials-slider:hover {
    animation-play-state: paused;
}

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

.testimonial-card {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    min-width: 300px;
    max-width: 300px;
    transition: all 0.4s ease;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.2);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-content {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    display: none;
}

.testimonial-content p {
    color: var(--gray-text);
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    padding-left: 0;
}

.testimonial-author {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.25rem;
    text-align: center;
}

.testimonial-author h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

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

/* Verwijder de avatar styling */
.testimonial-author-avatar {
    display: none;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 1.75rem;
    }

    .testimonial-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        min-width: 260px;
        max-width: 260px;
        padding: 1.5rem;
    }

    .testimonial-author h4 {
        font-size: 1rem;
    }
}

/* Update footer social section title */
.footer-social h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.portfolio-item {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    opacity: 1;
    transform: scale(1);
}

.portfolio-item[style*="opacity: 0"] {
    transform: scale(0.95);
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* Animations */
.animate {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    will-change: transform, opacity;
}

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

/* Media Queries */
@media (max-width: 768px) {
    .portfolio-card {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .portfolio-card {
        height: 200px;
    }
}

/* Services Section Filters */
.services-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    padding: 0 1rem;
}

.service-filter-button {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.service-filter-button:hover,
.service-filter-button.active {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Service Cards */
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 400px;
    background-color: rgba(79, 79, 79, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--secondary-color);
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-card .service-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.95)
    );
    transition: all 0.4s ease;
}

.service-card:hover .service-content {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.98)
    );
}

.service-card .service-header {
    margin-bottom: 0;
    opacity: 1;
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.85);
    padding: 1.2rem;
    border-radius: 12px;
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    z-index: 3;
}

.service-card:hover .service-header {
    background: rgba(0, 0, 0, 0.95);
    border-color: var(--secondary-color);
    transform: translateY(5px);
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.service-card:hover h3 {
    transform: scale(1.05);
}

.service-card .service-header i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    transition: all 0.4s ease;
}

.service-card:hover .service-header i {
    transform: scale(1.2) rotate(5deg);
}

.service-card p {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.service-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

.service-features {
    list-style: none;
    margin-top: auto;
    padding: 0;
    opacity: 0.9;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.service-card:hover .service-features {
    opacity: 1;
    transform: translateY(0);
}

.service-features li {
    color: #ffffff;
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
    opacity: 0.9;
    transition: all 0.4s ease;
}

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

.service-features li:hover {
    transform: translateX(5px);
    color: var(--secondary-color);
}

.service-features li:before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    transition: all 0.4s ease;
}

.service-features li:hover:before {
    transform: scale(1.2) rotate(5deg);
}

@media (max-width: 992px) {
    .service-card {
        height: 380px;
    }

    .service-card .service-header {
        padding: 1rem;
    }

    .service-card h3 {
        font-size: 1.6rem;
    }

    .service-card .service-header i {
        font-size: 1.6rem;
    }

    .service-card p {
        font-size: 1rem;
    }

    .service-features li {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .service-card {
        height: 350px;
    }

    .service-card .service-header {
        padding: 0.8rem;
        top: 15px;
        left: 15px;
        right: 15px;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-card .service-header i {
        font-size: 1.4rem;
    }

    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .service-features li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 576px) {
    .service-card {
        height: 320px;
    }

    .service-card .service-content {
        padding: 1.5rem;
    }

    .service-card .service-header {
        padding: 0.7rem;
        top: 10px;
        left: 10px;
        right: 10px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card .service-header i {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-features li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
}

/* About Hero Section */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/about/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.3);
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    color: var(--secondary-color);
    max-width: 800px;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Intro Section */
.intro-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
}

.intro-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.intro-image img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.6s ease;
}

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

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
}

.intro-content {
    padding-left: 50px;
}

.intro-content h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.intro-content .lead {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.intro-content p {
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-text {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.6);
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--secondary-color);
}

.feature-card:hover .feature-icon i {
    color: var(--primary-color);
}

.feature-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.7);
}

.team-card {
    background: rgba(0, 0, 0, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 500px;
    margin: 0 auto;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 8px 35px rgba(0,0,0,0.3);
}

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

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

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

.team-info {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.team-info h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 600;
}

.team-info span {
    display: block;
    color: var(--gray-text);
    margin: 8px 0;
    font-size: 16px;
    font-weight: 500;
}

.team-info p {
    color: var(--gray-text);
    line-height: 1.5;
    margin: 15px 0 0;
    font-size: 14px;
}

.team-contact {
    display: flex;
    padding: 15px;
    gap: 10px;
    justify-content: center;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.contact-button i {
    font-size: 16px;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
}

.whatsapp-button:hover {
    background-color: #1ea952;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.phone-button {
    background-color: #007bff;
    color: white;
}

.phone-button:hover {
    background-color: #0056b3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

@media (max-width: 768px) {
    .team-image {
        height: 250px;
    }

    .team-info {
        padding: 15px;
    }

    .team-info h3 {
        font-size: 20px;
    }

    .team-info span {
        font-size: 14px;
    }

    .team-contact {
        padding: 12px;
    }

    .contact-button {
        padding: 8px 16px;
    }
}

@media (max-width: 576px) {
    .team-image {
        height: 220px;
    }

    .team-info {
        padding: 15px;
    }

    .team-info h3 {
        font-size: 18px;
    }

    .team-info p {
        font-size: 13px;
    }
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.6);
    position: relative;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.process-step {
    position: relative;
    margin-bottom: 60px;
    width: 50%;
    padding-right: 50px;
}

.process-step:nth-child(even) {
    margin-left: auto;
    padding-right: 0;
    padding-left: 50px;
}

.step-number {
    position: absolute;
    top: 0;
    right: -25px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
}

.process-step:nth-child(even) .step-number {
    right: auto;
    left: -25px;
}

.step-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step-content:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.step-content h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.step-content p {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 3rem;
    }
    
    .intro-content {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline::before {
        left: 40px;
    }
    
    .process-step {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .process-step:nth-child(even) {
        padding-left: 80px;
    }
    
    .step-number {
        left: 15px !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .intro-content h2 {
        font-size: 2rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .team-image img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        right: -10px;
    }
    
    .experience-badge .years {
        font-size: 1.8rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .contact-detail {
        padding: 2rem 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-section {
        padding: 1.5rem;
    }
    
    .contact-info {
        margin-bottom: 1.5rem;
        padding: 1rem;
    }
    
    .contact-info i {
        font-size: 1.2rem;
        margin-right: 1rem;
    }
    
    .contact-info-content {
        padding: 0.5rem 0;
    }
    
    .contact-info-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-info-content p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    .contact-detail {
        padding: 1.5rem 1rem;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding: 1rem;
    }
    
    .contact-info {
        margin-bottom: 1rem;
        padding: 0.8rem;
    }
    
    .contact-info-content h3 {
        font-size: 1rem;
    }
    
    .contact-info-content p {
        font-size: 0.9rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .submit-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(120%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification i {
    font-size: 20px;
}

.notification span {
    font-size: 14px;
    line-height: 1.4;
}

.notification.success {
    background: #4CAF50;
    color: white;
}

.notification.error {
    background: #f44336;
    color: white;
}

.notification.info {
    background: #2196F3;
    color: white;
}

@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Contact links styling */
.contact-info-content a,
.contact-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover,
.contact-text a:hover {
    color: var(--accent-color);
}
