/* ==================== CSS VARIABLES ==================== */
:root {
    --color-primary: #071B9F;
    --color-primary-dark: #050f5a;
    --color-primary-light: #1a3bc4;
    --color-accent: #FCA909;
    --color-accent-dark: #d48f00;
    --color-accent-light: #ffbe3d;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F4F6F8;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-border: #E0E4E8;
    --color-success: #10B981;
    --color-error: #EF4444;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(252, 169, 9, 0.4);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    --header-height: 80px;
    --container-width: 1200px;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 1.5rem; }

/* ==================== ANIMATED BACKGROUND ==================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
    animation: float 25s infinite ease-in-out;
}

.floating-shape:nth-child(1) {
    width: 500px; height: 500px;
    background: var(--color-primary);
    top: -150px; right: -150px;
}

.floating-shape:nth-child(2) {
    width: 400px; height: 400px;
    background: var(--color-accent);
    bottom: 10%; left: -200px;
    animation-delay: -8s;
}

.floating-shape:nth-child(3) {
    width: 300px; height: 300px;
    background: var(--color-primary);
    top: 60%; right: 5%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(40px, -40px) rotate(10deg) scale(1.1); }
    50% { transform: translate(-30px, 30px) rotate(-5deg) scale(0.9); }
    75% { transform: translate(25px, 15px) rotate(5deg) scale(1.05); }
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.btn:hover::before { left: 100%; }

.btn svg { width: 18px; height: 18px; transition: var(--transition); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: white;
    box-shadow: 0 4px 25px rgba(252, 169, 9, 0.4);
}

.btn--primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 35px rgba(252, 169, 9, 0.5);
}

.btn--secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}

.btn--secondary:hover {
    background: white;
    color: var(--color-primary);
    border-color: white;
    transform: translateY(-4px);
}

.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn--lg { padding: 1.125rem 2.5rem; font-size: 1rem; }
.btn--full { width: 100%; }

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-height);
    background: transparent;
    z-index: 1000;
    transition: var(--transition-slow);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header.scrolled .nav__link { color: var(--color-text); }
.header.scrolled .logo__img { filter: none; }
.header.scrolled .nav__toggle { color: var(--color-text); }

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo { display: flex; align-items: center; z-index: 100; }

.logo__img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.logo:hover .logo__img { transform: scale(1.08) rotate(-3deg); }

.logo__img--light { filter: brightness(0) invert(1); }

.nav__list { display: flex; align-items: center; gap: 0.5rem; }

.nav__link {
    padding: 0.5rem 1.25rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: white;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 3px;
    background: var(--color-accent);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 3px;
}

.nav__link:hover::after, .nav__link.active::after { width: 50%; }
.nav__link:hover, .nav__link.active { color: var(--color-accent); }

.header__actions { display: flex; align-items: center; gap: 1rem; }
.header__actions .btn--primary { background: var(--color-accent); }
.header.scrolled .header__actions .btn--primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
}

.nav__toggle { display: none; padding: 0.5rem; color: white; z-index: 100; }
.nav__toggle svg { width: 28px; height: 28px; }

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 3rem) 0 5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, #0a1f6b 100%);
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: patternMove 40s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero__shapes {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: heroFloat 20s ease-in-out infinite;
}

.hero__shape--1 { width: 600px; height: 600px; top: -250px; right: -150px; }
.hero__shape--2 { width: 400px; height: 400px; bottom: -150px; left: -100px; animation-delay: -7s; background: rgba(252, 169, 9, 0.08); }
.hero__shape--3 { width: 250px; height: 250px; top: 45%; left: 20%; animation-delay: -14s; }

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.15); }
    66% { transform: translate(-30px, 40px) scale(0.85); }
}

.hero__container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero__content { max-width: 900px; margin-bottom: 3rem; }

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: fadeSlideDown 0.8s ease forwards;
    opacity: 0;
}

.hero__badge svg { width: 18px; height: 18px; color: var(--color-accent); animation: pulse 2s infinite; }

@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 700;
    color: white;
    line-height: 1.12;
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.9s ease 0.2s forwards;
    opacity: 0;
}

.hero__title-highlight {
    color: var(--color-accent);
    position: relative;
    display: inline-block;
}

.hero__title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0;
    width: 100%; height: 12px;
    background: var(--color-accent);
    opacity: 0.25;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    animation: expandLine 0.6s ease 1.2s forwards;
}

@keyframes expandLine { to { transform: scaleX(1); } }

.hero__subtitle {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
    animation: fadeSlideUp 0.9s ease 0.4s forwards;
    opacity: 0;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    animation: fadeSlideUp 0.9s ease 0.6s forwards;
    opacity: 0;
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    padding: 2.5rem 4rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.12);
    animation: fadeSlideUp 0.9s ease 0.8s forwards;
    opacity: 0;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.stat__number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat__label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2.5s infinite;
}

.hero__scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero__scroll svg { width: 32px; height: 32px; margin-top: 0.5rem; }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== SECTION STYLES ==================== */
section { padding: 7rem 0; position: relative; }

.section__header { text-align: center; max-width: 700px; margin: 0 auto 4.5rem; }

.section__tag {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(7, 27, 159, 0.1), rgba(252, 169, 9, 0.1));
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
    animation: tagPulse 3s infinite;
}

@keyframes tagPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(7, 27, 159, 0.2); }
    50% { box-shadow: 0 0 0 15px rgba(7, 27, 159, 0); }
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section__desc {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.75;
}

/* ==================== SERVICES SECTION ==================== */
.services { background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%); }

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.75rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 150px; height: 150px;
    background: linear-gradient(135deg, rgba(252, 169, 9, 0.05), transparent);
    border-radius: 50%;
    transform: translate(50%, -50%);
    transition: var(--transition-slow);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { transform: translate(30%, -30%) scale(1.5); }

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(7, 27, 159, 0.1);
}

.service-card__icon {
    width: 90px; height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(7, 27, 159, 0.08), rgba(252, 169, 9, 0.08));
    border-radius: var(--radius-lg);
    margin-bottom: 1.75rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-card__icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 15px 35px rgba(7, 27, 159, 0.3);
}

.service-card__icon svg {
    width: 40px; height: 40px;
    color: var(--color-primary);
    transition: var(--transition);
}

.service-card:hover .service-card__icon svg { color: white; }

.service-card__image {
    width: 100%; height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.75rem;
    position: relative;
}

.service-card__image::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-card__image::after { opacity: 1; }

.service-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-card__image img { transform: scale(1.15); }

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.85rem;
}

.service-card__desc {
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

.service-card__link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

.service-card:hover .service-card__link::after { width: 100%; }

.service-card__link svg { width: 18px; height: 18px; transition: var(--transition); }
.service-card:hover .service-card__link svg { transform: translateX(8px); }

/* ==================== ABOUT SECTION ==================== */
.about { background: var(--color-bg); }

.about__content { display: flex; flex-direction: column; gap: 6rem; }

.about__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about__block--reverse { direction: rtl; }
.about__block--reverse > * { direction: ltr; }

.about__image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__image::before {
    content: '';
    position: absolute;
    top: -30px; left: -30px;
    width: 120px; height: 120px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.15;
    animation: floatSlow 6s infinite ease-in-out;
    z-index: -1;
}

.about__image::after {
    content: '';
    position: absolute;
    bottom: -25px; right: -25px;
    width: 100px; height: 100px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.15;
    animation: floatSlow 6s infinite ease-in-out 3s;
    z-index: -1;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, -10px) scale(1.1); }
}

.about__image img {
    width: 100%; height: 420px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about__image:hover img { transform: scale(1.08); }

.about__text h3 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about__text h3::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0;
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
    border-radius: 4px;
}

.about__text p {
    color: var(--color-text-light);
    line-height: 1.85;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Values */
.values__list { display: flex; flex-direction: column; gap: 1.5rem; }

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border-left: 4px solid transparent;
    cursor: pointer;
}

.value-item:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateX(15px);
    border-left-color: var(--color-accent);
}

.value-item__icon {
    width: 55px; height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-md);
    flex-shrink: 0;
    transition: var(--transition);
}

.value-item:hover .value-item__icon {
    transform: rotate(-12deg) scale(1.15);
    box-shadow: 0 10px 25px rgba(7, 27, 159, 0.3);
}

.value-item__icon svg { width: 26px; height: 26px; color: white; }

.value-item__text h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.35rem;
}

.value-item__text p { color: var(--color-text-light); font-size: 0.95rem; margin: 0; }

/* ==================== GALLERY SECTION ==================== */
.gallery { background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%); }

/* Messages / Banners */
.messages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 4.5rem;
}

.message {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.1rem 1.75rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    animation: messageFloat 6s ease-in-out infinite;
    cursor: default;
}

.message:nth-child(2) { animation-delay: -2s; }
.message:nth-child(3) { animation-delay: -4s; }

@keyframes messageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.message svg { width: 22px; height: 22px; }

.message--primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    box-shadow: 0 8px 25px rgba(7, 27, 159, 0.35);
}

.message--accent {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: white;
    box-shadow: 0 8px 25px rgba(252, 169, 9, 0.35);
}

.message:hover {
    transform: translateY(-8px) scale(1.08) !important;
    animation-play-state: paused;
}

/* Gallery Grid */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 1.5rem;
    margin-bottom: 4.5rem;
}

.gallery__item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery__item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(7, 27, 159, 0.7), rgba(252, 169, 9, 0.4));
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery__item::after {
    content: '👁';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2.5rem;
    z-index: 2;
    transition: var(--transition-bounce);
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.gallery__item:hover::before { opacity: 1; }
.gallery__item:hover::after { transform: translate(-50%, -50%) scale(1); }
.gallery__item:hover img { transform: scale(1.15) rotate(2deg); }

.gallery__item--large { grid-column: span 2; grid-row: span 2; }

.gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    padding: 3.5rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -15px; left: 30px;
    width: 80px; height: 80px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.1;
}

.testimonials__slider {
    position: relative;
    min-height: 220px;
    overflow: hidden;
}

.testimonial {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(60px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: all;
    position: relative;
}

.testimonial__text {
    font-size: 1.35rem;
    color: var(--color-text);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 2.25rem;
    position: relative;
    padding-left: 2.5rem;
}

.testimonial__text::before {
    content: '"';
    position: absolute;
    left: 0; top: -15px;
    font-size: 5rem;
    color: var(--color-accent);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
}

.testimonial__author { display: flex; align-items: center; gap: 1.25rem; }

.testimonial__avatar {
    width: 70px; height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-accent);
    box-shadow: 0 5px 20px rgba(252, 169, 9, 0.3);
}

.testimonial__info h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.2rem;
}

.testimonial__info span { font-size: 0.95rem; color: var(--color-text-muted); }

.testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.25rem;
}

.testimonials__btn {
    width: 55px; height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    border-radius: 50%;
    color: var(--color-text);
    transition: var(--transition);
}

.testimonials__btn:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(7, 27, 159, 0.3);
}

.testimonials__btn svg { width: 26px; height: 26px; }

.testimonials__dots { display: flex; gap: 0.6rem; }

.testimonials__dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: var(--transition);
}

.testimonials__dot:hover, .testimonials__dot.active {
    background: var(--color-accent);
    transform: scale(1.3);
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.5 4.5-10 10-10s10 4.5 10 10-4.5 10-10 10c0 5.5-4.5 10-10 10s-10-4.5-10-10 4.5-10 10-10zM10 10c0-5.5 4.5-10 10-10s10 4.5 10 10-4.5 10-10 10c0 5.5-4.5 10-10 10S0 25.5 0 20s4.5-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact .section__tag { background: rgba(255, 255, 255, 0.1); color: var(--color-accent); }
.contact .section__title { color: white; }
.contact .section__desc { color: rgba(255, 255, 255, 0.8); }

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4.5rem;
    position: relative;
    z-index: 1;
}

.contact__info { display: flex; flex-direction: column; gap: 1.75rem; }

.contact__card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact__icon {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    border-radius: var(--radius-md);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact__card:hover .contact__icon { transform: rotate(-10deg) scale(1.1); }

/* WhatsApp Card Special Styling */
.contact__card--whatsapp .contact__icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact__card--whatsapp:hover .contact__icon {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.contact__icon svg { width: 26px; height: 26px; color: white; }

.contact__details h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.35rem;
}

.contact__details a, .contact__details p { color: white; font-size: 1.05rem; }

.contact__social { margin-top: 1.5rem; }

.contact__social h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.social__links { display: flex; gap: 1rem; }

.social__link {
    width: 50px; height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social__link:hover {
    background: var(--color-accent);
    transform: translateY(-8px) rotate(15deg);
    box-shadow: 0 10px 25px rgba(252, 169, 9, 0.4);
}

.social__link svg { width: 22px; height: 22px; }

/* Contact Form */
.contact__form {
    background: white;
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.form__group { margin-bottom: 1.5rem; }

.form__group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 0.6rem;
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 1.1rem 1.35rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: var(--color-bg-alt);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 5px rgba(7, 27, 159, 0.1);
}

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.contact__form .btn { margin-top: 0.75rem; }
.contact__form .btn--primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, #0a0a1a, #1a1a2e);
    color: white;
    padding: 5.5rem 0 2.5rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand p { color: rgba(255, 255, 255, 0.6); margin-top: 1.25rem; line-height: 1.8; }

.footer__links h4, .footer__contact h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer__links ul { display: flex; flex-direction: column; gap: 1rem; }

.footer__links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.footer__links a::before {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--color-accent);
    transition: var(--transition);
}

.footer__links a:hover { color: var(--color-accent); transform: translateX(8px); }
.footer__links a:hover::before { width: 100%; }

.footer__contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.footer__contact svg { width: 20px; height: 20px; color: var(--color-accent); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__bottom p { display: flex; align-items: center; gap: 0.35rem; }

.footer__bottom svg {
    width: 18px; height: 18px;
    color: #ef4444;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.25); } }

/* ==================== TOAST ==================== */
.toast {
    position: fixed;
    bottom: 2.5rem; right: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(135deg, var(--color-success), #059669);
    color: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    z-index: 9999;
    transform: translateY(200%);
    transition: var(--transition-bounce);
}

.toast.active { transform: translateY(0); }
.toast svg { width: 26px; height: 26px; }

/* ==================== REVEAL ANIMATIONS ==================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active { opacity: 1; transform: scale(1); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .about__block { grid-template-columns: 1fr; gap: 3rem; }
    .about__block--reverse { direction: ltr; }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gallery__item--large { grid-column: span 2; }
    .contact__content { grid-template-columns: 1fr; }
    .footer__content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 320px;
        height: 100vh;
        background: white;
        box-shadow: var(--shadow-xl);
        padding: 7rem 2rem 2rem;
        transition: var(--transition-slow);
        z-index: 99;
    }
    
    .nav.active { right: 0; }
    .nav__list { flex-direction: column; align-items: flex-start; gap: 0; }
    .nav__link { color: var(--color-text); padding: 1.25rem 0; width: 100%; font-size: 1.15rem; }
    .nav__link::after { bottom: 0.75rem; left: 0; transform: none; }
    .nav__toggle { display: flex; }
    .header__actions .btn { display: none; }
    .hero__stats { padding: 2rem; gap: 2rem; }
    .stat { padding: 0 1.25rem; }
    .stat__number { font-size: 2rem; }
    .services__grid { grid-template-columns: 1fr; }
    .gallery__grid { grid-template-columns: 1fr 1fr; }
    .gallery__item--large { grid-column: span 1; }
    .form__row { grid-template-columns: 1fr; }
    .footer__content { grid-template-columns: 1fr; text-align: center; }
    .footer__bottom { flex-direction: column; gap: 1.25rem; text-align: center; }
    .testimonials { padding: 2.5rem 2rem; }
    .messages { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    section { padding: 5rem 0; }
    .hero__stats { flex-direction: column; gap: 1.5rem; }
    .stat:not(:last-child)::after { display: none; }
    .stat { padding: 0; }
    .hero__actions { flex-direction: column; width: 100%; }
    .hero__actions .btn { width: 100%; }
    .gallery__grid { grid-template-columns: 1fr; }
}

/* ==================== SCROLL PROGRESS BAR ==================== */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.scroll-progress__bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--color-accent);
}

/* ==================== CURSOR GLOW EFFECT ==================== */
.cursor-glow {
    position: fixed;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 169, 9, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* ==================== LOADING ANIMATION ==================== */
.page-loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px; height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ==================== HOVER GLOW EFFECTS ==================== */
.btn--primary:hover { box-shadow: 0 0 30px var(--color-accent), 0 10px 40px rgba(252, 169, 9, 0.4); }

.service-card:hover { box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 30px rgba(7, 27, 159, 0.1); }

.gallery__item:hover { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2); }

/* ==================== TEXT GRADIENT ANIMATION ==================== */
.gradient-text {
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* ==================== RIPPLE EFFECT ==================== */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

@keyframes rippleEffect { to { transform: scale(4); opacity: 0; } }

/* ==================== GLASSMORPHISM CARDS ==================== */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
}

/* ==================== NEON GLOW ==================== */
.neon-glow {
    text-shadow: 
        0 0 5px var(--color-accent),
        0 0 10px var(--color-accent),
        0 0 20px var(--color-accent),
        0 0 40px var(--color-accent);
}

/* ==================== SMOOTH IMAGE LOADING ==================== */
img {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

img[src] { opacity: 1; }

@keyframes fadeIn { to { opacity: 1; } }

/* ==================== TYPING EFFECT CURSOR ==================== */
.typing-cursor::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--color-accent);
}

@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
