/* ========== PREMIUM FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

/* ========== CSS VARIABLES ========== */
:root {
    /* Premium Color Palette */
    --primary: #0f4c5c;
    --primary-dark: #002434;
    --primary-light: #377484;
    --primary-gradient: linear-gradient(135deg, #0f4c5c 0%, #377484 50%, #0f4c5c 100%);

    --accent: #d4af37;
    --accent-light: #fcd75f;
    --accent-dark: #b8982e;
    --accent-gradient: linear-gradient(135deg, #d4af37 0%, #fcd75f 50%, #d4af37 100%);

    /* Text Colors */
    --text-dark: #0f4c5c;
    --text-light: #F9FAFB;
    --text-muted: #6B7280;

    /* Backgrounds */
    --bg-body: #fcfdfe;
    --bg-dark: #0a0a0a;
    --white: #ffffff;

    /* Premium Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-bg-dark: rgba(15, 76, 92, 0.08);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    --glass-blur: blur(20px);

    /* Premium Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 40px 80px rgba(0, 0, 0, 0.2);
    --shadow-accent: 0 15px 40px rgba(212, 175, 55, 0.25);
    --shadow-primary: 0 15px 40px rgba(15, 76, 92, 0.25);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;
}

/* ========== BASE RESET ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Layout Settings */
html {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Force Cairo font on all text elements */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
td,
th,
label,
input,
textarea,
select,
button,
div,
section,
article,
header,
footer,
nav,
.heading-lg,
.heading-sm,
.heading-md {
    font-family: 'Cairo', sans-serif !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ========== UTILITIES ========== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.services-section {
    background: #fcfdfe !important;
}

.text-center {
    text-align: center;
}

/* ========== PREMIUM TYPOGRAPHY ========== */
.heading-sm {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.heading-sm::before,
.heading-sm::after {
    content: '';
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.heading-sm::before {
    background: linear-gradient(90deg, transparent, var(--accent));
}

.heading-sm.no-decoration::before,
.heading-sm.no-decoration::after {
    display: none;
}

.heading-lg {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -1px;
    text-align: center;
}

.heading-lg span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-tone-split="word"] {
    --heading-tone-primary: #0f4c5c;
    --heading-tone-secondary: var(--accent);
    --heading-tone-gradient: linear-gradient(90deg, var(--heading-tone-primary) 0, var(--heading-tone-secondary) 100%);
    color: var(--heading-tone-primary);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    [data-tone-split="word"] {
        background-image: var(--heading-tone-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }

    body.text-designer-active [data-tone-split="word"] {
        background-image: none;
        color: var(--heading-tone-primary);
        -webkit-text-fill-color: currentColor;
    }
}

/* ========== PREMIUM BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    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: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(15, 76, 92, 0.35);
}

.btn-accent {
    background: var(--accent-gradient);
    color: var(--primary-dark);
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

/* ========== PREMIUM GLASS CARDS ========== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.glass-card:hover::before {
    transform: scaleX(1);
}

.glass-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

/* ========== PREMIUM HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== SCROLL PROGRESS BAR ========== */
.scroll-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1001;
    overflow: hidden;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
    background-size: 200% 100%;
    box-shadow: 0 0 15px var(--accent);
    position: relative;
    animation: shimmer-progress 2s linear infinite;
}

@keyframes shimmer-progress {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.header.scrolled .scroll-progress-container {
    background: rgba(15, 76, 92, 0.05);
}

.header.scrolled {
    background: rgba(9, 49, 61, 0.65);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}

.header.scrolled::before {
    opacity: 1;
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.navbar {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

.header.scrolled .navbar {
    height: 90px;
}

.logo {
    position: relative;
}

.logo img {
    height: 86px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0) saturate(100%) invert(87%) sepia(23%) saturate(620%) hue-rotate(6deg) brightness(105%) contrast(96%) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.header.scrolled .logo img {
    height: 70px;
    filter: brightness(0) saturate(100%) invert(87%) sepia(23%) saturate(620%) hue-rotate(6deg) brightness(105%) contrast(96%) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-links {
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    position: relative;
    padding: 14px 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.header.scrolled .nav-links a {
    color: var(--white);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #F4D03F, var(--accent));
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: rgba(212, 175, 55, 0.5);
    transition: width 0.4s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    transform: translateY(-2px);
}

.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active {
    color: var(--accent);
    text-shadow: 0 0 16px rgba(212, 175, 55, 0.4);
}

.header.scrolled .header-contact-btn {
    background: linear-gradient(135deg, #ffb347 0%, #f39c12 45%, #d4af37 100%);
    color: var(--primary-dark) !important;
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 14px 28px rgba(243, 156, 18, 0.35);
}

.header.scrolled .header-contact-btn:hover {
    background: linear-gradient(135deg, #ffd27a 0%, #f6b24a 55%, #d4af37 100%);
    box-shadow: 0 18px 36px rgba(243, 156, 18, 0.45);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #ffb347 0%, #f39c12 45%, #d4af37 100%);
    color: var(--primary-dark) !important;
    font-weight: 800;
    font-size: 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 14px 28px rgba(243, 156, 18, 0.35);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.header-contact-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 240%;
    height: 100%;
    background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
    transform: skewX(-20deg);
    opacity: 0.55;
    animation: headerShine 6s infinite linear;
    pointer-events: none;
}

@keyframes headerShine {
    0% {
        transform: translateX(-100%) skewX(-20deg);
    }

    100% {
        transform: translateX(100%) skewX(-20deg);
    }
}

.header-contact-btn i {
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.header-contact-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 36px rgba(243, 156, 18, 0.45);
    background: linear-gradient(135deg, #ffd27a 0%, #f6b24a 55%, #d4af37 100%);
}

.header-contact-btn:hover i {
    transform: translateX(4px) rotate(10deg);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 600;
}

.header.scrolled .header-phone {
    color: var(--primary);
}

.header-phone i {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 16px;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.mobile-menu-btn {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
}

.header.scrolled .mobile-menu-btn {
    color: var(--white);
}

/* ========== PREMIUM PAGE HEADER ========== */
.page-header {
    height: 60vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -100px;
    padding-top: 100px;
    --page-header-overlay-opacity: 0.8;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 49, 61, var(--page-header-overlay-opacity)) 0%, rgba(15, 76, 92, var(--page-header-overlay-opacity)) 100%);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg-body), transparent);
}

@media (min-width: 993px) {
    .page-header+section {
        padding-top: 2em !important;
    }
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.page-header-glass {
    display: inline-block;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.page-header h1 {
    font-family: 'Cairo', sans-serif;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.page-header h1 span {
    color: var(--accent);
}

.page-header h1[data-tone-split="word"] {
    --heading-tone-primary: var(--white);
    --heading-tone-secondary: var(--accent);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 16px;
    opacity: 0.9;
}

.breadcrumb a {
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb .separator {
    color: var(--accent);
    opacity: 0.5;
}

.breadcrumb span:last-child {
    color: var(--accent);
}

/* ========== PREMIUM ABOUT SECTION ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
}

.about-section .about-img-wrapper {
    max-width: 420px;
    margin-left: auto;
}

.about-page .about-img-wrapper {
    max-width: 460px;
    margin-left: 0;
    margin-right: auto;
}

.about-contact-banner {
    margin-top: 28px;
    padding: 18px 20px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 18px 40px rgba(15, 76, 92, 0.12);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.about-contact-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.6) 50%, transparent 60%);
    transform: skewX(-20deg);
    animation: bannerShine 4.5s infinite linear;
    opacity: 0.6;
    pointer-events: none;
}

@keyframes bannerShine {
    0% {
        transform: translateX(-100%) skewX(-20deg);
    }

    100% {
        transform: translateX(100%) skewX(-20deg);
    }
}

.about-contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.about-contact-text span {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
}

.about-contact-text p {
    font-size: 13.5px;
    color: var(--text-muted);
}

.about-contact-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    font-weight: 800;
    font-size: 12.5px;
    letter-spacing: 0.5px;
    box-shadow: 0 14px 28px rgba(9, 49, 61, 0.35);
    transition: var(--transition-normal);
}

.about-contact-btn:hover {
    transform: translateY(-3px) scale(1.03);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    box-shadow: 0 18px 36px rgba(15, 76, 92, 0.45);
}

.about-contact-btn i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.about-contact-btn:hover i {
    transform: translateX(4px) rotate(10deg);
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.about-img-main {
    width: 100%;
    aspect-ratio: 1 / 1;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
}

.about-img-wrapper:hover .about-img-main {
    transform: scale(1.02);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--accent-gradient);
    color: var(--primary-dark);
    padding: 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-accent);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.about-badge h3 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
}

.about-badge p {
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 32px rgba(9, 49, 61, 0.25);
    transition: var(--transition-normal);
}

@keyframes iconShine {
    0% {
        transform: translateX(-120%) rotate(20deg);
        opacity: 0;
    }

    45% {
        opacity: 0.9;
    }

    100% {
        transform: translateX(260%) rotate(20deg);
        opacity: 0;
    }
}

.about-feature:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateX(10px);
}

.about-feature i {
    width: 55px;
    height: 55px;
    background: var(--primary-dark);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 8px 18px rgba(9, 49, 61, 0.35);
    position: relative;
    overflow: hidden;
}

.about-feature i::after {
    content: '';
    position: absolute;
    top: -80%;
    left: -120%;
    width: 60px;
    height: 160%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
    transform: rotate(20deg);
    animation: iconShine 4.5s ease-in-out infinite;
}

.about-feature h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--white);
    font-weight: 600;
}

.about-feature p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
}

/* ========== PREMIUM SERVICES SECTION ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 70px;
}

/* Premium Service Item for index.php */
.service-item {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 76, 92, 0.08);
    transition: var(--transition-bounce);
}

.premium-service-card::before {
    content: none;
}

.premium-service-img {
    height: 250px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.premium-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.premium-service-card:hover .premium-service-img img {
    transform: scale(1.1);
}

.premium-service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 0;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-20px);
    box-shadow: var(--shadow-xl);
}

.service-item>* {
    position: relative;
    z-index: 1;
}

.service-item:hover h3,
.service-item:hover p {
    color: var(--white);
}

.service-icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(15, 76, 92, 0.1) 0%, rgba(15, 76, 92, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: var(--primary);
    transition: var(--transition-normal);
    position: relative;
}

.service-icon-box::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed var(--accent);
    opacity: 0;
    transition: var(--transition-normal);
    animation: spin 20s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.service-item:hover .service-icon-box::before {
    opacity: 1;
}

.service-item:hover .service-icon-box {
    background: rgba(255, 255, 255, 0.2);
    color: var(--accent);
    transform: scale(1.1);
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 700;
    transition: var(--transition-normal);
}

.service-item p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    transition: var(--transition-normal);
}

/* Premium Service Card for services.php */
.service-card {
    padding: 50px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transition: var(--transition-normal);
}

.service-card:hover::after {
    transform: scale(2);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-primary);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(15, 76, 92, 0.2);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg) scale(1.1);
    background: var(--accent-gradient);
    color: var(--primary-dark);
}

.service-card:hover .service-icon::before {
    border-color: var(--accent);
    inset: -12px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--primary);
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

/* ========== PREMIUM CTA SECTION ========== */
.cta-section {
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite 2s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content h2 span {
    color: var(--accent);
}

.cta-content h2[data-tone-split="word"] {
    --heading-tone-primary: var(--white);
    --heading-tone-secondary: var(--accent);
}

.cta-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== PREMIUM CONTACT SECTION ========== */
.contact-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=2070&auto=format&fit=crop') center/cover;
    opacity: 0.1;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.contact-info-panel {
    color: var(--white);
}

.contact-list {
    margin-top: 30px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 18px;
}

.contact-list li i {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
    transition: var(--transition-normal);
}

.contact-list li:hover i {
    background: var(--accent);
    color: var(--primary-dark);
    transform: scale(1.1);
}

.contact-form-glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-xl);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-card {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.contact-info-card h3 {
    font-size: 28px;
    margin-bottom: 30px;
    position: relative;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.contact-item i {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 18px;
}

.contact-form {
    padding: 50px;
    border-radius: var(--radius-xl);
    background: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 18px 25px;
    background: var(--bg-body);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition-normal);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.grid {
    display: grid;
}

/* ========== PREMIUM INDUSTRIES SECTION ========== */
.industry-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.industry-card:hover img {
    transform: scale(1.15);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 49, 61, 0.95) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: var(--transition-normal);
}

.industry-card:hover .industry-overlay {
    background: linear-gradient(to top, rgba(15, 76, 92, 0.98) 0%, rgba(15, 76, 92, 0.7) 100%);
}

.industry-title {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    transform: translateY(0);
    transition: var(--transition-normal);
}

.industry-card:hover .industry-title {
    transform: translateY(-10px);
    color: var(--accent);
}

/* ========== PREMIUM STATS SECTION ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    color: white;
}

.stat-item {
    padding: 30px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: 'Cairo', sans-serif;
    font-size: 60px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 500;
}

/* ========== PREMIUM FOOTER ========== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #041015 100%);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 100px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-brand img {
    height: 70px;
    margin-bottom: 25px;
}

.footer-brand p {
    line-height: 1.9;
    opacity: 0.8;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--accent-gradient);
    border-color: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-5px) rotate(5deg);
}

.footer-heading {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 0;
}

.footer-heading::after {
    display: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 20px;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact i {
    color: var(--accent);
    font-size: 18px;
    width: 20px;
}

.footer-bottom {
    margin-top: 80px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 14px;
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.6;
}

/* ========== FLOATING ACTION BUTTONS ========== */
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
    background: var(--white);
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    content: '\f062';
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    color: var(--primary);
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
    font-weight: 900;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    content: '\f062';
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    opacity: 0;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear;
    font-weight: 900;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--accent);
    stroke-width: 5.5;
    box-sizing: border-box;
    transition: all 200ms linear;
}

.whatsapp-float {
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-float 3s infinite ease-in-out;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ========== PREMIUM ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========== BG SHAPES ========== */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: -1;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }

    .nav-links,
    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .about-grid,
    .contact-grid,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-section .about-img-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .heading-lg {
        font-size: 36px;
    }

    .page-header h1 {
        font-size: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-item::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-badge {
        right: 20px;
        bottom: -20px;
        padding: 25px;
    }

    .about-badge h3 {
        font-size: 40px;
    }

    .about-img-wrapper::before {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 42px;
    }

    .page-header {
        height: 50vh;
        min-height: 350px;
    }

    .page-header h1 {
        font-size: 30px;
    }

    .page-header::after {
        bottom: -5px;
    }

    .contact-form-glass {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .btn {
        padding: 15px 30px;
        font-size: 14px;
    }

    .service-card-header {
        position: relative;
        z-index: 1;
        padding: 0;
        text-align: center;
        margin-top: -50px;
    }

    .heading-lg {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== PREMIUM SERVICE CARDS (Shared) ========== */
.premium-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 70px;
}

.premium-service-card {
    background: rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 76, 92, 0.12);
    transition: var(--transition-bounce);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: left 0.7s;
    z-index: 10;
}

.premium-service-card:hover::before {
    left: 200%;
}

.premium-service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.premium-service-img {
    height: 220px;
    width: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.premium-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.premium-service-card:hover .premium-service-img img {
    transform: scale(1.1);
}

.premium-service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 76, 92, 0.9), transparent);
    opacity: 0.6;
    transition: var(--transition-normal);
    pointer-events: none;
}

.premium-service-card:hover .premium-service-img::after {
    opacity: 0.3;
}

/* Hidden elements */
.service-card-header,
.service-card-icon {
    display: none;
}

.service-card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    font-family: 'Cairo', sans-serif;
    z-index: 5;
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-card-body {
    position: relative;
    z-index: 1;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.25em * 2);
}

.service-card-body h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-gradient);
    transition: width 0.4s ease;
}

.premium-service-card:hover .service-card-body h3::after {
    width: 100%;
}

.service-card-body p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.65em * 3);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    background: var(--primary-gradient);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 9px 16px;
    border-radius: var(--radius-full);
    box-shadow: 0 14px 28px rgba(15, 76, 92, 0.28);
    margin-top: auto;
    width: fit-content;
    isolation: isolate;
}

.service-card-link span {
    position: relative;
    z-index: 1;
}

.service-card-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transition: left 0.6s ease;
}

.service-card-link::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.55), rgba(15, 76, 92, 0.35));
    z-index: -1;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.4s ease;
}

.service-card-link:hover::before {
    left: 100%;
}

.service-card-link:hover::after {
    opacity: 0.85;
}

.service-card-link i {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.service-card-link:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 34px rgba(9, 49, 61, 0.28);
    background: var(--accent-gradient);
    border-color: rgba(212, 175, 55, 0.6);
    color: var(--primary-dark);
}

.service-card-link:hover i {
    background: rgba(0, 0, 0, 0.08);
    color: var(--primary-dark);
    transform: translateX(6px) rotate(15deg);
}

.service-card-link:focus-visible {
    outline: 2px solid var(--accent-light);
    outline-offset: 3px;
}

/* ========== GLOBAL BUTTON SHINE EFFECT ========== */
.btn,
.hero-btn {
    position: relative;
    overflow: hidden;
}

.btn::after,
.hero-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: none;
    /* Reset logic for animation */
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

@media (max-width: 1200px) {
    .premium-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .premium-service-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== PREMIUM FOOTER CONTACT ANIMATIONS ========== */
.footer-contact li {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    margin-bottom: 15px !important;
    padding: 12px 16px !important;
    border-radius: var(--radius-md) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    border: 1px solid transparent !important;
    cursor: pointer !important;
    width: 100%;
}

.footer-contact li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.15) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.footer-contact i {
    width: 38px !important;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent) !important;
    font-size: 16px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.footer-contact li:hover i {
    background: var(--accent-gradient);
    color: var(--primary-dark) !important;
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.footer-contact li a,
.footer-contact li span {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.footer-contact li:hover a,
.footer-contact li:hover span {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Animated Underline for Links */
.footer-contact li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--accent);
}

.footer-contact li:hover a::after {
    width: 100%;
}

/* ========== NEW CTA SECTION DESIGN ========== */
.cta-section-new {
    padding: 100px 0;
    position: relative;
    background: #fcfdfe;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none;
    opacity: 0;
}

.cta-bg-pattern::before {
    display: none;
}

.cta-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-left-content h2 {
    font-size: 48px;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.text-highlight {
    color: var(--accent);
    position: relative;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(212, 175, 55, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.cta-left-content p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 90%;
}

.cta-action-buttons {
    display: flex;
    gap: 20px;
}

.btn-premium-glow {
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
    font-weight: 800;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    color: var(--primary-dark);
}

.btn-premium-outline {
    padding: 16px 35px;
    border: 2px solid rgba(15, 76, 92, 0.2);
    color: var(--primary-dark);
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: 0.3s;
    background: transparent;
}

.btn-premium-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(212, 175, 55, 0.08);
}

/* Feature Grid */
.cta-right-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.feature-box {
    background: var(--primary);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 32px rgba(9, 49, 61, 0.25);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-box:hover {
    background: var(--primary-dark);
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 18px 40px rgba(9, 49, 61, 0.35);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 5px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 8px 18px rgba(9, 49, 61, 0.35);
    transition: 0.3s;
}

.feature-icon.has-image {
    padding: 10px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}

.feature-box:hover .feature-icon img {
    filter: brightness(0) invert(1);
}

.feature-box:hover .feature-icon {
    background: var(--accent);
    color: var(--primary-dark);
    transform: rotateY(180deg);
}

.feature-box h3,
.feature-box h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
}

.feature-box span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet & Smaller Desktop (Max Width: 1024px) */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .heading-lg {
        font-size: 42px;
    }

    .section {
        padding: 80px 0;
    }

    .navbar {
        height: 90px;
    }

    .nav-links {
        gap: 25px;
    }

    .logo img {
        height: 60px;
    }
}

/* Mobile Devices (Max Width: 768px) */
@media screen and (max-width: 768px) {

    /* Header & Navigation */
    .mobile-menu-btn {
        display: block;
        z-index: 1002;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(15, 76, 92, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 20px;
        color: var(--white);
    }

    .header-cta {
        display: none;
        /* Hide CTA button on mobile menu unless inside menu */
    }

    /* Hero Section */
    .hero-title {
        font-size: 38px !important;
        /* Override inline/other styles */
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 16px !important;
        margin-bottom: 30px;
    }

    .hero-btn-group {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-btn-group .btn {
        width: 100%;
    }

    /* Grids to Single Column */
    .footer-grid,
    .premium-service-grid,
    .about-grid,
    .contact-cards-grid,
    .contact-form-grid,
    .values-grid,
    .services-grid-new,
    .cta-grid-layout,
    .cta-right-features {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .about-text,
    .about-img-wrapper {
        text-align: center;
        margin: 0 auto;
    }

    .about-img-wrapper {
        margin-bottom: 40px;
    }

    .about-features {
        grid-template-columns: 1fr;
        justify-items: stretch;
        text-align: start;
        gap: 14px;
        padding: 0 8px;
    }

    .about-feature {
        width: 100%;
        margin: 0;
        border-radius: var(--radius-md);
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
        padding: 18px;
    }

    /* General Spacing */
    .section {
        padding: 60px 0;
    }

    .heading-lg {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .about-badge {
        right: 10px;
        bottom: 30px;
        padding: 15px 20px;
    }

    .about-badge h3 {
        font-size: 28px;
    }

    /* Footer */
    .footer-grid {
        text-align: center;
    }

    .footer-heading {
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-brand {
        align-items: center;
        margin: 0 auto;
    }

    .footer-brand img {
        margin: 0 auto 20px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    /* Forms */
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-side {
        padding: 30px;
        text-align: center;
    }

    .contact-info-list {
        align-items: center;
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Small Mobile (Max Width: 480px) */
@media screen and (max-width: 480px) {
    .heading-lg {
        font-size: 28px;
    }

    .btn {
        padding: 15px 30px;
        font-size: 14px;
        width: 100%;
    }

    .page-header {
        height: 50vh;
        min-height: 350px;
    }

    .page-header-content h1 {
        font-size: 30px;
    }
}

/* ========== MOBILE NAV POLISH ========== */
@media (max-width: 992px) {
    body.menu-open {
        overflow: hidden;
    }

    .navbar {
        height: 86px;
        padding: 0 8px;
    }

    .header.scrolled .navbar {
        height: 78px;
    }

    .logo img {
        height: 64px;
    }

    .header.scrolled .logo img {
        height: 56px;
    }

    .mobile-menu-btn {
        display: inline-flex;
        width: 46px;
        height: 46px;
        border-radius: 12px;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
        transition: var(--transition-normal);
        z-index: 1002;
    }

    .mobile-menu-btn i {
        pointer-events: none;
    }

    .mobile-menu-btn.is-open {
        background: linear-gradient(135deg, #ffd27a 0%, #f6b24a 55%, #d4af37 100%);
        color: var(--primary-dark);
        border-color: rgba(255, 255, 255, 0.45);
        box-shadow: 0 14px 26px rgba(243, 156, 18, 0.35);
        transform: translateY(-1px);
    }

    .nav-links {
        display: flex;
        position: fixed;
        inset: 0;
        padding: 120px 32px 40px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 22px !important;
        background: linear-gradient(150deg, rgba(9, 49, 61, 0.98) 0%, rgba(15, 76, 92, 0.98) 100%);
        backdrop-filter: blur(22px) saturate(160%);
        -webkit-backdrop-filter: blur(22px) saturate(160%);
        overflow-y: auto;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, visibility 0.35s ease;
        z-index: 1000;
    }

    .nav-links::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.28), transparent 55%);
        opacity: 0.9;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(16px);
        transition: transform 0.35s ease, opacity 0.35s ease;
        position: relative;
        z-index: 1;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links li:nth-child(1) {
        transition-delay: 0.05s;
    }

    .nav-links li:nth-child(2) {
        transition-delay: 0.1s;
    }

    .nav-links li:nth-child(3) {
        transition-delay: 0.15s;
    }

    .nav-links li:nth-child(4) {
        transition-delay: 0.2s;
    }

    .nav-links li:nth-child(5) {
        transition-delay: 0.25s;
    }

    .nav-links li:nth-child(6) {
        transition-delay: 0.3s;
    }

    .nav-links .mobile-lang-item {
        order: 999;
        width: 100%;
        margin-top: 10px;
    }

    .nav-links a {
        font-size: 20px;
        padding: 12px 0;
        display: inline-flex;
        width: auto;
        max-width: 100%;
        text-align: left;
        letter-spacing: 0.3px;
    }

    .nav-links a::before,
    .nav-links a::after {
        left: 0;
        transform: none;
    }

    .header-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    .navbar {
        height: 78px;
        padding: 0;
        position: relative;
    }

    .header .container.navbar {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header .navbar {
        direction: ltr !important;
    }

    .navbar>.mobile-menu-btn {
        order: 4;
        margin-right: 0 !important;
        margin-left: auto !important;
        color: var(--accent) !important;
        border-color: rgba(212, 175, 55, 0.45);
        box-shadow: 0 10px 22px rgba(212, 175, 55, 0.2), 0 10px 20px rgba(0, 0, 0, 0.22);
    }

    .navbar>.header-cta {
        order: 2;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: inline-flex !important;
        align-items: center;
        gap: 0;
        margin: 0;
        z-index: 1001;
    }

    .navbar>.header-cta .header-contact-btn {
        display: inline-flex !important;
        padding: 8px 12px;
        font-size: 11px;
        letter-spacing: 0.04em;
        white-space: nowrap;
    }

    .navbar>.header-cta .header-lang-switcher {
        display: none !important;
    }

    .navbar>nav {
        order: 3;
        width: 0;
        height: 0;
    }

    .navbar>.logo {
        order: 1;
        margin-left: 0;
        margin-right: auto;
    }

    .header.scrolled .navbar {
        height: 70px;
    }

    .logo img {
        height: 56px;
    }

    .header.scrolled .logo img {
        height: 50px;
    }

    .mobile-menu-btn {
        width: 44px;
        height: 44px;
    }

    .mobile-menu-btn.is-open {
        color: var(--primary-dark) !important;
    }

    .nav-links {
        padding: 120px 28px 40px;
        gap: 22px !important;
    }

    .about-page .about-contact-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .about-page .about-contact-text {
        width: 100%;
    }

    .about-page .about-contact-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-links {
        padding: 110px 22px 32px;
        gap: 18px !important;
    }

    .nav-links a {
        font-size: 18px;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }
}
