/* ============================================
   Gemi Gider Açma - Ana Style Dosyası
   Renk Paleti: Mavi #1565C0, Turuncu #FF6B00
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===================== CSS RESET & BASE ===================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy-deep: #030b16;
    --navy-surface: #0a192f;
    --navy-light: #112240;
    --aqua: #00f2ff;
    --gold: #cda45e;
    --white: #ffffff;
    --gray-100: #e6f1ff;
    --gray-400: #8892b0;
    --gray-600: #495670;
    --font: 'Inter', sans-serif;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.3);
    --radius: 16px;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--gray-100);
    background: var(--navy-deep);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--white);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(to right, var(--white), var(--aqua));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
}

h3 {
    font-size: 1.5rem;
    color: var(--aqua);
}

h4 {
    font-size: 1.15rem;
}

p {
    color: var(--gray-400);
    margin-bottom: 1.25rem;
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .3s var(--transition);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
}

.btn-primary:hover {
    background: #e1b876;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(205, 164, 94, 0.3);
}

.btn-outline {
    background: rgba(0, 242, 255, 0.05);
    color: var(--aqua);
    border-color: rgba(0, 242, 255, 0.3);
}

.btn-outline:hover {
    background: var(--aqua);
    color: var(--navy-deep);
}

.btn-blue {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-blue:hover {
    border-color: var(--aqua);
    background: rgba(0, 242, 255, 0.1);
}

.btn-sm {
    padding: .6rem 1.5rem;
    font-size: .875rem;
}

/* ===================== SECTION HEADER ===================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .badge {
    display: inline-block;
    background: var(--blue-light);
    color: var(--aqua);
    font-size: .8rem;
    font-weight: 600;
    padding: .3rem .9rem;
    border-radius: 50px;
    margin-bottom: .75rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.section-header h2 {
    margin-bottom: .75rem;
}

.section-header p {
    max-width: 540px;
    margin: 0 auto;
}

/* ===================== HEADER / NAV ===================== */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(3, 11, 22, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: all .3s var(--transition);
}

#site-header.scrolled {
    background: var(--navy-deep);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 1rem;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-shrink: 0;
}

.site-logo img {
    height: 48px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .logo-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--aqua);
}

.logo-text .logo-sub {
    font-size: .7rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: .04em;
}

/* Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.main-nav a {
    padding: .6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    color: var(--gray-400);
    transition: all .3s var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.header-cta {
    background: var(--aqua) !important;
    color: var(--navy-deep) !important;
    padding: .6rem 1.5rem !important;
}

.header-cta:hover {
    background: #00d9e5 !important;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: .5rem;
    border: none;
    background: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 1rem 0 1.5rem;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    padding: .75rem 1.5rem;
    font-weight: 500;
    color: var(--gray-700);
    border-left: 3px solid transparent;
    transition: all var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--aqua);
    border-left-color: var(--gold);
    background: var(--blue-light);
}

/* Header top bar */
.header-topbar {
    background: var(--blue-dark);
    color: rgba(255, 255, 255, .85);
    font-size: .8rem;
    padding: .45rem 0;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.topbar-inner a {
    color: rgba(255, 255, 255, .85);
    transition: color var(--transition);
}

.topbar-inner a:hover {
    color: var(--gold);
}

.topbar-contacts {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.topbar-contacts span,
.topbar-contacts a {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.topbar-right {
    display: flex;
    gap: 1rem;
}

/* ===================== HERO ===================== */
.hero {
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 40px 0 60px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.hero-content h1 span {
    color: var(--aqua);
}

.hero-content p {
    color: var(--gray-400);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 550px;
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--glass-border);
}

.hero-image .floating-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: .75rem 1.1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--gray-900);
}

.hero-image .floating-card i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* ===================== SERVICES GRID ===================== */
.services-section {
    padding: 7rem 0;
    background: var(--navy-deep);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

/* Service Card */
.service-card {
    background: #0a192f;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all .4s var(--transition);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--aqua);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.15);
}

.service-card-body {
    padding: 1.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 242, 255, 0.02) 100%);
}

.service-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(0, 242, 255, 0.1);
    color: var(--aqua);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card-body h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: .75rem;
}

.service-card-body p {
    color: var(--gray-400);
    font-size: .95rem;
}

.service-card-link {
    color: var(--aqua);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: .8rem;
    margin-top: 1rem;
}

/* ===================== ABOUT / WHY US ===================== */
.about-section {
    padding: 8rem 0;
    background: var(--navy-surface);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-badge-box {
    position: absolute;
    top: 20px;
    right: -20px;
    background: var(--gold);
    color: var(--navy-deep);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-premium);
}

.about-badge-box strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.about-badge-box span {
    font-size: .8rem;
    font-weight: 600;
    opacity: .9;
}

.about-content h2 {
    color: var(--white);
}

.about-content p {
    color: var(--gray-400);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2.5rem 0;
}

.feature-card {
    background: var(--glass);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    transition: all .3s var(--transition);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.icon-aqua {
    background: rgba(0, 242, 255, 0.1);
    color: var(--aqua);
}

.icon-gold {
    background: rgba(205, 164, 94, 0.1);
    color: var(--gold);
}

.feature-card h4 {
    font-size: 1.15rem;
    margin-bottom: .5rem;
    color: var(--white);
}

.feature-card p {
    font-size: .9rem;
    margin: 0;
    line-height: 1.6;
    color: var(--gray-400);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--aqua);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================== CTA BANNER ===================== */
.cta-section {
    background: linear-gradient(135deg, var(--navy-surface) 0%, var(--navy-deep) 100%);
    padding: 6rem 0;
    border-top: 1px solid var(--glass-border);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-text h2 {
    color: var(--white);
    margin-bottom: .5rem;
}

.cta-text p {
    color: rgba(255, 255, 255, .8);
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===================== FOOTER ===================== */
#site-footer {
    background: #020810;
    color: var(--gray-400);
    border-top: 1px solid var(--glass-border);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 2.5rem;
    padding: 5rem 0 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.2));
}

.footer-logo .logo-text .logo-name {
    color: var(--white);
    font-size: 1.25rem;
}

.footer-desc {
    font-size: .9rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: .75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    border: 1px solid var(--glass-border);
    transition: all .3s var(--transition);
}

.social-icon:hover {
    background: var(--aqua);
    color: var(--navy-deep);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.3);
}

.footer-widget h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
    display: block;
    position: relative;
    padding-bottom: .5rem;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--aqua);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.footer-links a {
    color: var(--gray-400);
    font-size: .95rem;
    transition: all .3s var(--transition);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.footer-links a:hover {
    color: var(--aqua);
    padding-left: 5px;
}

.footer-links i {
    font-size: .7rem;
    color: var(--aqua);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    font-size: .95rem;
}

.contact-info-item i {
    color: var(--aqua);
    font-size: 1.1rem;
    margin-top: .2rem;
    flex-shrink: 0;
}

.contact-info-item a {
    color: var(--gray-400);
    transition: all .3s var(--transition);
}

.contact-info-item a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom a {
    color: var(--aqua);
    font-weight: 600;
}

/* ===================== SIDEBAR ===================== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--navy-surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.sidebar-widget-header {
    background: rgba(0, 242, 255, 0.05);
    color: var(--aqua);
    padding: 1.25rem 1.5rem;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    border-bottom: 1px solid var(--glass-border);
}

.sidebar-widget-body {
    padding: 1.5rem;
}

.sidebar-service-links {
    display: flex;
    flex-direction: column;
}

.sidebar-service-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 1rem;
    color: var(--gray-400);
    transition: all .3s var(--transition);
    border-left: 3px solid transparent;
    font-size: .95rem;
}

.sidebar-service-links a:hover,
.sidebar-service-links a.active {
    background: rgba(0, 242, 255, 0.05);
    color: var(--white);
    border-left-color: var(--aqua);
}

.sidebar-service-links a i {
    color: var(--aqua);
    font-size: .85rem;
    opacity: 0.8;
}

.sidebar-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .875rem;
}

.sidebar-contact-item i {
    color: var(--white);
    background: var(--aqua);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
}

.sidebar-contact-item a {
    color: var(--white);
    font-weight: 700;
}

.sidebar-contact-item span {
    color: var(--gray-400);
}

.sidebar-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: #25D366;
    color: var(--white);
    padding: .75rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    margin-top: .75rem;
    justify-content: center;
    transition: all var(--transition);
}

.sidebar-whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-1px);
}

/* ===================== PAGE LAYOUT ===================== */
.page-hero {
    background: var(--navy-surface);
    padding: 5rem 0 4rem;
    color: var(--white);
    border-bottom: 1px solid var(--glass-border);
}

.page-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero .breadcrumb {
    display: flex;
    gap: .75rem;
    align-items: center;
    font-size: .95rem;
    color: var(--gray-400);
}

.page-hero .breadcrumb a {
    color: var(--aqua);
}

.page-hero .breadcrumb i {
    font-size: .7rem;
    opacity: 0.5;
}

.page-content {
    padding: 6rem 0;
}

.page-inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 4rem;
    align-items: start;
}

.page-main article h2 {
    font-size: 2rem;
    margin: 3.5rem 0 1.5rem;
    color: var(--white);
}

.page-main article h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1.25rem;
    color: var(--aqua);
}

.page-main article p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gray-400);
}

.page-main article img {
    border-radius: 24px;
    margin: 2rem 0;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
    width: 100%;
    object-fit: cover;
    max-height: 500px;
}

.page-main article ul,
.page-main article ol {
    list-style: disc;
    margin: 1rem 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.page-main article ul li,
.page-main article ol li {
    font-size: .95rem;
    color: var(--gray-700);
}

/* ===================== CONTACT PAGE ===================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-control {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: .95rem;
    color: var(--white);
    background: var(--navy-surface);
    transition: all .3s var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--aqua);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
}

.form-control:focus {
    border-color: var(--aqua);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, .1);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-info-card {
    background: var(--navy-surface);
    color: var(--white);
    border-radius: var(--radius);
    padding: 3rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-info-card .info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card .info-item {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.contact-info-card .info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 1px solid var(--glass-border);
}

.contact-info-card .info-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-bottom: .25rem;
}

.contact-info-card .info-value {
    font-weight: 700;
    color: var(--white);
    font-size: 1.05rem;
}

.contact-info-card .info-value a {
    color: var(--white);
}

.map-section {
    margin-top: 3rem;
}

.map-section iframe {
    width: 100%;
    height: 380px;
    border-radius: var(--radius);
    border: none;
    box-shadow: var(--shadow-md);
}

/* ===================== SERVICES LIST PAGE ===================== */
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

/* ===================== KURUMSAL PAGE ===================== */
.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-page-img img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    background: var(--navy-surface);
    border-radius: var(--radius);
    padding: 2.5rem 1.5rem;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--glass-border);
    transition: all var(--transition);
}

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

.stat-card strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--aqua);
    margin-bottom: .25rem;
}

.stat-card span {
    font-size: .875rem;
    font-weight: 600;
    color: var(--gray-400);
}

/* ===================== MOBILE STICKY CALL BTN ===================== */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy-deep);
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(205, 164, 94, 0.5);
    animation: pulse-call 2s infinite;
    border: 3px solid var(--navy-deep);
}

.mobile-call-btn:hover {
    background: #e1b876;
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 4px 20px rgba(255, 107, 0, .5), 0 0 0 0 rgba(255, 107, 0, .5);
    }

    70% {
        box-shadow: 0 4px 20px rgba(255, 107, 0, .5), 0 0 0 14px rgba(255, 107, 0, 0);
    }

    100% {
        box-shadow: 0 4px 20px rgba(255, 107, 0, .5), 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 95px;
    right: 20px;
    z-index: 9998;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
    transition: all var(--transition);
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* ===================== BREADCRUMB ===================== */
.breadcrumb-section {
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
    padding: .75rem 0;
}

.breadcrumb {
    display: flex;
    gap: .4rem;
    align-items: center;
    font-size: .8rem;
    color: var(--gray-500);
}

.breadcrumb a {
    color: var(--aqua);
}

.breadcrumb i {
    font-size: .6rem;
    color: var(--gray-500);
}

/* ===================== UTILITIES ===================== */
.text-center {
    text-align: center;
}

.text-blue {
    color: var(--aqua);
}

.text-orange {
    color: var(--gold);
}

.mt-1 {
    margin-top: .5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-0 {
    margin-bottom: 0;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .page-inner {
        grid-template-columns: 1fr;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .about-img-wrap {
        max-width: 500px;
    }

    .about-badge-box {
        right: 0;
    }

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

    .about-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-image {
        display: none;
    }

    .hero-stats {
        display: none !important;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

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

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

    .topbar-right {
        display: none;
    }

    .header-topbar {
        padding: 5px 0;
    }

    .header-inner {
        height: 60px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .mobile-call-btn {
        display: flex;
    }

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

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

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

    .page-inner {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto !important;
        padding-top: 20px !important;
        padding-bottom: 40px !important;
        display: block !important;
    }

    .page-header {
        padding: 50px 0 !important;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

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

    .header-inner {
        height: 54px;
    }
}

/* ===================== MOBILE NAV & DESIGN UPDATES ===================== */
@media (max-width: 1024px) {
    .mobile-nav {
        background: var(--navy-deep) !important;
        border-top: 1px solid var(--glass-border) !important;
        padding-bottom: 2rem !important;
    }

    .mobile-nav a {
        color: var(--white) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        padding: 1.25rem 1.5rem !important;
        display: block !important;
    }

    .mobile-nav a.active {
        color: var(--aqua) !important;
        background: rgba(0, 242, 255, 0.05) !important;
    }

    .btn-mobile-nav {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.75rem !important;
        background: var(--gold) !important;
        color: var(--navy-deep) !important;
        padding: 1.25rem !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        margin: 1.5rem 1rem 1rem !important;
        border-radius: var(--radius-sm) !important;
        text-decoration: none !important;
    }

    /* Home Page Service Card Image Height Adjustment */
    .services-section .service-card-img {
        height: 220px !important;
    }
}