/* ==================== CSS Reset & Variables ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --navy-blue: #1f3a4d;
    --aqua-blue: #4ec3e0;
    --light-aqua: #7dd4e8;
    --dark-navy: #152b38;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --gray: #8b9daf;
    --dark-gray: #4a5c6d;

    /* Gradients */
    --gradient-primary: linear-gradient(
        135deg,
        var(--navy-blue) 0%,
        var(--aqua-blue) 100%
    );
    --gradient-overlay: linear-gradient(
        135deg,
        rgba(31, 58, 77, 0.95) 0%,
        rgba(78, 195, 224, 0.85) 100%
    );

    /* Typography */
    --font-primary: "Cairo", sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(31, 58, 77, 0.08);
    --shadow-md: 0 4px 16px rgba(31, 58, 77, 0.12);
    --shadow-lg: 0 8px 32px rgba(31, 58, 77, 0.16);
    --shadow-xl: 0 16px 48px rgba(31, 58, 77, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==================== Base Styles ==================== */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-navy);
    background-color: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 10px 0;
    animation: slideDown 0.8s ease;
}

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

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    padding: 5px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    transition: var(--transition-normal);
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: var(--transition-normal);
}

.logo-text {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    transition: var(--transition-normal);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .logo-text {
    font-size: 28px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.logo-subtext {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    transition: var(--transition-normal);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .logo-subtext {
    color: var(--dark-gray);
    text-shadow: none;
}

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

.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    position: relative;
    padding: 8px 0;
    transition: var(--transition-normal);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .nav-link {
    color: var(--navy-blue);
    text-shadow: none;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--white);
    transition: var(--transition-normal);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .nav-link::after {
    background: var(--gradient-primary);
    box-shadow: none;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition-normal);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .menu-toggle span {
    background: var(--navy-blue);
    box-shadow: none;
}

/* Language Switcher */
.lang-switcher-item {
    list-style: none;
}

.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition-normal);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.lang-switcher-btn:hover {
    background: var(--white);
    color: var(--navy-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.lang-switcher-btn i {
    font-size: 18px;
}

.navbar.scrolled .lang-switcher-btn {
    background: rgba(78, 195, 224, 0.1);
    color: var(--navy-blue);
    border-color: var(--aqua-blue);
}

.navbar.scrolled .lang-switcher-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

/* ==================== Hero Section ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-primary);
    overflow: hidden;
    padding-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(
            circle at 20% 50%,
            rgba(78, 195, 224, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(78, 195, 224, 0.15) 0%,
            transparent 50%
        );
}

.animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatShape 20s infinite ease-in-out;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-duration: 15s;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    animation-duration: 18s;
    animation-delay: 2s;
    background: rgba(78, 195, 224, 0.15);
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 5%;
    animation-duration: 22s;
    animation-delay: 4s;
}

.shape-4 {
    width: 40px;
    height: 40px;
    top: 40%;
    right: 25%;
    animation-duration: 16s;
    animation-delay: 1s;
    background: rgba(125, 212, 232, 0.12);
}

.shape-5 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    right: 10%;
    animation-duration: 19s;
    animation-delay: 3s;
}

.shape-6 {
    width: 50px;
    height: 50px;
    bottom: 30%;
    left: 20%;
    animation-duration: 17s;
    animation-delay: 5s;
    background: rgba(78, 195, 224, 0.1);
}

.shape-7 {
    width: 90px;
    height: 90px;
    top: 30%;
    left: 40%;
    animation-duration: 21s;
    animation-delay: 2.5s;
}

.shape-8 {
    width: 55px;
    height: 55px;
    bottom: 15%;
    right: 35%;
    animation-duration: 20s;
    animation-delay: 4.5s;
    background: rgba(255, 255, 255, 0.08);
}

@keyframes floatShape {
    0%,
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-50px) translateX(30px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-100px) translateX(-30px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-50px) translateX(-60px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Building Shapes */
.building {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 6px 6px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    animation: floatBuilding 18s infinite ease-in-out;
}

.building::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 20px;
    background: rgba(78, 195, 224, 0.2);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.building-window {
    width: 100%;
    height: 16px;
    background: rgba(78, 195, 224, 0.25);
    border-radius: 3px;
    position: relative;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.15);
}

.building-window::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
}

.building-1 {
    width: 70px;
    bottom: 12%;
    left: 6%;
    animation-duration: 20s;
    animation-delay: 0s;
}

.building-2 {
    width: 65px;
    bottom: 12%;
    left: 13%;
    animation-duration: 22s;
    animation-delay: 3s;
}

.building-3 {
    width: 80px;
    bottom: 12%;
    right: 10%;
    animation-duration: 24s;
    animation-delay: 5s;
}

.building-4 {
    width: 60px;
    bottom: 12%;
    right: 18%;
    animation-duration: 19s;
    animation-delay: 2s;
}

/* House/Villa Shapes */
.house {
    position: absolute;
    bottom: 12%;
    animation: floatHouse 16s infinite ease-in-out;
}

.house-roof {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 35px solid rgba(78, 195, 224, 0.2);
    position: relative;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.house-roof::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 1px;
}

.house-body {
    width: 70px;
    height: 60px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 0 0 4px 4px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.house-window {
    width: 18px;
    height: 18px;
    background: rgba(78, 195, 224, 0.25);
    border-radius: 2px;
    box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.1);
}

.house-door {
    width: 16px;
    height: 25px;
    background: rgba(78, 195, 224, 0.3);
    border-radius: 2px 2px 0 0;
    box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.1);
}

.house-1 {
    left: 22%;
    animation-duration: 18s;
    animation-delay: 1s;
}

.house-2 {
    right: 28%;
    animation-duration: 20s;
    animation-delay: 4s;
}

/* Tower Shape */
.tower {
    position: absolute;
    bottom: 12%;
    right: 4%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    animation: floatTower 25s infinite ease-in-out;
}

.tower-top {
    width: 50px;
    height: 25px;
    background: rgba(78, 195, 224, 0.25);
    border-radius: 50% 50% 0 0;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tower-top::after {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 18px;
    background: rgba(78, 195, 224, 0.3);
    border-radius: 2px;
}

.tower-section {
    width: 50px;
    height: 25px;
    background: rgba(255, 255, 255, 0.12);
    border-left: 2px solid rgba(78, 195, 224, 0.15);
    border-right: 2px solid rgba(78, 195, 224, 0.15);
    position: relative;
    box-shadow: inset 0 0 8px rgba(78, 195, 224, 0.1);
}

.tower-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 2px;
    background: rgba(78, 195, 224, 0.15);
}

@keyframes floatBuilding {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-25px);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-50px);
        opacity: 0.25;
    }
    75% {
        transform: translateY(-25px);
        opacity: 0.28;
    }
}

@keyframes floatHouse {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.22;
    }
    50% {
        transform: translateY(-35px);
        opacity: 0.3;
    }
}

@keyframes floatTower {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.25;
    }
    33% {
        transform: translateY(-30px);
        opacity: 0.32;
    }
    66% {
        transform: translateY(-60px);
        opacity: 0.28;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    margin-bottom: 40px;
}

.hero-logo-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
    animation: fadeInScale 1.2s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-slogan {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.typing-animation {
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto 20px;
    animation: typing 3.5s steps(52, end);
    animation-delay: 0.5s;
    animation-fill-mode: both;
    max-width: fit-content;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--white);
    color: var(--navy-blue);
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-feature i {
    font-size: 36px;
    color: var(--white);
    opacity: 0.9;
}

.hero-feature span {
    font-size: 16px;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 50%;
    transform: translateX(50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 3px solid var(--white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

/* ==================== Stats Section ==================== */
.stats-section {
    background: var(--light-gray);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 32px;
    color: var(--white);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--dark-gray);
    font-weight: 600;
}

/* ==================== Section Headers ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(78, 195, 224, 0.1);
    color: var(--aqua-blue);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== About Section ==================== */
.about-section {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.value-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    transition: var(--transition-normal);
}

.value-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 26px;
    color: var(--white);
}

.value-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    margin: 0;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
}

.image-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--aqua-blue);
    border-radius: 20px;
    z-index: -1;
}

.image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ==================== CEO Section ==================== */
.ceo-section {
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.ceo-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.ceo-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(100px);
}

.ceo-image-wrapper.animate-slide-in-right {
    animation: slideInFromRight 1s ease-out forwards;
}

.ceo-frame {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--aqua-blue);
    border-radius: 30px;
    z-index: 1;
}

.ceo-image-container {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--white);
}

.ceo-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition-slow);
}

.ceo-image-container:hover .ceo-image {
    transform: scale(1.05);
}

.ceo-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: pulse 2s infinite;
}

.ceo-badge i {
    font-size: 20px;
}

.ceo-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 0;
    transform: translateX(-100px);
}

.ceo-info.animate-slide-in-left {
    animation: slideInFromLeft 1s ease-out forwards;
    animation-delay: 0.2s;
}

.ceo-name-section {
    padding-bottom: 20px;
    border-bottom: 2px solid var(--aqua-blue);
}

.ceo-name {
    font-size: 36px;
    font-weight: 900;
    color: var(--navy-blue);
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ceo-title {
    font-size: 20px;
    color: var(--dark-gray);
    font-weight: 600;
}

.ceo-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ceo-detail-card {
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border-right: 4px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

.ceo-detail-card.animate-fade-in-up {
    animation: fadeInUpSmooth 0.8s ease-out forwards;
}

.ceo-detail-card:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
    border-right-color: var(--aqua-blue);
}

.detail-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.ceo-detail-card:hover .detail-icon {
    transform: rotate(5deg) scale(1.1);
}

.detail-icon i {
    font-size: 26px;
    color: var(--white);
}

.detail-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.detail-content p {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}

.ceo-quote {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    position: relative;
    box-shadow: var(--shadow-md);
    border-right: 4px solid var(--aqua-blue);
    opacity: 0;
    transform: translateY(30px);
}

.ceo-quote.animate-fade-in-up {
    animation: fadeInUpSmooth 0.8s ease-out forwards;
}

.ceo-quote i {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 40px;
    color: var(--aqua-blue);
    opacity: 0.2;
}

.ceo-quote p {
    font-size: 18px;
    font-style: italic;
    color: var(--navy-blue);
    line-height: 1.8;
    margin: 0;
    padding-right: 30px;
    font-weight: 600;
}

/* CEO Section Responsive */
@media (max-width: 1024px) {
    .ceo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ceo-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .ceo-name {
        font-size: 28px;
    }

    .ceo-title {
        font-size: 18px;
    }

    .ceo-detail-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ceo-quote {
        padding: 25px;
    }

    .ceo-quote p {
        font-size: 16px;
        padding-right: 0;
    }

    .ceo-badge {
        font-size: 14px;
        padding: 12px 20px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .ceo-name {
        font-size: 24px;
    }

    .detail-content h4 {
        font-size: 16px;
    }

    .detail-content p {
        font-size: 14px;
    }
}

/* ==================== Gallery Section ==================== */
.gallery-section {
    background: var(--white);
    overflow: hidden;
}

.gallery-scroll-wrapper {
    position: relative;
    margin: 0 -20px;
    padding: 0 60px;
}

.gallery-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 400px;
    height: 500px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 58, 77, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 48px;
    color: var(--white);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-blue);
    font-size: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    z-index: 10;
    cursor: pointer;
}

.gallery-nav:hover {
    background: var(--aqua-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-right {
    right: 10px;
}

.gallery-nav-left {
    left: 10px;
}

.gallery-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    color: var(--gray);
    font-size: 16px;
    opacity: 0.7;
}

.gallery-hint i {
    font-size: 20px;
    animation: pointBounce 2s infinite;
}

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

/* ==================== Services Section ==================== */
.services-section {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--gradient-primary);
    transition: var(--transition-slow);
    z-index: 0;
}

.service-card:hover .service-overlay {
    height: 100%;
}

.service-card:hover .service-icon {
    background: var(--white);
}

.service-card:hover .service-icon i {
    color: var(--aqua-blue);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-features {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-normal);
}

.service-icon i {
    font-size: 36px;
    color: var(--white);
    transition: var(--transition-normal);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 15px;
    transition: var(--transition-normal);
}

.service-card p {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.service-features {
    list-style: none;
    transition: var(--transition-normal);
}

.service-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--aqua-blue);
    font-size: 14px;
}

.service-card:hover .service-features i {
    color: var(--white);
}

/* ==================== Projects Section ==================== */
.projects-section {
    background: var(--white);
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--light-gray);
    color: var(--navy-blue);
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    background: var(--white);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 58, 77, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-btn {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--aqua-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition-normal);
}

.view-btn:hover {
    transform: scale(1.1);
    background: var(--aqua-blue);
    color: var(--white);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.project-info p {
    font-size: 15px;
    color: var(--gray);
}

/* ==================== Lightbox ==================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition-normal);
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--aqua-blue);
    color: var(--white);
    transform: scale(1.1);
}

.lightbox-close {
    top: 30px;
    left: 30px;
}

.lightbox-prev {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

/* ==================== Contact Section ==================== */
.contact-section {
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

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

.contact-card {
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    max-width: 280px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.contact-icon i {
    font-size: 20px;
    color: var(--white);
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition-normal);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Specific social media colors on hover */
.social-link:has(.fa-facebook-f):hover {
    background: #1877f2;
}

.social-link:has(.fa-instagram):hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.social-link:has(.fa-whatsapp):hover {
    background: #25d366;
}

.social-link:has(.fa-linkedin-in):hover {
    background: #0a66c2;
}

.social-link:has(.fa-tiktok):hover {
    background: #000000;
}

.social-link:has(.fa-youtube):hover {
    background: #ff0000;
}

.social-link:has(.fa-twitter):hover {
    background: #000000;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

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

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition-normal);
    background: var(--light-gray);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--aqua-blue);
    background: var(--white);
}

.form-group i {
    position: absolute;
    right: auto;
    left: 15px;
    top: 48px;
    color: var(--gray);
    font-size: 16px;
    z-index: 1;
}
.form-group.full-width i {
    top: 50px;
}

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

.submit-btn {
    grid-column: 1 / -1;
    padding: 16px 40px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition-normal);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    display: block;
}

/* ==================== Footer ==================== */
.footer {
    background: var(--navy-blue);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}

.footer-logo .logo-text {
    font-size: 32px;
}

.footer-logo .logo-subtext {
    font-size: 13px;
    color: var(--light-aqua);
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--aqua-blue);
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a {
    font-size: 15px;
    opacity: 0.9;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.contact-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-list i {
    color: var(--aqua-blue);
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    font-size: 16px;
}

.footer-social a:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Footer social media specific colors */
.footer-social a:has(.fa-facebook-f):hover {
    background: #1877f2;
}

.footer-social a:has(.fa-instagram):hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.footer-social a:has(.fa-whatsapp):hover {
    background: #25d366;
}

.footer-social a:has(.fa-linkedin-in):hover {
    background: #0a66c2;
}

.footer-social a:has(.fa-twitter):hover {
    background: #000000;
}

.footer-social a:has(.fa-tiktok):hover {
    background: #000000;
}

.footer-social a:has(.fa-youtube):hover {
    background: #ff0000;
}

/* ==================== Scroll to Top ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.fade-in {
    animation: fadeInUp 0.8s ease;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: start;
        padding: 100px 30px 30px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-normal);
        gap: 20px;
    }

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

    .nav-menu .nav-link {
        color: var(--navy-blue);
        text-shadow: none;
        font-size: 18px;
    }

    .nav-menu .nav-link::after {
        background: var(--gradient-primary);
        box-shadow: none;
    }

    .menu-toggle {
        display: flex;
    }

    .lang-switcher-item {
        width: 100%;
        margin-top: 20px;
    }

    .lang-switcher-btn {
        width: 100%;
        justify-content: center;
        background: var(--gradient-primary);
        color: var(--white);
        border-color: transparent;
    }

    .gallery-item {
        flex: 0 0 280px;
        height: 350px;
    }

    .gallery-scroll-wrapper {
        padding: 0 50px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-logo-img {
        max-width: 280px;
    }

    .hero-slogan {
        font-size: 24px;
    }

    .typing-animation {
        white-space: normal;
        animation: none;
        border-left: none;
        max-width: 100%;
    }

    .hero-description {
        font-size: 16px;
    }

    .building,
    .house,
    .tower {
        display: none;
    }

    .shape {
        width: 30px !important;
        height: 30px !important;
    }

    .hero-features {
        flex-direction: column;
        gap: 30px;
    }

    .section-title {
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .lightbox-prev {
        right: 10px;
    }

    .lightbox-next {
        left: 10px;
    }

    .lightbox-close {
        top: 10px;
        left: 10px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero-logo-img {
        max-width: 220px;
    }

    .hero-slogan {
        font-size: 20px;
    }

    .typing-animation {
        white-space: normal;
        animation: none;
        border-left: none;
        max-width: 100%;
    }

    .section-title {
        font-size: 26px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .projects-filter {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}

/* ==================== Utility Classes ==================== */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}
