:root {
--primary: #012e90;
--primary-light: #1a4fb5;
--primary-lighter: #3a6fd0;
--primary-dark: #001e5e;
--primary-darker: #001140;
--gold: #c7a34e;
--gold-light: #d9bd6a;
--gold-lighter: #e8d093;
--gold-dark: #a88838;
--white: #ffffff;
--off-white: #f8f9fb;
--light-gray: #f0f2f6;
--gray: #6b7280;
--dark-gray: #374151;
--darker: #1f2937;
--navy-deep: #0a1b3d;
--navy-mid: #0d2350;
--success: #10b981;
--warning: #f59e0b;
--error: #ef4444;
--shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
--shadow-md: 0 4px 20px rgba(0,0,0,0.12);
--shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
--shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
--shadow-gold: 0 5px 20px rgba(199,163,78,0.3);
--shadow-primary: 0 5px 20px rgba(1,46,144,0.3);
--transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
--transition-fast: all 0.25s ease;
--radius-sm: 8px;
--radius-md: 14px;
--radius-lg: 20px;
--radius-xl: 28px;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
overflow-x: hidden;
}

body {
font-family: 'Tajawal', sans-serif;
direction: rtl;
text-align: right;
color: var(--dark-gray);
background: var(--white);
overflow-x: hidden;
line-height: 1.7;
font-weight: 400;
}

::selection {
background: var(--gold);
color: var(--primary-darker);
}

::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: var(--navy-deep);
}
::-webkit-scrollbar-thumb {
background: var(--gold);
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--gold-dark);
}

#preloader {
position: fixed;
inset: 0;
background: var(--navy-deep);
z-index: 99999;
display: flex;
align-items: center;
justify-content: center;
transition: opacity 0.5s, visibility 0.5s;
}
#preloader.hidden {
opacity: 0;
visibility: hidden;
}
.loader-circle {
width: 60px;
height: 60px;
border: 4px solid rgba(199,163,78,0.2);
border-top-color: var(--gold);
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}

.progress-bar {
position: fixed;
top: 0;
right: 0;
width: 100%;
height: 4px;
background: transparent;
z-index: 99998;
}
#progressBar {
display: block;
height: 100%;
width: 0%;
background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold-dark));
transition: width 0.1s;
}

.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 40px;
}

section {
padding: 100px 0;
position: relative;
}

.section-header {
text-align: center;
margin-bottom: 60px;
}
.section-tag {
display: inline-block;
padding: 8px 24px;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: var(--gold);
font-size: 14px;
font-weight: 700;
border-radius: 50px;
margin-bottom: 20px;
letter-spacing: 1px;
box-shadow: var(--shadow-primary);
}
.section-title {
font-size: 38px;
font-weight: 800;
color: var(--primary);
margin-bottom: 16px;
}
.section-divider {
width: 80px;
height: 4px;
background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold-dark));
margin: 0 auto 20px;
border-radius: 2px;
}
.section-desc {
font-size: 18px;
color: var(--gray);
max-width: 700px;
margin: 0 auto;
}

.btn {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 16px 36px;
font-size: 16px;
font-weight: 700;
font-family: 'Tajawal', sans-serif;
border: none;
border-radius: 50px;
cursor: pointer;
text-decoration: none;
transition: var(--transition);
position: relative;
overflow: hidden;
}
.btn-primary {
background: linear-gradient(135deg, var(--gold), var(--gold-dark));
color: var(--white);
box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(199,163,78,0.5);
}
.btn-primary::before {
content: '';
position: absolute;
top: 0;
right: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
transition: right 0.5s;
}
.btn-primary:hover::before {
right: 100%;
}
.btn-secondary {
background: transparent;
color: var(--gold);
box-shadow: inset 0 0 0 2px var(--gold);
}
.btn-secondary:hover {
transform: translateY(-3px);
background: var(--gold);
color: var(--navy-deep);
box-shadow: 0 10px 30px rgba(199,163,78,0.5);
}
.btn-secondary::before {
content: '';
position: absolute;
top: 0;
right: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
transition: right 0.5s;
}
.btn-secondary:hover::before {
right: 100%;
}

#header {
position: fixed;
top: 0;
right: 0;
width: 100%;
background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
z-index: 1000;
padding: 18px 0;
transition: var(--transition);
box-shadow: 0 4px 20px rgba(0,0,0,0.3);
border-bottom: 2px solid var(--gold);
}
#header.scrolled {
padding: 12px 0;
box-shadow: 0 6px 30px rgba(0,0,0,0.4);
background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}
.logo {
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
}
.logo-img {
width: 50px;
height: 50px;
object-fit: contain;
border-radius: 50%;
}
.logo-text {
font-size: 24px;
font-weight: 900;
color: var(--white);
white-space: nowrap;
}
.nav-desktop ul {
display: flex;
align-items: center;
gap: 5px;
list-style: none;
}
.nav-link {
display: inline-block;
padding: 10px 16px;
font-size: 15px;
font-weight: 600;
color: rgba(255,255,255,0.85);
text-decoration: none;
border-radius: 8px;
transition: var(--transition-fast);
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
bottom: 4px;
right: 50%;
transform: translateX(50%);
width: 0;
height: 2px;
background: var(--gold);
border-radius: 2px;
transition: width 0.3s;
}
.nav-link:hover {
color: var(--gold);
}
.nav-link:hover::after {
width: 60%;
}
.nav-link.active {
color: var(--gold);
background: rgba(199,163,78,0.12);
}
.nav-link.active::after {
width: 60%;
}
.header-call {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 24px;
background: linear-gradient(135deg, var(--gold), var(--gold-dark));
color: var(--navy-deep);
text-decoration: none;
border-radius: 50px;
font-size: 15px;
font-weight: 700;
transition: var(--transition);
box-shadow: var(--shadow-gold);
white-space: nowrap;
}
.header-call:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(199,163,78,0.6);
}
.menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 8px;
}
.menu-toggle span {
width: 26px;
height: 3px;
background: var(--gold);
border-radius: 3px;
transition: var(--transition-fast);
}

.mobile-menu {
position: fixed;
top: 0;
right: -100%;
width: 70%;
height: 100vh;
background: linear-gradient(160deg, var(--navy-deep), var(--primary-dark), var(--navy-mid));
box-shadow: -10px 0 50px rgba(0,0,0,0.5);
z-index: 1100;
transition: right 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
overflow-y: auto;
padding: 0;
border-right: 3px solid var(--gold);
display: flex;
flex-direction: column;
}
.mobile-menu.open {
right: 0;
}
.mobile-menu-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 24px 24px 20px;
border-bottom: 1px solid rgba(199,163,78,0.2);
flex-shrink: 0;
}
.mobile-menu-logo {
font-size: 20px;
font-weight: 900;
color: var(--gold);
}
.mobile-menu-close {
background: rgba(199,163,78,0.15);
border: none;
color: var(--gold);
width: 36px;
height: 36px;
border-radius: 50%;
cursor: pointer;
font-size: 16px;
transition: var(--transition-fast);
display: flex;
align-items: center;
justify-content: center;
}
.mobile-menu-close:hover {
background: var(--gold);
color: var(--navy-deep);
transform: rotate(90deg);
}
.mobile-nav {
flex: 1;
overflow-y: auto;
padding: 20px 0;
}
.mobile-nav ul {
list-style: none;
}
.mobile-link {
display: flex;
align-items: center;
gap: 14px;
padding: 16px 24px;
color: var(--white);
text-decoration: none;
font-size: 16px;
font-weight: 600;
transition: var(--transition-fast);
border-right: 3px solid transparent;
}
.mobile-link i {
color: var(--gold);
width: 24px;
text-align: center;
font-size: 18px;
}
.mobile-link:hover {
background: rgba(199,163,78,0.1);
border-right-color: var(--gold);
padding-right: 30px;
}
.mobile-menu-footer {
padding: 20px 24px 30px;
border-top: 1px solid rgba(199,163,78,0.2);
text-align: center;
flex-shrink: 0;
}
.mobile-menu-footer p {
color: rgba(255,255,255,0.7);
font-size: 14px;
margin-bottom: 12px;
}
.mobile-call-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 28px;
background: linear-gradient(135deg, var(--gold), var(--gold-dark));
color: var(--navy-deep);
text-decoration: none;
border-radius: 50px;
font-size: 17px;
font-weight: 700;
transition: var(--transition-fast);
}
.mobile-call-btn:hover {
transform: scale(1.05);
box-shadow: var(--shadow-gold);
}
.mobile-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.6);
backdrop-filter: blur(3px);
z-index: 1050;
opacity: 0;
visibility: hidden;
transition: var(--transition);
}
.mobile-overlay.open {
opacity: 1;
visibility: visible;
}

.hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 120px 0 80px;
overflow: hidden;
}
.hero-bg {
position: absolute;
inset: 0;
background: linear-gradient(135deg, var(--navy-deep), var(--primary-dark), var(--navy-mid));
background-size: 200% 200%;
animation: gradientShift 10s ease infinite;
}
@keyframes gradientShift {
0%, 100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}
.hero-bg::before {
content: '';
position: absolute;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c7a34e' fill-opacity='0.08'%3E%3Cpath d='M40 10 L50 30 L70 30 L55 45 L60 65 L40 55 L20 65 L25 45 L10 30 L30 30 Z'/%3E%3C/g%3E%3C/svg%3E");
background-size: 120px;
animation: patternZoom 8s ease-in-out infinite alternate;
}
@keyframes patternZoom {
0% { transform: scale(1); opacity: 0.6; }
100% { transform: scale(1.15); opacity: 1; }
}
.hero-bg::after {
content: '';
position: absolute;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23c7a34e' stroke-opacity='0.06' stroke-width='1'%3E%3Crect x='10' y='10' width='80' height='80' rx='8'/%3E%3Crect x='25' y='25' width='50' height='50' rx='5'/%3E%3Crect x='40' y='40' width='20' height='20' rx='3'/%3E%3C/g%3E%3C/svg%3E");
background-size: 150px;
animation: patternMove 20s linear infinite;
}
@keyframes patternMove {
0% { background-position: 0 0; }
100% { background-position: 150px 150px; }
}
.hero-overlay {
position: absolute;
inset: 0;
background: radial-gradient(ellipse at center, transparent 0%, rgba(0,17,64,0.3) 100%);
}
.hero-content {
position: relative;
z-index: 2;
max-width: 900px;
}
.hero-title {
font-size: 56px;
font-weight: 900;
color: var(--white);
margin-bottom: 24px;
line-height: 1.2;
animation: heroFadeDown 1s ease;
}
.hero-title br {
display: block;
content: '';
margin-top: 4px;
}
.hero-title::after {
content: '';
display: block;
width: 100px;
height: 4px;
background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold-dark));
margin: 20px auto 0;
border-radius: 2px;
}
@keyframes heroFadeDown {
from { opacity: 0; transform: translateY(-30px); }
to { opacity: 1; transform: translateY(0); }
}
.hero-subtitle {
font-size: 30px;
color: rgba(255,255,255,0.9);
margin-bottom: 40px;
line-height: 1.9;
animation: heroFadeUp 1s ease 0.3s both;
}
@keyframes heroFadeUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
.hero-buttons {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
animation: heroFadeUp 1s ease 0.6s both;
}
.hero-scroll {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
color: rgba(255,255,255,0.7);
font-size: 14px;
text-align: center;
animation: scrollBounce 2s ease infinite;
z-index: 2;
}
.hero-scroll i {
display: block;
font-size: 20px;
margin-top: 5px;
}
@keyframes scrollBounce {
0%, 100% { transform: translateX(-50%) translateY(0); }
50% { transform: translateX(-50%) translateY(10px); }
}

.about {
background: var(--white);
}
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
margin-bottom: 80px;
}
.about-text h3 {
font-size: 28px;
font-weight: 800;
color: var(--primary);
margin-bottom: 20px;
}
.about-text p {
font-size: 17px;
color: var(--dark-gray);
margin-bottom: 18px;
line-height: 1.9;
}
.about-features {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 14px;
margin-top: 30px;
}
.about-feature {
display: flex;
align-items: center;
gap: 10px;
font-size: 16px;
font-weight: 600;
color: var(--primary);
}
.about-feature i {
color: var(--gold);
font-size: 22px;
}
.about-img-wrapper {
position: relative;
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-lg);
aspect-ratio: 4/3;
}
.about-img-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s;
}
.about-img-wrapper:hover img {
transform: scale(1.08);
}
.about-img-badge {
position: absolute;
bottom: 20px;
right: 20px;
background: rgba(255,255,255,0.95);
backdrop-filter: blur(10px);
padding: 16px 24px;
border-radius: var(--radius-md);
display: flex;
align-items: center;
gap: 12px;
box-shadow: var(--shadow-md);
}
.about-img-badge i {
font-size: 32px;
color: var(--gold);
}
.about-img-badge span {
font-size: 15px;
font-weight: 700;
color: var(--primary);
}
.stats {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
padding: 50px 40px;
background: linear-gradient(135deg, var(--navy-deep), var(--primary-dark));
border-radius: var(--radius-xl);
box-shadow: var(--shadow-lg);
position: relative;
overflow: hidden;
border: 2px solid rgba(199,163,78,0.2);
}
.stats::before {
content: '';
position: absolute;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c7a34e' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/svg%3E");
}
.stat-item {
text-align: center;
position: relative;
z-index: 1;
}
.stat-icon {
width: 70px;
height: 70px;
margin: 0 auto 16px;
background: linear-gradient(135deg, var(--gold), var(--gold-dark));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
color: var(--white);
box-shadow: var(--shadow-gold);
transition: var(--transition);
}
.stat-item:hover .stat-icon {
transform: translateY(-5px) rotate(10deg);
}
.stat-number {
font-size: 42px;
font-weight: 900;
color: var(--gold);
margin-bottom: 8px;
}
.stat-label {
font-size: 16px;
color: rgba(255,255,255,0.85);
font-weight: 600;
}

.services {
background: var(--navy-deep);
color: var(--white);
}
.services .section-title {
color: var(--white);
}
.services .section-desc {
color: rgba(255,255,255,0.7);
}
.services .section-tag {
background: rgba(199,163,78,0.15);
color: var(--gold);
border: 1px solid var(--gold);
}
.services-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.service-card {
background: rgba(255,255,255,0.05);
backdrop-filter: blur(10px);
padding: 40px 35px;
border-radius: var(--radius-lg);
box-shadow: 0 4px 20px rgba(0,0,0,0.2);
transition: var(--transition);
border: 1px solid rgba(199,163,78,0.15);
position: relative;
overflow: hidden;
}
.service-card::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 0;
height: 4px;
background: linear-gradient(90deg, var(--gold), var(--gold-dark));
transition: width 0.4s;
}
.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 50px rgba(0,0,0,0.4);
border-color: var(--gold);
background: rgba(255,255,255,0.08);
}
.service-card:hover::before {
width: 100%;
}
.service-icon {
width: 80px;
height: 80px;
margin-bottom: 24px;
background: linear-gradient(135deg, var(--gold), var(--gold-dark));
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 36px;
color: var(--navy-deep);
transition: var(--transition);
box-shadow: var(--shadow-gold);
}
.service-card:hover .service-icon {
transform: rotateY(180deg);
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: var(--gold);
}
.service-card h3 {
font-size: 22px;
font-weight: 800;
color: var(--white);
margin-bottom: 16px;
}
.service-card p {
font-size: 16px;
color: rgba(255,255,255,0.75);
line-height: 1.8;
margin-bottom: 20px;
}
.service-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--gold);
font-weight: 700;
text-decoration: none;
font-size: 15px;
transition: var(--transition-fast);
}
.service-link:hover {
color: var(--gold-light);
gap: 14px;
}
.service-link i {
font-size: 13px;
}
.services-discount {
display: flex;
align-items: center;
gap: 30px;
margin-top: 60px;
padding: 40px 50px;
background: linear-gradient(135deg, var(--gold), var(--gold-dark));
border-radius: var(--radius-xl);
box-shadow: var(--shadow-gold);
flex-wrap: wrap;
justify-content: center;
text-align: center;
}
.discount-badge {
display: flex;
align-items: center;
gap: 10px;
padding: 16px 30px;
background: var(--navy-deep);
color: var(--gold);
font-size: 24px;
font-weight: 900;
border-radius: 50px;
box-shadow: 0 4px 15px rgba(0,0,0,0.3);
animation: pulse 2s ease infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
.discount-text {
flex: 1;
min-width: 250px;
}
.discount-text h3 {
font-size: 24px;
font-weight: 800;
color: var(--navy-deep);
margin-bottom: 8px;
}
.discount-text p {
font-size: 16px;
color: rgba(10,27,61,0.8);
}
.services-discount .btn-primary {
background: var(--navy-deep);
color: var(--gold);
}
.services-discount .btn-primary:hover {
box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.gallery {
background: var(--white);
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.gallery-item {
border-radius: var(--radius-md);
overflow: hidden;
box-shadow: var(--shadow-sm);
aspect-ratio: 1;
transition: var(--transition);
cursor: pointer;
position: relative;
}
.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s;
}
.gallery-item:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}
.gallery-item:hover img {
transform: scale(1.1);
}
.gallery-item::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(1,46,144,0.4), transparent 50%);
opacity: 0;
transition: opacity 0.4s;
}
.gallery-item:hover::after {
opacity: 1;
}

.blog {
background: var(--light-gray);
}
.blog-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.blog-card {
background: var(--white);
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}
.blog-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}
.blog-img-wrapper {
position: relative;
height: 220px;
overflow: hidden;
background: linear-gradient(135deg, var(--navy-deep), var(--primary-dark));
}
.blog-img-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s;
}
.blog-card:hover .blog-img-wrapper img {
transform: scale(1.08);
}
.blog-date {
position: absolute;
bottom: 15px;
right: 15px;
background: rgba(255,255,255,0.95);
padding: 6px 14px;
border-radius: 50px;
font-size: 13px;
font-weight: 600;
color: var(--primary);
}
.blog-content {
padding: 28px 24px;
}
.blog-category {
display: inline-block;
padding: 5px 16px;
background: linear-gradient(135deg, rgba(1,46,144,0.1), rgba(199,163,78,0.1));
color: var(--primary);
font-size: 13px;
font-weight: 700;
border-radius: 50px;
margin-bottom: 14px;
}
.blog-content h3 {
font-size: 20px;
font-weight: 800;
color: var(--primary);
margin-bottom: 14px;
line-height: 1.4;
}
.blog-content p {
font-size: 15px;
color: var(--dark-gray);
line-height: 1.7;
margin-bottom: 20px;
}
.blog-read-more {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--gold-dark);
font-weight: 700;
text-decoration: none;
font-size: 15px;
transition: var(--transition-fast);
}
.blog-read-more:hover {
color: var(--primary);
gap: 14px;
}

.faq {
background: var(--navy-deep);
color: var(--white);
}
.faq .section-title {
color: var(--white);
}
.faq .section-desc {
color: rgba(255,255,255,0.7);
}
.faq .section-tag {
background: rgba(199,163,78,0.15);
color: var(--gold);
border: 1px solid var(--gold);
}
.faq-list {
max-width: 850px;
margin: 0 auto;
}
.faq-item {
background: rgba(255,255,255,0.05);
backdrop-filter: blur(10px);
border-radius: var(--radius-md);
margin-bottom: 16px;
overflow: hidden;
transition: var(--transition);
border: 1px solid rgba(199,163,78,0.15);
}
.faq-item:hover {
border-color: var(--gold);
box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.faq-item.active {
background: linear-gradient(135deg, var(--gold), var(--gold-dark));
border-color: var(--gold-light);
}
.faq-question {
display: flex;
align-items: center;
justify-content: space-between;
padding: 22px 28px;
cursor: pointer;
font-size: 17px;
font-weight: 700;
color: var(--white);
transition: var(--transition-fast);
}
.faq-item.active .faq-question {
color: var(--navy-deep);
}
.faq-icon {
transition: var(--transition);
font-size: 16px;
color: var(--gold);
}
.faq-item.active .faq-icon {
color: var(--navy-deep);
transform: rotate(180deg);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease;
}
.faq-answer p {
padding: 0 28px 22px;
font-size: 16px;
color: rgba(255,255,255,0.8);
line-height: 1.8;
}
.faq-item.active .faq-answer p {
color: rgba(10,27,61,0.85);
}

.why-us {
background: var(--white);
}
.why-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.why-card {
background: var(--white);
padding: 40px 30px;
border-radius: var(--radius-lg);
text-align: center;
box-shadow: var(--shadow-sm);
transition: var(--transition);
position: relative;
overflow: hidden;
border: 1px solid var(--light-gray);
}
.why-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 0;
background: linear-gradient(135deg, var(--navy-deep), var(--primary-dark));
transition: height 0.4s;
z-index: 0;
}
.why-card:hover::before {
height: 100%;
}
.why-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
border-color: var(--gold);
}
.why-card > * {
position: relative;
z-index: 1;
transition: color 0.4s;
}
.why-icon {
width: 80px;
height: 80px;
margin: 0 auto 24px;
background: linear-gradient(135deg, var(--gold), var(--gold-dark));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 34px;
color: var(--white);
box-shadow: var(--shadow-gold);
transition: var(--transition);
}
.why-card:hover .why-icon {
transform: rotateY(180deg) scale(1.1);
}
.why-card h3 {
font-size: 20px;
font-weight: 800;
color: var(--primary);
margin-bottom: 16px;
transition: color 0.4s;
}
.why-card p {
font-size: 15px;
color: var(--dark-gray);
line-height: 1.8;
transition: color 0.4s;
}
.why-card:hover h3,
.why-card:hover p {
color: var(--white);
}
.why-card-1 { transform: translateY(0); }
.why-card-2 { transform: translateY(20px); }
.why-card-3 { transform: translateY(0); }
.why-card-4 { transform: translateY(20px); }
.why-card-5 { transform: translateY(0); }
.why-card-6 { transform: translateY(20px); }
.why-card-1:hover, .why-card-2:hover, .why-card-3:hover,
.why-card-4:hover, .why-card-5:hover, .why-card-6:hover {
transform: translateY(-10px);
}

.contact {
background: linear-gradient(135deg, var(--navy-deep), var(--primary-dark), var(--navy-mid));
color: var(--white);
overflow: hidden;
}
.contact-bg {
position: absolute;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c7a34e' fill-opacity='0.06'%3E%3Cpath d='M40 10 L50 30 L70 30 L55 45 L60 65 L40 55 L20 65 L25 45 L10 30 L30 30 Z'/%3E%3C/g%3E%3C/svg%3E");
background-size: 120px;
animation: patternZoom 8s ease-in-out infinite alternate;
}
.contact-overlay {
position: absolute;
inset: 0;
background: radial-gradient(ellipse at center, transparent 0%, rgba(0,17,64,0.3) 100%);
}
.contact .container {
position: relative;
z-index: 1;
}
.contact .section-tag {
background: rgba(199,163,78,0.15);
color: var(--gold);
border: 1px solid var(--gold);
}
.contact .section-title {
color: var(--white);
}
.contact .section-desc {
color: rgba(255,255,255,0.85);
}
.contact-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
max-width: 700px;
margin: 0 auto;
}
.contact-card {
background: rgba(255,255,255,0.08);
backdrop-filter: blur(10px);
border: 1px solid rgba(199,163,78,0.2);
border-radius: var(--radius-lg);
padding: 35px 30px;
text-align: center;
text-decoration: none;
color: var(--white);
transition: var(--transition);
}
.contact-card:hover {
background: rgba(255,255,255,0.15);
border-color: var(--gold);
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.contact-icon {
width: 65px;
height: 65px;
margin: 0 auto 18px;
background: linear-gradient(135deg, var(--gold), var(--gold-dark));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
color: var(--white);
transition: var(--transition);
}
.contact-card:hover .contact-icon {
transform: rotate(360deg) scale(1.1);
}
.whatsapp-icon {
background: linear-gradient(135deg, #25d366, #128c7e) !important;
}
.contact-card h3 {
font-size: 18px;
font-weight: 700;
margin-bottom: 10px;
}
.contact-card p {
font-size: 22px;
font-weight: 800;
color: var(--gold);
margin-bottom: 6px;
direction: ltr;
}
.contact-card span {
font-size: 14px;
color: rgba(255,255,255,0.7);
}
.contact-address {
display: flex;
align-items: center;
justify-content: center;
gap: 16px;
margin-top: 50px;
padding: 24px 40px;
background: rgba(255,255,255,0.08);
backdrop-filter: blur(10px);
border-radius: var(--radius-lg);
border: 1px solid rgba(199,163,78,0.2);
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.address-icon {
font-size: 28px;
color: var(--gold);
flex-shrink: 0;
}
.contact-address p {
font-size: 16px;
color: rgba(255,255,255,0.9);
}

.footer {
background: var(--navy-deep);
color: rgba(255,255,255,0.7);
padding: 70px 0 0;
border-top: 2px solid var(--gold);
}
.footer-grid {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr 1fr;
gap: 40px;
padding-bottom: 50px;
border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
font-size: 24px;
font-weight: 900;
color: var(--gold);
margin-bottom: 16px;
}
.footer-col p {
font-size: 15px;
line-height: 1.8;
margin-bottom: 20px;
}
.footer-col h4 {
font-size: 18px;
font-weight: 700;
color: var(--white);
margin-bottom: 20px;
position: relative;
padding-bottom: 10px;
}
.footer-col h4::after {
content: '';
position: absolute;
bottom: 0;
right: 0;
width: 40px;
height: 3px;
background: linear-gradient(90deg, var(--gold), var(--gold-dark));
border-radius: 2px;
}
.footer-col ul {
list-style: none;
}
.footer-col ul li {
margin-bottom: 12px;
}
.footer-col ul li a {
color: rgba(255,255,255,0.7);
text-decoration: none;
font-size: 15px;
transition: var(--transition-fast);
display: inline-flex;
align-items: center;
gap: 8px;
}
.footer-col ul li a::before {
content: '←';
color: var(--gold);
transition: var(--transition-fast);
}
.footer-col ul li a:hover {
color: var(--gold);
padding-right: 5px;
}
.footer-contact li {
display: flex;
align-items: center;
gap: 12px;
}
.footer-contact li i {
color: var(--gold);
font-size: 18px;
width: 20px;
text-align: center;
}
.footer-contact li a {
color: rgba(255,255,255,0.7);
text-decoration: none;
font-size: 15px;
}
.footer-contact li a:hover {
color: var(--gold);
}
.footer-contact li a::before {
display: none;
}
.footer-social {
display: flex;
gap: 12px;
}
.footer-social a {
width: 42px;
height: 42px;
background: rgba(255,255,255,0.08);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--gold);
font-size: 18px;
text-decoration: none;
transition: var(--transition-fast);
}
.footer-social a:hover {
background: var(--gold);
color: var(--navy-deep);
transform: translateY(-4px);
}
.footer-bottom {
padding: 24px 0;
text-align: center;
}
.footer-bottom p {
font-size: 14px;
margin-bottom: 6px;
}
.footer-bottom a {
color: var(--gold);
text-decoration: none;
font-weight: 700;
transition: var(--transition-fast);
}
.footer-bottom a:hover {
color: var(--gold-light);
}

.float-buttons {
position: fixed;
bottom: 30px;
left: 30px;
z-index: 999;
display: flex;
flex-direction: column;
gap: 14px;
}
.float-btn {
width: 56px;
height: 56px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 26px;
color: var(--white);
text-decoration: none;
box-shadow: var(--shadow-lg);
transition: var(--transition);
animation: floatPulse 2s ease infinite;
}
@keyframes floatPulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.08); }
}
.float-call {
background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}
.float-whatsapp {
background: linear-gradient(135deg, #25d366, #128c7e);
animation-delay: 0.5s;
}
.float-btn:hover {
transform: scale(1.15) rotate(10deg);
}

.fade-up {
opacity: 0;
transform: translateY(40px);
transition: opacity 0.6s, transform 0.6s;
}
.fade-up.visible {
opacity: 1;
transform: translateY(0);
}

@media (max-width: 1024px) {
.container { padding: 0 30px; }
.hero-title { font-size: 44px; }
.section-title { font-size: 32px; }
.services-grid { grid-template-columns: 1fr; }
.gallery-grid { grid-template-columns: repeat(2, 1fr); }
.blog-grid { grid-template-columns: 1fr; }
.why-grid { grid-template-columns: repeat(2, 1fr); }
.footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
.container { padding: 0 20px; }
section { padding: 70px 0; }
.section-title { font-size: 26px; }
.section-desc { font-size: 16px; }
.hero { min-height: 100vh; padding: 100px 0 60px; }
.hero-title { font-size: 30px; }
.hero-subtitle { font-size: 20px; }
.hero-buttons { flex-direction: column; width: 100%; }
.hero-buttons .btn { width: 100%; justify-content: center; }
.about-grid { grid-template-columns: 1fr; gap: 40px; }
.about-features { grid-template-columns: 1fr; }
.stats { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 35px 20px; }
.stat-number { font-size: 32px; }
.gallery-grid { grid-template-columns: 1fr; }
.why-grid { grid-template-columns: 1fr; }
.why-card-2, .why-card-4, .why-card-6 { transform: translateY(0); }
.contact-grid { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr; gap: 30px; }
.services-discount { flex-direction: column; padding: 30px 20px; }
.discount-text { text-align: center; }
.nav-desktop { display: none; }
.header-call { display: none; }
.menu-toggle { display: flex; }
.float-buttons { bottom: 20px; left: 20px; }
.float-btn { width: 50px; height: 50px; font-size: 22px; }
.faq-question { font-size: 15px; padding: 18px 20px; }
.faq-answer p { font-size: 14px; padding: 0 20px 18px; }
.contact-address { flex-direction: column; text-align: center; gap: 10px; padding: 20px; }
}

@media (max-width: 480px) {
.hero-title { font-size: 24px; }
.hero-subtitle { font-size: 14px; }
.section-title { font-size: 22px; }
.section-tag { font-size: 12px; padding: 6px 18px; }
.stat-number { font-size: 28px; }
.stat-label { font-size: 14px; }
.service-card { padding: 30px 24px; }
.service-card h3 { font-size: 19px; }
.contact-card p { font-size: 18px; }
}

@media (min-width: 769px) {
.mobile-menu { display: none; }
.mobile-overlay { display: none; }
}
