/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    color: #333;
    background: #f8f9fc;
    line-height: 1.8;
}

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

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

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

/* ===== Floating Buttons ===== */
.floating-call {
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 9999;
}

.floating-call a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.floating-call a:hover {
    transform: scale(1.1);
}

.floating-call .call-btn {
    background: #2b5470;
    margin-bottom: 10px;
}

.floating-whatsapp {
    position: fixed;
    bottom: 35px;
    left: 20px;
    z-index: 9999;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #2b5470;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.floating-whatsapp a:hover {
    transform: scale(1.1);
}

/* ===== Top Bar ===== */
.top-bar {
    background: #0a2a44;
    color: #fff;
    padding: 14px 0;
    font-size: 17px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar a {
    color: #f5a623;
    font-weight: 700;
}

.top-bar .social {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: 0.3s;
}

.top-bar .social a:hover {
    background: #f5a623;
}

.top-bar .social a:hover svg {
    fill: #0a2a44 !important;
}

/* ===== Header ===== */
header {
    background: rgba(10,42,68,0.85);
    backdrop-filter: blur(6px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 10px;
}

.logo h1 {
    font-size: 22px;
    color: #fff;
    font-weight: 800;
}

.logo h1 span {
    color: #f5a623;
}

.logo p {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    margin-top: -3px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 5px;
}

nav ul li a {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    color: #f5a623;
}

nav ul li a.admin-link {
    font-size: 14px;
    opacity: 0.5;
    padding: 8px 10px;
}

nav ul li a.admin-link:hover {
    opacity: 1;
    background: rgba(255,255,255,0.1);
}

.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
}

/* ===== Hero Slider ===== */



/* ===== Section Divider Ticker ===== */
.section-divider {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #2b5470, #1a3650);
    color: #fff;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
}

.sd-ticker {
    display: flex;
    align-items: center;
    width: 100%;
}

.sd-label {
    background: #f5a623;
    color: #0a2a44;
    font-weight: 800;
    font-size: 12px;
    padding: 6px 16px;
    white-space: nowrap;
    flex-shrink: 0;
}

.sd-move {
    display: flex;
    gap: 40px;
    padding: 0 20px;
    white-space: nowrap;
    animation: sdScroll 22s linear infinite;
}

.sd-move span {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

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

.hero-slider {
    position: relative;
    overflow: hidden;
}

/* ===== News Bar ===== */
.news-bar {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #2b5470, #1a3650);
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.news-label {
    background: #f5a623;
    color: #0a2a44;
    font-weight: 800;
    font-size: 14px;
    padding: 8px 20px;
    white-space: nowrap;
    z-index: 2;
    flex-shrink: 0;
}

.news-track {
    display: flex;
    gap: 50px;
    padding: 0 30px;
    animation: scrollNews 18s linear infinite;
    white-space: nowrap;
}

.news-item {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

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

@media (max-width: 600px) {
    .news-label { font-size: 12px; padding: 6px 12px; }
    .news-item { font-size: 12px; }
}

.hero-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.hero-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 70px;
    text-align: center;
    color: #fff;
    min-height: 520px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0a2a44;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,42,68,0.45);
    z-index: 0;
}

.hero-slide h2 {
    font-size: 2.4em;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.3;
}

.hero-slide h2 span {
    color: #f5a623;
}

.hero-slide p {
    font-size: 1.1em;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 20px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,42,68,0.45);
    z-index: 0;
}

.hero-slide > *:not(.hero-overlay) {
    position: relative;
    z-index: 1;
}

.hero-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-dots button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
}

.hero-dots button.active {
    background: #f5a623;
    border-color: #f5a623;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #2b5470;
    color: #fff;
}

.btn-primary:hover {
    background: #3a6b8c;
    transform: scale(1.04);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #2b5470;
    border-color: #2b5470;
    color: #fff;
}

/* ===== Section Titles ===== */
.section-title {
    text-align: center;
    margin-bottom: 35px;
}

.section-title h3 {
    font-size: 1.8em;
    color: #0a2a44;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-title h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #f5a623;
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-title p {
    color: #777;
    font-size: 1em;
    margin-top: 8px;
}

/* ===== About ===== */
.about {
    padding: 60px 0;
    background: #fff;
}

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

.about-text h3 {
    font-size: 1.6em;
    color: #0a2a44;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-text p {
    color: #555;
    margin-bottom: 15px;
    font-size: 1em;
}

.about-text ul {
    list-style: none;
    margin-top: 10px;
}

.about-text ul li {
    padding: 6px 0;
    font-weight: 600;
    color: #444;
}

.about-text ul li::before {
    content: '✓ ';
    color: #f5a623;
    font-weight: 800;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.about-img-card {
    border-radius: 12px;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 12px;
    position: relative;
    overflow: hidden;
}

.about-img-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,42,68,0.45);
    z-index: 0;
}

.about-img-card span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.about-img-card::after {
    content: 'القمة | 0542095116';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 6px 10px;
    background: rgba(10,42,68,0.75);
    color: #f5a623;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
}

/* ===== Service Sections (Data + Slider) ===== */
.service-section {
    padding: 50px 0;
}

.service-nakl-bg { background: #f8fcff; }
.service-fik-bg { background: #f4faf6; }
.service-tanzif-bg { background: #fffaf2; }

.service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Data side */
.service-data .sd-title {
    font-size: 2em;
    font-weight: 800;
    color: #0a2a44;
    margin-bottom: 15px;
}

.service-data .sd-desc {
    color: #555;
    font-size: 1.1em;
    margin-bottom: 25px;
    line-height: 1.8;
}

.sd-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.sd-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.sd-icon {
    font-size: 34px;
    min-width: 46px;
    text-align: center;
    margin-top: 2px;
}

.sd-item h4 {
    font-size: 1.1em;
    color: #0a2a44;
    font-weight: 700;
}

.sd-item p {
    font-size: 0.95em;
    color: #777;
    margin-top: 3px;
}

.sd-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Slider side */
.service-slider-col {
    position: relative;
}

.service-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.service-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.service-slide {
    min-width: 100%;
}

.service-slide .sv-img {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-slide .sv-img.nakl { background-color: #e8f0fe; }
.service-slide .sv-img.fik { background-color: #e6f7ed; }
.service-slide .sv-img.tanzif { background-color: #fef3e8; }

.sv-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.sv-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: 0.3s;
}

.sv-dots button.active {
    background: #f5a623;
    width: 24px;
    border-radius: 6px;
}

/* ===== Features ===== */
.features {
    padding: 60px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.feature-item {
    padding: 20px;
}

.feature-item .f-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.feature-item h4 {
    font-size: 1.1em;
    color: #0a2a44;
    font-weight: 700;
}

.feature-item p {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

/* ===== Stats ===== */
.stats {
    background: #0a2a44;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.stats .container {
    max-width: 100%;
    padding: 0 15px;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.stat-item {
    flex-shrink: 0;
}

.stat-item h4 {
    font-size: 1.3em;
    font-weight: 800;
    color: #f5a623;
}

.stat-item p {
    font-size: 0.85em;
    opacity: 0.85;
}

.stat-item + .stat-item {
    border-right: 1px solid rgba(255,255,255,0.15);
    padding-right: 15px;
}

/* ===== Stat Ticker ===== */
.stat-ticker {
    display: flex;
    align-items: center;
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.ticker-label {
    background: #f5a623;
    color: #0a2a44;
    font-weight: 800;
    font-size: 11px;
    padding: 5px 12px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 8px;
    border-radius: 4px;
}

.ticker-move {
    display: flex;
    gap: 35px;
    white-space: nowrap;
    animation: scrollTicker 20s linear infinite;
}

.ticker-move span {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

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

/* ===== Testimonials
/* ===== Testimonials ===== */
.testimonials {
    padding: 60px 0;
    background: #f8f9fc;
}

.testi-slider {
    max-width: 700px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.testi-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testi-card {
    min-width: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testi-card .stars {
    color: #f5a623;
    font-size: 20px;
    margin-bottom: 10px;
}

.testi-card blockquote {
    font-size: 1em;
    color: #555;
    font-style: italic;
    margin-bottom: 12px;
}

.testi-card .author {
    font-weight: 700;
    color: #0a2a44;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.testi-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: 0.3s;
}

.testi-dots button.active {
    background: #f5a623;
    width: 30px;
    border-radius: 6px;
}

/* ===== Contact ===== */
.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #eef1f6 100%);
}

.contact-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    text-align: center;
    margin-bottom: 30px;
    max-width: 750px;
    width: 100%;
}

.contact-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.contact-item .c-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.contact-item h4 {
    font-size: 1.2em;
    color: #0a2a44;
    margin-bottom: 8px;
}

.contact-item a {
    color: #2b5470;
    font-weight: 700;
    font-size: 1.15em;
    text-decoration: none;
}

.contact-item a:hover {
    color: #f5a623;
}

.contact-item p {
    color: #666;
    font-size: 1.05em;
}

.contact-buttons {
    text-align: center;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    padding: 14px 40px;
    font-size: 17px;
}

.btn-whatsapp {
    background: #2b5470;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #3a6b8c;
}

.btn-call {
    background: #2b5470;
    color: #fff;
}

.btn-call:hover {
    background: #3a6b8c;
}

/* ===== Map ===== */
.map-section {
    padding: 0 0 40px;
}

.map-section iframe {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    border: none;
}

/* ===== Footer ===== */
footer {
    background: #0a2a44;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

footer h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

footer h3 span {
    color: #f5a623;
}

footer p {
    opacity: 0.8;
    font-size: 14px;
    margin-top: 5px;
}

footer .footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

footer .footer-links a {
    color: #f5a623;
    font-size: 14px;
}

/* ===== Prices ===== */
.prices-section {
    padding: 60px 0;
    background: #fff;
}

.prices-table-wrap {
    overflow-x: auto;
}

.prices-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 600px;
}

.prices-table-wrap th {
    background: #0a2a44;
    color: #fff;
    padding: 14px 12px;
    text-align: center;
    font-weight: 700;
}

.prices-table-wrap td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #eee;
    color: #333;
}

.prices-table-wrap tr:hover td {
    background: #f8f9fc;
}

.prices-table-wrap .price-val {
    font-weight: 700;
    color: #0a2a44;
}

.price-estimate {
    font-size: 1.2em;
    font-weight: 700;
    color: #0a2a44;
    text-align: center;
    padding: 15px;
    background: #e6f7ed;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* ===== Order Form ===== */
.order-section {
    padding: 60px 0;
    background: #f0f4f9;
}

.order-form {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px 45px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: #0a2a44;
    margin-bottom: 6px;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    transition: 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2b5470;
    outline: none;
    box-shadow: 0 0 0 3px rgba(43,84,112,0.1);
}

.form-msg {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-msg.success {
    display: block;
    background: #e6f7ed;
    color: #27ae60;
}

.form-msg.error {
    display: block;
    background: #fde8e8;
    color: #e74c3c;
}

/* ===== Order Tracking ===== */
.track-section {
    padding: 60px 0;
    background: #fff;
}

.track-box {
    max-width: 600px;
    margin: 0 auto;
}

.track-input-row {
    display: flex;
    gap: 10px;
}

.track-result {
    margin-top: 20px;
}

.track-card {
    background: #f8f9fc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 10px;
    border-right: 4px solid #f5a623;
}

.track-card h4 {
    color: #0a2a44;
    margin-bottom: 5px;
}

.track-card p {
    color: #555;
    font-size: 14px;
    margin: 2px 0;
}

.track-card .status-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 5px;
}

.track-card .status-new { background: #e8f0fe; color: #1a73e8; }
.track-card .status-progress { background: #fef3e8; color: #e67e22; }
.track-card .status-done { background: #e6f7ed; color: #27ae60; }
.track-card .status-cancelled { background: #fde8e8; color: #e74c3c; }

.track-empty {
    text-align: center;
    color: #888;
    padding: 30px;
    font-size: 1em;
}

/* ===== Service Page ===== */
.service-content {
    padding: 50px 0;
}

.service-content .container {
    max-width: 850px;
}

.service-content h3 {
    font-size: 1.4em;
    color: #0a2a44;
    margin-bottom: 12px;
}

.service-content p {
    color: #555;
    margin-bottom: 15px;
}

.service-content ul {
    list-style: none;
    margin: 15px 0;
}

.service-content ul li {
    padding: 8px 0;
    font-weight: 600;
    color: #444;
    border-bottom: 1px solid #eee;
}

.service-content ul li::before {
    content: '✓ ';
    color: #f5a623;
    font-weight: 800;
}

/* ===== Gallery ===== */
.gallery-page {
    padding: 60px 0;
    background: #f8f9fc;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.g-tab {
    padding: 10px 24px;
    border: 2px solid #ddd;
    border-radius: 50px;
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    color: #555;
}

.g-tab:hover { border-color: #f5a623; color: #0a2a44; }
.g-tab.active { background: #f5a623; border-color: #f5a623; color: #0a2a44; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    aspect-ratio: 1;
}

.gallery-item:hover { transform: scale(1.03); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item::after {
    content: attr(alt) " — القمة 0542095116";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 12px;
    background: rgba(10,42,68,0.8);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}

.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    inset: 0;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 8px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.lightbox-close:hover { color: #f5a623; }

.lightbox-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev, .lightbox-next {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover, .lightbox-next:hover { background: #f5a623; color: #0a2a44; }

@media (max-width: 700px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

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

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .about .container {
        grid-template-columns: 1fr;
    }
    .service-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .service-slide .sv-img {
        min-height: 300px;
        font-size: 70px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .order-form {
        padding: 25px 20px;
    }
    .service-data .sd-title {
        font-size: 1.5em;
    }
    .service-data .sd-desc {
        font-size: 1em;
    }
    .prices-table-wrap table {
        font-size: 13px;
    }
    .prices-table-wrap th,
    .prices-table-wrap td {
        padding: 10px 8px;
    }
    .section-title h3 {
        font-size: 1.4em;
    }
    .gallery-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    .g-tab {
        font-size: 13px;
        padding: 8px 14px;
    }
}

@media (max-width: 600px) {
    .about-images { grid-template-columns: 1fr; }
    .about-img-card { min-height: 180px; }
    .service-slide .sv-img {
        min-height: 240px;
        font-size: 60px;
    }
    .hero-slide h2 {
        font-size: 1.4em;
    }
    .hero-slide {
        padding: 40px 15px 35px;
        min-height: 280px;
    }
    .hero-slide .slide-icon {
        font-size: 36px;
    }
    .hero-slide p {
        font-size: 0.95em;
    }
    .hero-dots {
        bottom: 12px;
        gap: 6px;
    }
    .hero-dots button {
        width: 10px;
        height: 10px;
    }
    .section-title h3 {
        font-size: 1.3em;
    }
    .stat-ticker .ticker-label {
        font-size: 10px;
        padding: 4px 8px;
    }
    .ticker-move span {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,42,68,0.95);
        backdrop-filter: blur(10px);
        padding: 15px;
    }
    nav ul.open {
        display: flex;
    }
    nav ul li a {
        display: block;
        padding: 10px;
        color: #fff;
    }
    nav ul li a:hover,
    nav ul li a.active {
        background: rgba(255,255,255,0.1);
        color: #f5a623;
    }
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
    .top-bar {
        font-size: 14px;
        padding: 10px 0;
    }
    .top-bar .social a {
        width: 32px;
        height: 32px;
    }
    .floating-call { left: 10px; }
    .floating-whatsapp { left: 10px; }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        flex-direction: column;
        gap: 10px;
    }
    .stat-item + .stat-item {
        border-right: none;
        padding-right: 0;
    }
    .sd-items {
        gap: 12px;
    }
    .sd-icon {
        font-size: 28px;
        min-width: 36px;
    }
    .sd-item h4 {
        font-size: 1em;
    }
    .sd-item p {
        font-size: 0.88em;
    }
    .sd-btns .btn {
        font-size: 14px;
        padding: 10px 24px;
    }
    .service-slide .sv-img {
        min-height: 220px;
    }
    .contact-item {
        padding: 20px 15px;
    }
    .contact-buttons .btn {
        padding: 12px 30px;
        font-size: 15px;
    }
    .order-form {
        padding: 20px 15px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-group {
        margin-bottom: 15px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 15px;
    }
    .price-estimate {
        font-size: 1em;
        padding: 12px;
    }
    .about-text h3 {
        font-size: 1.3em;
    }
    .about-text p {
        font-size: 0.95em;
    }
    .about-img-card {
        min-height: 200px;
    }
    .testi-card {
        padding: 20px;
    }
    .testi-card blockquote {
        font-size: 0.95em;
    }
    .btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    .section-title p {
        font-size: 0.9em;
    }
    .logo h1 {
        font-size: 18px;
    }
    .track-input-row {
        flex-direction: column;
        gap: 10px;
    }
    .track-input-row input {
        width: 100%;
    }
    .track-result {
        font-size: 13px;
    }
    .track-card {
        padding: 15px;
        font-size: 13px;
    }
    .track-card .label {
        font-size: 12px;
    }
    .map-section iframe {
        height: 250px;
    }
    footer {
        padding: 25px 15px;
    }
    footer h3 {
        font-size: 1em;
    }
    footer .footer-links {
        gap: 12px;
    }
    footer .footer-links a {
        font-size: 13px;
    }
    footer p {
        font-size: 12px;
    }
    .prices-section {
        padding: 40px 0;
    }
    .order-section {
        padding: 40px 0;
    }
    .gallery-page {
        padding: 40px 0;
    }
    .track-section {
        padding: 40px 0;
    }
    .testimonials {
        padding: 40px 0;
    }
    .features {
        padding: 40px 0;
    }
    .about {
        padding: 40px 0;
    }
    .service-section {
        padding: 35px 0;
    }
    .section-divider {
        padding: 5px 0;
    }
    .sd-move span {
        font-size: 11px;
    }
    .sd-label {
        font-size: 10px;
        padding: 4px 10px;
    }
    .lightbox-prev, .lightbox-next {
        font-size: 24px;
        width: 40px;
        height: 40px;
    }
    .lightbox-close {
        font-size: 32px;
        top: 12px;
        left: 15px;
    }
}

@media (max-width: 400px) {
    .hero-slide h2 {
        font-size: 1.2em;
    }
    .hero-slide {
        padding: 30px 12px 30px;
        min-height: 250px;
    }
    .hero-slide p {
        font-size: 0.85em;
    }
    .btn {
        font-size: 13px;
        padding: 8px 18px;
    }
    .hero-buttons {
        gap: 8px;
    }
    .section-title h3 {
        font-size: 1.1em;
    }
    .section-title h3::after {
        width: 40px;
        height: 2px;
    }
    .floating-call { left: 6px; bottom: 85px; }
    .floating-whatsapp { left: 6px; bottom: 25px; }
    .floating-call a,
    .floating-whatsapp a {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}
