/* Reset and Base Styles */

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Cairo', sans-serif;
line-height: 1.6;
color: #f3f4f6;
background-color: #153250;
direction: rtl;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
margin-bottom: 1rem;
color: #f3f4f6;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
margin-bottom: 1rem;
line-height: 1.8;
color: #a4aeb6;
}

/* Buttons */
.btn {
display: inline-block;
padding: 12px 24px;
border: none;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
text-align: center;
}

.btn-primary {
background: #1f9cc9;
color: #fff;
border: none;
}

.btn-primary:hover {
background: #1682a8;
color: #fff;
box-shadow: 0 8px 25px rgba(31, 156, 201, 0.3);
}

.btn-secondary {
background: transparent;
color: #1f9cc9;
border: 2px solid #1f9cc9;
}

.btn-secondary:hover {
background: #1f9cc9;
color: #fff;
border-color: #1f9cc9;
}

.btn-large {
padding: 16px 32px;
font-size: 1.1rem;
}

/* Navigation */
.navbar {
background: #618caf6e; /* أبيض شفاف */
box-shadow: 0 2px 20px rgba(0,0,0,0.2);
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
}

.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
max-width: 1200px;
margin: 0 auto;
}

.nav-brand {
display: flex;
align-items: center;
gap: 12px;
}

/* Gem Logo Styles */
.logo {
width: 45px;
height: 45px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
}

.logo:hover {
transform: scale(1.1) rotate(5deg);
}

.logo::before {
content: '';
position: absolute;
width: 40px;
height: 40px;
background: linear-gradient(135deg, #1f9cc9 0%, #1682a8 25%, #126d8f 50%, #0e5a75 75%, #1682a8 100%);
clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
box-shadow:
0 0 20px rgba(31, 156, 201, 0.4),
inset 0 2px 4px rgba(255, 255, 255, 0.3),
inset 0 -2px 4px rgba(0, 0, 0, 0.2);
animation: gemSparkle 3s ease-in-out infinite;
}

.logo::after {
content: '';
position: absolute;
width: 30px;
height: 30px;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
z-index: 1;
}

@keyframes gemSparkle {
0%, 100% {
box-shadow:
0 0 20px rgba(31, 156, 201, 0.4),
inset 0 2px 4px rgba(255, 255, 255, 0.3),
inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}
50% {
box-shadow:
0 0 30px rgba(31, 156, 201, 0.6),
0 0 40px rgba(31, 156, 201, 0.3),
inset 0 2px 6px rgba(255, 255, 255, 0.4),
inset 0 -2px 6px rgba(0, 0, 0, 0.3);
}
}

.nav-brand h1 {
font-size: 1.5rem;
color: #fff;
margin: 0;
background: none;
-webkit-background-clip: unset;
-webkit-text-fill-color: unset;
background-clip: unset;
}

.nav-menu {
display: flex;
gap: 2rem;
align-items: center;
}

.nav-link {
text-decoration: none;
color: #a4aeb6;
font-weight: 500;
padding: 8px 16px;
border-radius: 25px;
transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
color: #1f9cc9;
background: rgba(31, 156, 201, 0.1);
}

.nav-toggle {
display: none;
flex-direction: column;
cursor: pointer;
gap: 4px;
}

.nav-toggle span {
width: 25px;
height: 3px;
background: #a4aeb6;
border-radius: 2px;
transition: all 0.3s ease;
}

/* Hero Section */
.hero {
height: 100vh;
position: relative;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -2;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: transparent;
z-index: 0;
}

.hero-content {
position: relative;
z-index: 1;
text-align: center;
color: #f3f4f6;
max-width: 800px;
padding: 0 2rem;
animation: fadeInUp 1s ease-out;
}

.hero-title {
font-size: 4rem;
font-weight: 900;
margin-bottom: 1.5rem;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
font-size: 1.3rem;
margin-bottom: 2rem;
opacity: 0.9;
line-height: 1.6;
color: #a4aeb6;
}

.hero-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}

/* Features Section */
.features {
padding: 5rem 0;
background: #153250;
}

.section-header {
text-align: center;
margin-bottom: 4rem;
}

.section-header h2 {
font-size: 2.5rem;
color: #f3f4f6;
margin-bottom: 1rem;
}

.section-header p {
font-size: 1.2rem;
color: #a4aeb6;
max-width: 600px;
margin: 0 auto;
}

.features-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
}

.feature-card {
background: rgba(31, 156, 201, 0.1);
padding: 2rem;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.18);
text-align: center;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
color: #f3f4f6;
border: 1px solid rgba(31, 156, 201, 0.2);
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
background: rgba(31, 156, 201, 0.2);
}

.feature-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #1f9cc9, #1682a8);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
font-size: 2rem;
color: white;
transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
transform: scale(1.1);
}

.feature-card h3 {
color: #f3f4f6;
margin-bottom: 1rem;
}

.feature-card p {
color: #a4aeb6;
margin: 0;
}

/* CTA Section */
.cta {
padding: 5rem 0;
background: rgba(31, 156, 201, 0.1);
color: #f3f4f6;
text-align: center;
border-top: 1px solid rgba(31, 156, 201, 0.2);
border-bottom: 1px solid rgba(31, 156, 201, 0.2);
}

.cta h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.cta p {
font-size: 1.2rem;
margin-bottom: 2rem;
opacity: 0.9;
color: #a4aeb6;
}

/* Page Header */
.page-header {
padding: 8rem 0 4rem;
background: rgba(31, 156, 201, 0.1);
color: #f3f4f6;
text-align: center;
border-bottom: 1px solid rgba(31, 156, 201, 0.2);
}

.page-header h1 {
font-size: 3rem;
margin-bottom: 1rem;
}

.page-header p {
font-size: 1.2rem;
opacity: 0.9;
max-width: 600px;
margin: 0 auto;
color: #a4aeb6;
}

/* Gallery Styles */
.gallery {
padding: 4rem 0;
background: #153250;
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}

.gallery-item {
position: relative;
overflow: hidden;
border-radius: 15px;
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
cursor: pointer;
transition: all 0.3s ease;
}

.gallery-item:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
width: 100%;
height: 300px;
object-fit: cover;
transition: none;
}

.gallery-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
color: white;
padding: 2rem 1rem 1rem;
transform: translateY(0);
transition: none;
}

.gallery-overlay h3 {
margin: 0;
font-size: 1.2rem;
}

/* Modal Styles */
.modal {
display: none;
position: fixed;
z-index: 2000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
margin: auto;
display: block;
width: 80%;
max-width: 700px;
max-height: 80%;
object-fit: contain;
animation: zoom 0.3s;
}

.modal-close {
position: absolute;
top: 15px;
right: 35px;
color: #f1f1f1;
font-size: 40px;
font-weight: bold;
cursor: pointer;
}

.modal-close:hover {
color: #bbb;
}

.modal-caption {
margin: auto;
display: block;
width: 80%;
max-width: 700px;
text-align: center;
color: #ccc;
padding: 10px 0;
height: 150px;
}

/* Contact Page Styles */
.contact-content {
padding: 4rem 0;
background: #153250;
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
}

.contact-info h2,
.map-section h2 {
margin-bottom: 2rem;
color: #ffffff;
}

.contact-cards {
margin-bottom: 2rem;
}

.contact-card,
.contact-card.phone,
.contact-card.location,
.contact-card.email,
.working-hours {
background: rgba(31, 156, 201, 0.1) !important;
border: 1px solid rgba(31, 156, 201, 0.2);
}

.contact-card {
display: flex;
align-items: center;
gap: 1rem;
padding: 1.5rem;
border-radius: 15px;
margin-bottom: 1rem;
box-shadow: 0 5px 15px rgba(0,0,0,0.18);
transition: transform 0.3s ease;
color: #f3f4f6;
}

.contact-card:hover {
transform: translateY(-2px);
}

.contact-card.phone {
  background: #fff !important;
  color: #222 !important;
}

.contact-card.location {
background: rgba(31, 156, 201, 0.1);
}

.contact-card.email {
background: linear-gradient(135deg, rgba(31, 156, 201, 0.1), rgba(31, 156, 201, 0.05));
}

.contact-icon {
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 1.2rem;
background: #1f9cc9;
}

.contact-card.phone .contact-icon,
.contact-card.email .contact-icon,
.contact-card.location .contact-icon {
background: #1f9cc9;
color: #fff;
}

.contact-details h3 {
margin-bottom: 0.5rem;
color: #f3f4f6;
}

.contact-details p {
margin: 0;
color: #a4aeb6;
}

.contact-card.phone .contact-details p {
  font-size: 17px;
  letter-spacing: 1px;
  font-weight: 500;
  color: #11a8e4;
}

.contact-card.phone .contact-details h3 {
  color: #11a8e4 !important;
}

.working-hours {
background: linear-gradient(135deg, rgba(31, 156, 201, 0.1), rgba(31, 156, 201, 0.1));
color: white;
padding: 1.5rem;
border-radius: 15px;
}

.working-hours h3 {
margin-bottom: 1rem;
color: white;
}

.working-hours p {
margin: 0;
opacity: 0.9;
color: #a4aeb6;
}

/* Map Section Styles */
.map-container {
background: rgba(31, 156, 201, 0.1);
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
overflow: hidden;
margin-bottom: 2rem;
backdrop-filter: blur(10px);
color: #f3f4f6;
border: 1px solid rgba(31, 156, 201, 0.2);
}

.map-placeholder {
padding: 3rem 2rem;
text-align: center;
background: linear-gradient(135deg, rgba(31, 156, 201, 0.1), rgba(31, 156, 201, 0.05));
backdrop-filter: blur(10px);
}

.map-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #1f9cc9, #1682a8);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
font-size: 2rem;
color: white;
}

.map-placeholder h3 {
color: white;
margin-bottom: 1rem;
}

.map-placeholder p {
color: #a4aeb6;
margin-bottom: 2rem;
}

.map-btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
}

.location-features {
background: rgba(31, 156, 201, 0.1);
padding: 2rem;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0,0,0,0.18);
backdrop-filter: blur(10px);
color: #f3f4f6;
border: 1px solid rgba(31, 156, 201, 0.2);
}

.location-features h3 {
color: #f3f4f6;
margin-bottom: 1.5rem;
text-align: center;
}

.features-list {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}

.feature-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem;
background: rgba(31, 156, 201, 0.2);
border-radius: 10px;
transition: all 0.3s ease;
}

.feature-item:hover {
background: rgba(31, 156, 201, 0.3);
transform: translateX(-5px);
}

.feature-item i {
color: #1f9cc9;
font-size: 1.1rem;
width: 20px;
text-align: center;
}

.feature-item span {
color: #f3f4f6;
font-size: 0.9rem;
}

/* Footer */
.footer {
background: #0e2439;
color: #f3f4f6;
padding: 3rem 0;
}

.footer-content {
text-align: center;
}

.footer-brand {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
margin-bottom: 1.5rem;
}

.footer-brand h3 {
margin: 0;
font-size: 1.5rem;
}

.footer-desc {
color: #a4aeb6;
margin-bottom: 2rem;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}

.footer-contact {
display: flex;
justify-content: center;
gap: 2rem;
margin-bottom: 2rem;
flex-wrap: wrap;
}

.contact-item {
display: flex;
align-items: center;
gap: 0.5rem;
color: #a4aeb6;
}

.contact-item i {
color: #1f9cc9;
}

.footer-bottom {
border-top: 1px solid rgba(31, 156, 201, 0.2);
padding-top: 1.5rem;
color: #a4aeb6;
}

.footer-bottom p {
margin: 0;
}

/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes zoom {
from {
transform: scale(0);
}
to {
transform: scale(1);
}
}

/* Responsive Design */
@media (max-width: 768px) {
.nav-menu {
position: fixed;
top: 80px;
left: -100%;
width: 100%;
height: calc(100vh - 80px);
background: #153250;
flex-direction: column;
justify-content: flex-start;
align-items: center;
padding-top: 2rem;
transition: left 0.3s ease;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.nav-menu.active {
left: 0;
}
.nav-link {
color: #fff;
}
.nav-link:hover,
.nav-link.active {
color: #1f9cc9;
background: rgba(31, 156, 201, 0.1);
}
.nav-toggle {
display: flex;
}
.nav-toggle.active span:nth-child(1) {
transform: rotate(-45deg) translate(-5px, 6px);
}
.nav-toggle.active span:nth-child(2) {
opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
transform: rotate(45deg) translate(-5px, -6px);
}
.hero-title {
font-size: 2.5rem;
}
.hero-subtitle {
font-size: 1.1rem;
}
.hero-buttons {
flex-direction: column;
align-items: center;
}
.section-header h2 {
font-size: 2rem;
}
.contact-grid {
grid-template-columns: 1fr;
gap: 2rem;
}
.features-list {
grid-template-columns: 1fr;
}
.footer-contact {
flex-direction: column;
gap: 1rem;
}
.gallery-grid {
grid-template-columns: 1fr;
}
.container {
padding: 0 15px;
}
.page-header h1 {
font-size: 2rem;
}
.modal-content {
width: 95%;
}
.modal-close {
top: 10px;
right: 20px;
font-size: 30px;
}
.map-placeholder {
padding: 2rem 1rem;
}
}

@media (max-width: 480px) {
.hero-title {
font-size: 2rem;
}
.nav-container {
padding: 1rem;
}
.feature-card {
padding: 1.5rem;
}
.btn {
padding: 10px 20px;
font-size: 0.9rem;
}
.btn-large {
padding: 14px 28px;
font-size: 1rem;
}
.contact-card {
padding: 1rem;
}
.map-placeholder {
padding: 1.5rem 1rem;
}
}

/* Smooth scrolling */
html {
scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}

::-webkit-scrollbar-track {
background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
background: #1f9cc9;
border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
background: #1682a8;
}

/* لون واتساب عند المرور */
.social-icons {
display: flex;
gap: 25px;
justify-content: center;
align-items: center;
}

.social-icons a {
color: #fff;
font-size: 24px;
transition: color 0.3s;
}

.social-icons a:hover {
color: #1f9cc9;
}

/* اراء العملاء  */
.testimonials {
background: rgba(31, 156, 201, 0.1);
padding: 50px 20px;
text-align: center;
color: #f3f4f6;
border-top: 1px solid rgba(31, 156, 201, 0.2);
border-bottom: 1px solid rgba(31, 156, 201, 0.2);
}


.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonial {
  background: rgba(31, 156, 201, 0.1);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  color: #f3f4f6;
  border: 1px solid rgba(31, 156, 201, 0.2);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
  text-align: center;
  color: #a4aeb6;
}

.testimonial-author {
  font-weight: bold;
  color: #1f9cc9;
}
/* الاسئلة  */
.faq-container {
max-width: 800px;
margin: 0 auto;
text-align: center;
color: #f3f4f6;
}


.faq-item {
  margin-bottom: 15px;
  border: 1px solid #1f9cc9;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(31, 156, 201, 0.1);
}

.faq-question {
  padding: 15px;
  background: rgba(31, 156, 201, 0.1);
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f3f4f6;
}

.faq-answer {
  padding: 15px;
  background: rgba(31, 156, 201, 0.1);
  display: none;
  color: #a4aeb6;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  display: block;
}
/* Navbar Logo */
.navbar-logo {
height: 65px;    /* ارتفاع مناسب */
width: 100px;     /* عرض مناسب */
object-fit: contain;
margin-right: 10px; /* مسافة بسيطة بين اللوجو والنص */
vertical-align: middle;
}

/* Booking Terms Section */
.terms-section {
background: rgba(31, 156, 201, 0.1);
padding: 3rem 0 2rem 0;
margin: 2rem 0;
backdrop-filter: blur(10px);
border-top: 1px solid rgba(31, 156, 201, 0.2);
border-bottom: 1px solid rgba(31, 156, 201, 0.2);
}
.terms-container {
max-width: 700px;
margin: 0 auto;
background: rgba(31, 156, 201, 0.1);
border-radius: 18px;
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1), 0 1.5px 6px rgba(0, 0, 0, 0.08);
padding: 2.5rem 2rem;
border: 1.5px solid rgba(31, 156, 201, 0.3);
backdrop-filter: blur(10px);
color: #f3f4f6;
}
.terms-title {
text-align: center;
color: #f3f4f6;
font-size: 2rem;
margin-bottom: 1.5rem;
font-weight: 800;
letter-spacing: 1px;
}
.terms-list {
list-style: none;
padding: 0;
margin: 0;
}
.terms-list li {
position: relative;
padding-right: 2.2em;
margin-bottom: 1.1em;
font-size: 1.08rem;
color: #f3f4f6;
background: rgba(31, 156, 201, 0.2);
border-radius: 8px;
padding-top: 0.8em;
padding-bottom: 0.8em;
padding-left: 1em;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
}
.terms-list li:before {
content: "\f058";
font-family: 'Font Awesome 6 Free';
font-weight: 900;
color: #1f9cc9;
position: absolute;
right: 0.7em;
top: 50%;
transform: translateY(-50%);
font-size: 1.1em;
}
@media (max-width: 600px) {
.terms-container {
padding: 1.2rem 0.5rem;
}
.terms-title {
font-size: 1.3rem;
}
.terms-list li {
font-size: 0.98rem;
padding-right: 2em;
}
}

/* باقات MOON VILLA */
.packages-title {
text-align: center;
margin-bottom: 1.2rem;
}
.packages-title-text {
color: #1f9cc9;
font-size: 2rem;
font-weight: 900;
letter-spacing: 1px;
margin: 0;
}
.packages-section {
margin: 2.5rem 0;
display: flex;
flex-wrap: wrap;
gap: 1.2rem;
justify-content: center;
align-items: flex-start;
}
.package-card {
background: rgba(31, 156, 201, 0.1);
border-radius: 14px;
box-shadow: 0 2px 8px rgba(0,0,0,0.07);
padding: 1.3rem 1.1rem;
color: #fff;
flex: 1 1 320px;
max-width: 320px;
min-width: 230px;
min-height: 370px;
text-align: center;
display: flex;
flex-direction: column;
justify-content: space-between;
border: 1px solid rgba(31, 156, 201, 0.2);
}
.package-card-title {
color: #1f9cc9;
font-size: 1.2rem;
margin-bottom: 0.5em;
}
.package-card-price {
font-size: 2rem;
font-weight: 700;
margin-bottom: 0.4em;
}
.package-card-price span {
font-size: 1.1rem;
font-weight: 500;
}
.package-card-list {
list-style: disc inside;
padding: 0 0 0 1em;
margin: 0;
font-size: 1.05rem;
text-align: right;
display: inline-block;
color: #a4aeb6;
}
.package-card-actions {
margin-top: 1.2em;
display: flex;
gap: 0.5em;
justify-content: center;
}

.testimonial-images img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  background: #fff;
  margin-bottom: 18px;
  transition: transform 0.2s;
}
.testimonial-images img:hover {
  transform: scale(1.04);
}
@media (max-width: 600px) {
  .testimonial-images img {
    max-width: 95vw;
  }
}

/* Modal for Testimonial Images */
#testimonialModal.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(21,50,80,0.85);
  text-align: center;
}
#testimonialModal .modal-content {
  margin: auto;
  display: block;
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  background: #fff;
}
#testimonialModal .modal-caption {
  margin: 18px auto 0 auto;
  color: #f3f4f6;
  font-size: 1.1rem;
  max-width: 90vw;
  text-align: center;
}
#testimonialModal .modal-close {
  position: absolute;
  top: 30px;
  left: 40px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 2100;
  transition: color 0.2s;
}
#testimonialModal .modal-close:hover {
  color: #1f9cc9;
}
@media (max-width: 600px) {
  #testimonialModal .modal-content {
    max-width: 98vw;
    max-height: 60vh;
  }
  #testimonialModal .modal-close {
    top: 10px;
    left: 10px;
    font-size: 2rem;
  }
}

.pages-btn {
  background: #1f9cc9;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  margin-right: 1rem;
  box-shadow: 0 2px 8px rgba(31,156,201,0.08);
}
.pages-btn:hover {
  background: #1682a8;
  color: #fff;
  box-shadow: 0 8px 25px rgba(31, 156, 201, 0.18);
}

.dropdown-menu {
  position: absolute;
  top: 70px;
  left: auto;
  right: 2rem;
  background: #1a2d44;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(31,156,201,0.13);
  min-width: 180px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  animation: fadeInUp 0.3s;
}
.dropdown-link {
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  border: none;
  background: none;
  text-align: right;
}
.dropdown-link:hover {
  background: #1f9cc9;
  color: #fff;
}
@media (min-width: 769px) {
  .pages-btn {
    display: none !important;
  }
}