/* ROYAL PHOTOGRAPHY - Premium Photo Studio Stylesheet */
:root {
    --primary-color: #D1AC5F;
    --secondary-color: #0E2729;
    --accent-color: #D1AC5F;
    --light-color: #fff;
    --dark-color: #0E2729;
    --about-green: #1ecb7a;
    --about-green-dark: #0e7c4a;
    --about-glass: rgba(255,255,255,0.85);
    --about-glass-dark: rgba(14,39,41,0.85);
    --about-gold: #D1AC5F;
}

/* Base Styles */
body {
    font-family: Poppins, sans-serif;
    color: var(--dark-color);
    background: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

/* NAVBAR */
.navbar {
  background-color: rgba(14, 39, 41, 0.97);
  padding: 10px 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  width: 100%;
  z-index: 999;
}

.navbar.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Brand */
.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color) !important;
  white-space: nowrap;
}

/* Navigation Links */
.nav-link {
  font-weight: 500;
  margin: 0 6px;
  color: var(--light-color) !important;
  font-size: 1rem;
  padding: 6px 8px;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hamburger */
.custom-toggler {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.custom-hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
}

.custom-hamburger-line {
  background: var(--primary-color);
  height: 4px;
  width: 28px;
  border-radius: 2px;
  margin: 4px 0;
}

/* Responsive */
@media (max-width: 991.98px) {
  .navbar-nav {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .nav-link {
    margin: 10px 0;
  }

  .navbar-brand span {
    font-size: 16px;
  }
}
  
/* Buttons */
.btn-royal {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 0;
    border: 2px solid var(--primary-color);
    transition: 0.3s;
}

.btn-royal:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-royal-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 0;
    transition: 0.3s;
}

.btn-royal-outline:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    min-height: 100vh;
    margin-top: 0;
    padding: 0;
}

.hero-content-modern {
    flex: 1 1 350px;
    background: #102724;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 7vw 6vw 7vw 8vw;
    min-width: 0;
    z-index: 2;
    border-radius: 0 0 3rem;
    box-shadow: rgba(14, 39, 41, 0.13) 0 8px 32px;
}

.hero-content-modern h1 {
    font-size: 2.7rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-family: "Playfair Display", serif;
    font-weight: 900;
    letter-spacing: 0.01em;
}

.hero-content-modern p {
    font-size: 1.18rem;
    margin-bottom: 2.2rem;
    color: #fff;
    max-width: 500px;
}

.hero-video-modern {
    flex: 1 1 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fffbe6 60%, #f7f7f7 100%);
    border-radius: 0 0 0 3rem;
    overflow: hidden;
    min-width: 0;
    position: relative;
}

.hero-video-modern video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 3rem;
    min-height: 350px;
    min-width: 220px;
    box-shadow: rgba(14, 39, 41, 0.13) 0 8px 32px;
}

/* Section Titles */
.section-title {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Sections */
.about-section, .services-section, .portfolio-section, 
.pricing-section, .testimonial-section, .contact-section,
.gear-section, .branches-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: var(--light-color);
}

/* About Section */
.about-img {
    position: relative;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0 20px 50px;
}

.about-img img {
    transition: transform 0.5s;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-feature-icon {
    background: #fff;
    color: var(--about-green-dark) !important;
    border: 3px solid var(--about-green-dark);
    box-shadow: 0 4px 24px rgba(14,124,74,0.1), 0 1.5px 8px rgba(14,124,74,0.1);
    width: 60px;
    height: 60px;
    font-size: 2rem;
    border-radius: 18px 50% 50% 18px / 50% 18px 18px 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    margin-bottom: 0.2rem;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    position: relative;
    z-index: 2;
}

.about-feature-icon:after {
    content: '';
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 22px;
    height: 22px;
    background: rgba(14,124,74,0.1);
    border-radius: 50%;
    z-index: 1;
    filter: blur(2px);
}

.about-feature-icon:hover {
    transform: scale(1.13) rotate(-6deg);
    background: linear-gradient(135deg, var(--about-green) 60%, var(--about-green-dark) 100%);
    box-shadow: 0 8px 32px rgba(14,124,74,0.18), 0 2px 12px rgba(14,124,74,0.13);
    color: #fff !important;
}

/* Services Section */
.service-card {
    background: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0 10px 30px;
    transition: 0.3s;
    height: 100%;
    border-top: 3px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.1) 0 15px 40px;
}

.service-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Portfolio Section */
.portfolio-filter {
    margin-bottom: 40px;
}

.filter-btn {
    background: none;
    border: none;
    color: var(--dark-color);
    font-weight: 600;
    margin: 0 10px;
    padding: 5px 15px;
    position: relative;
    cursor: pointer;
}

.filter-btn.active {
    color: var(--primary-color);
}

.filter-btn.active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 5px 15px;
}

.portfolio-img {
    transition: 0.5s;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(209, 172, 95, 0.92);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(120deg, #fff 60%, #f7f7f7 100%);
}

.custom-message {
    background: #fffbe6;
    border-left: 6px solid var(--primary-color);
    border-radius: 8px;
    padding: 32px 28px;
    margin: 0 auto 40px;
    max-width: 700px;
    font-size: 1.25rem;
    color: var(--secondary-color);
    box-shadow: rgba(44, 62, 80, 0.07) 0 4px 24px;
    text-align: center;
    font-family: Poppins, sans-serif;
}

/* Contact Section */
.contact-info-card {
    background: linear-gradient(135deg, #fffbe6 70%, #ffe7b2 100%);
    padding: 22px 16px;
    border-radius: 1.2rem;
    box-shadow: rgba(209, 172, 95, 0.08) 0 4px 18px;
    margin-bottom: 0;
    height: 100%;
    border-top: 3px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    transition: box-shadow 0.2s, transform 0.2s;
}

.contact-info-card .contact-icon {
    font-size: 2.1rem;
    margin-bottom: 0.7rem;
    background: #fffbe6;
    border-radius: 50%;
    padding: 0.5rem 0.8rem;
    box-shadow: rgba(209, 172, 95, 0.133) 0 2px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-card .contact-icon.email {
    color: var(--primary-color);
}

.contact-info-card .contact-icon.phone {
    color: var(--secondary-color);
}

.contact-info-card .contact-icon.whatsapp {
    color: #25d366;
}

.contact-info-card h5 {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.contact-info-card a {
    color: var(--secondary-color);
    font-size: 0.98rem;
    word-break: break-all;
    transition: color 0.2s;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    color: var(--light-color);
    padding: 80px 0 30px;
    position: relative;
    z-index: 2;
    background: var(--secondary-color);
}

.footer-logo {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-links h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h5::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

/* Gear Section */
.gear-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 3rem 2.5rem;
    align-items: stretch;
    margin-top: 3rem;
}

.gear-category {
    background: var(--secondary-color);
    color: var(--light-color);
    border-radius: 2.5rem 0.5rem;
    box-shadow: rgba(14, 39, 41, 0.13) 0 8px 32px;
    min-width: 270px;
    max-width: 340px;
    flex: 1 1 270px;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gear-category:hover {
    transform: translateY(-10px) scale(1.04) rotate(-1deg);
    box-shadow: rgba(209, 172, 95, 0.18) 0 18px 40px;
}

.gear-category .gear-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    background: rgba(209, 172, 95, 0.09);
    border-radius: 50%;
    padding: 0.7rem 1.1rem;
    display: inline-block;
    box-shadow: rgba(209, 172, 95, 0.08) 0 2px 12px;
}

.gear-category h4 {
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    color: var(--primary-color);
    letter-spacing: 0.01em;
}

.gear-category .gear-label {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 0 0 0 1.5rem;
    letter-spacing: 0.04em;
    box-shadow: rgba(209, 172, 95, 0.13) 0 2px 8px;
}

.gear-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gear-list-modern li {
    padding-left: 40px !important;
    position: relative !important;
    font-size: 1.08rem;
    color: var(--light-color);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 1.2rem;
    padding: 0.55rem 1.1rem 0.55rem 2.2rem;
    margin-bottom: 0.7rem;
    position: relative;
    transition: background 0.2s;
    font-weight: 500;
    display: block;
    word-break: break-word;
    overflow-wrap: break-word;
}

.gear-list-modern li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}

/* Equipment Section */
.equipment-card.modern-card {
    background: linear-gradient(120deg, #fffbe6 60%, #f7f7f7 100%);
    color: var(--secondary-color);
    border-radius: 2.5rem 0.5rem;
    box-shadow: 0 8px 32px rgba(209,172,95,0.13), 0 1.5px 8px rgba(30,203,122,0.1);
    border: 2.5px solid var(--primary-color);
    padding: 2.2rem 1.2rem 1.7rem 1.2rem;
    min-width: 220px;
    max-width: 340px;
    flex: 1 1 220px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    margin: 0.7rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.equipment-card.modern-card:hover {
    transform: translateY(-8px) scale(1.03) rotate(-1deg);
    box-shadow: 0 16px 48px rgba(209,172,95,0.18), 0 2px 12px rgba(14,39,41,0.13);
    background: linear-gradient(120deg, #fffbe6 80%, #d1ac5f18 100%);
}

.equipment-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.1rem;
    background: rgba(209, 172, 95, 0.09);
    border-radius: 50%;
    padding: 0.7rem 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(209, 172, 95, 0.08);
}

.equipment-card.modern-card h5 {
    font-family: "Playfair Display", serif;
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: var(--secondary-color);
    letter-spacing: 0.01em;
    text-align: center;
}

/* Branches Section */
.branches-landmarks {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 4vw;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.branch-landmark {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 220px;
    max-width: 320px;
    margin-bottom: 1.5rem;
}

.landmark-pin {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.1rem;
    position: relative;
}

.landmark-crown {
    font-size: 2.2rem;
    color: var(--secondary-color);
    background: var(--primary-color);
    border-radius: 50%;
    padding: 0.5rem 0.9rem;
    box-shadow: rgba(209, 172, 95, 0.13) 0 2px 8px;
    margin-bottom: 0.2rem;
    z-index: 2;
}

.landmark-dot {
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
    margin-top: -6px;
    box-shadow: 0 0 0 4px var(--primary-color), 0 2px 8px rgba(14,39,41,0.13);
    z-index: 1;
}

.landmark-info {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 1.5rem 1.5rem 1.5rem 0.5rem;
    box-shadow: rgba(14, 39, 41, 0.13) 0 8px 32px;
    padding: 1.2rem 2rem 1.1rem;
    min-width: 200px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.landmark-main {
    font-size: 1.25rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
    letter-spacing: 0.01em;
}

.landmark-dominant {
    font-size: 2rem;
    color: var(--secondary-color);
    font-family: "Playfair Display", serif;
    font-weight: 900;
    letter-spacing: 0.03em;
    margin-bottom: 0.2rem;
    text-shadow: rgba(209, 172, 95, 0.08) 0 2px 12px;
}

.landmark-place {
    font-size: 1.08rem;
    color: var(--secondary-color);
    background: rgba(14, 39, 41, 0.08);
    border-radius: 1.2rem;
    padding: 0.55rem 1.1rem 0.55rem 2.2rem;
    position: relative;
    font-weight: 500;
    display: inline-block;
}

.landmark-place i {
    color: var(--secondary-color);
    margin-right: 0.7rem;
    font-size: 1.1rem;
}

/* Wedding Packages */
.wedding-packages-modern {
    background: linear-gradient(120deg, #fff 60%, #f7f7f7 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.package-card-glass {
    background: linear-gradient(120deg, rgba(255,255,255,0.95) 70%, rgba(209,172,95,0.08) 100%);
    border-radius: 2.5rem 0.7rem;
    box-shadow: 0 8px 32px rgba(209,172,95,0.13), 0 1.5px 8px rgba(30,203,122,0.1);
    border: 2.5px solid var(--about-gold);
    backdrop-filter: blur(6px);
    position: relative;
    overflow: hidden;
    z-index: 2;
    padding: 2.5rem 2rem 2rem;
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 520px;
}

.package-card-glass.gold {
    border-color: var(--primary-color);
}

.package-card-glass.premium {
    border-color: var(--secondary-color);
}

.package-card-glass:hover {
    box-shadow: 0 16px 48px rgba(209,172,95,0.18), 0 2px 12px rgba(30,203,122,0.13);
    transform: translateY(-8px) scale(1.03);
}

.package-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 1.5rem 50% 50% 1.5rem / 50% 1.5rem 1.5rem 50%;
    background: var(--about-gold);
    color: var(--secondary-color);
    font-size: 2.1rem;
    box-shadow: 0 4px 24px rgba(209,172,95,0.1);
    margin-bottom: 0.5rem;
}

.package-card-glass.gold .package-icon {
    background: var(--primary-color);
}

.package-card-glass.premium .package-icon {
    background: var(--primary-color);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.package-features li {
    font-size: 1.08rem;
    color: var(--secondary-color);
    background: rgba(209, 172, 95, 0.06);
    border-radius: 1.2rem;
    padding: 0.55rem 1.1rem 0.55rem 2.2rem;
    margin-bottom: 0.7rem;
    position: relative;
    font-weight: 500;
    display: flex;
    align-items: center;
    word-break: break-word;
    transition: background 0.2s;
}

.package-features li i {
    color: var(--about-gold);
    margin-right: 0.7rem;
    font-size: 1.1rem;
}

.package-card-glass.gold .package-features li i {
    color: var(--primary-color);
}

.package-card-glass.premium .package-features li i {
    color: var(--secondary-color);
}

/* Combo Offer Card Styles */
.combo-offer-card {
    background: linear-gradient(120deg, #fffbe6 80%, var(--primary-color) 100%);
    border: 2.5px solid var(--primary-color);
    border-radius: 2.5rem 0.7rem;
    box-shadow: 0 8px 32px rgba(209,172,95,0.13), 0 1.5px 8px rgba(30,203,122,0.1);
    padding: 2.5rem 2rem 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    transition: box-shadow 0.25s, transform 0.25s;
}
.combo-offer-card:hover {
    box-shadow: 0 16px 48px rgba(209,172,95,0.18), 0 2px 12px rgba(30,203,122,0.13);
    transform: translateY(-8px) scale(1.03);
}
.combo-offer-card .combo-icon {
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 2.1rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.7rem auto;
    box-shadow: 0 4px 24px rgba(209,172,95,0.1);
}
.combo-offer-card .combo-desc {
    font-size: 1.15rem;
    color: var(--secondary-color);
    font-weight: 600;
}
.combo-offer-card .package-features li {
    background: rgba(209, 172, 95, 0.09);
    color: var(--secondary-color);
    border-radius: 1.2rem;
    padding: 0.55rem 1.1rem 0.55rem 2.2rem;
    font-size: 1.08rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 180px;
    justify-content: flex-start;
    box-shadow: 0 2px 8px rgba(209,172,95,0.08);
}
.combo-offer-card .combo-note {
    color: var(--secondary-color);
    font-size: 1.05rem;
    margin-top: 0.7rem;
}

@media (max-width: 767.98px) {
    .combo-offer-card {
        padding: 1.2rem 0.7rem;
        border-radius: 1.5rem 0.5rem;
    }
    .combo-offer-card .combo-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
    .combo-offer-card .package-features li {
        font-size: 0.97rem;
        padding: 0.45rem 0.7rem 0.45rem 1.5rem;
        min-width: 120px;
    }
}

/* Floating Buttons */
.floating-whatsapp, .floating-top {
    position: fixed;
    z-index: 9999;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(44, 62, 80, 0.13) 0 4px 18px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-decoration: none !important;
}

.floating-whatsapp {
    font-size: 2.1rem;
    left: 4vw;
    bottom: 22px;
}

.floating-top {
    font-size: 1.4rem;
    right: 4vw;
    bottom: 22px;
}

.floating-whatsapp:hover, .floating-top:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Direct Call Section */
.direct-call-section {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 80px 0 70px 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(209,172,95,0.13), 0 1.5px 8px rgba(14,39,41,0.08);
    border-radius: 0 0 3rem 3rem;
    overflow: hidden;
}
.direct-call-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.direct-call-title {
    font-family: "Playfair Display", serif;
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 12px rgba(209,172,95,0.08);
    text-align: center;
}
.direct-call-desc {
    font-size: 1.18rem;
    color: var(--secondary-color);
    margin-bottom: 2.2rem;
    max-width: 600px;
    text-align: center;
    font-weight: 500;
}
.direct-call-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    font-weight: 700;
    font-size: 1.15rem;
    padding: 14px 38px;
    border-radius: 2rem 0.7rem;
    box-shadow: 0 4px 18px rgba(14,39,41,0.13);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}
.direct-call-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(209,172,95,0.18);
}
.direct-call-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: var(--secondary-color);
    border-radius: 50%;
    padding: 0.5rem 0.7rem;
    margin-right: 0.5rem;
    box-shadow: 0 2px 8px rgba(209,172,95,0.13);
    transition: background 0.2s, color 0.2s;
}
.direct-call-btn:hover .direct-call-icon {
    background: var(--primary-color);
    color: var(--secondary-color);
}

@media (max-width: 767.98px) {
    .direct-call-section {
        padding: 50px 0 40px 0;
        border-radius: 0 0 1.5rem 1.5rem;
    }
    .direct-call-title {
        font-size: 1.5rem;
    }
    .direct-call-desc {
        font-size: 1rem;
        max-width: 95vw;
    }
    .direct-call-btn {
        font-size: 1rem;
        padding: 10px 22px;
    }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section {
        flex-direction: column;
        min-height: unset;
    }

    .hero-content-modern, .hero-video-modern {
        border-radius: 0;
        padding: 7vw 5vw;
    }

    .hero-content-modern {
        align-items: center;
        text-align: center;
        padding-bottom: 2vw;
    }

    .hero-video-modern {
        padding-top: 0;
        min-height: 220px;
    }

    .hero-video-modern video {
        border-radius: 0 0 1.5rem 1.5rem;
        min-height: 180px;
    }

    .gear-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.2rem;
    }

    .about-section, .services-section, .portfolio-section, 
    .pricing-section, .testimonial-section, .contact-section,
    .gear-section, .branches-section, .wedding-packages-modern {
        padding: 60px 0;
    }

    .navbar {
        flex-wrap: wrap;
        min-width: unset;
    }
    .nav-link {
        margin: 0 8px;
        font-size: 1.05rem;
        padding: 8px 10px;
    }

    /* Contact Info Cards: Stack vertically on mobile/tablet */
    .contact-info-card {
        flex: 1 1 100%;
        width: 100%;
        margin-bottom: 1.2rem;
        min-width: 0;
    }
    .contact-section .d-flex.flex-lg-column.flex-row.gap-4.h-100 {
        flex-direction: column !important;
        gap: 0.5rem !important;
        align-items: stretch !important;
    }
    /* Fix badge position for custom service on mobile */
    .contact-form .badge.bg-success.position-absolute.top-0.end-0.mt-3.me-3 {
        position: static !important;
        display: block;
        margin: 0 0 1rem 0 !important;
        top: unset;
        right: unset;
    }
}

@media (max-width: 767.98px) {
    .hero-content-modern h1 {
        font-size: 2rem;
    }

    .hero-content-modern p {
        font-size: 1rem;
    }

    .hero-video-modern video {
        min-height: 120px;
    }

    .gear-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem 0;
    }

    .gear-category {
        min-width: unset;
        max-width: 100%;
        border-radius: 1.5rem 0.5rem;
        padding: 1.2rem 0.8rem;
    }

    .branches-landmarks {
        flex-direction: column;
        gap: 1.5rem 0;
        align-items: center;
    }

    .branch-landmark {
        min-width: unset;
        max-width: 100%;
    }

    .package-card-glass {
        min-height: 0;
        padding: 1.5rem 1rem;
        border-radius: 1.5rem 0.5rem;
    }

    .package-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .floating-whatsapp, .floating-top {
        width: 46px;
        height: 46px;
        font-size: 1.5rem;
    }

    .floating-whatsapp {
        left: 2vw;
        bottom: 12px;
    }

    .floating-top {
        right: 2vw;
        bottom: 12px;
    }
}

@media (max-width: 575.98px) {
    .gear-category {
        padding: 1rem 0.5rem;
    }

    .gear-list-modern li {
        font-size: 0.97rem;
        padding: 0.45rem 0.7rem 0.45rem 1.5rem;
    }

    .package-card-glass {
        padding: 1.2rem 0.7rem;
        border-radius: 1.5rem 0.5rem;
    }

    .package-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        border-radius: 10px 50% 50% 10px / 50% 10px 10px 50%;
    }

    .package-features li {
        font-size: 0.97rem;
        padding: 0.45rem 0.7rem 0.45rem 1.5rem;
    }
}

/* Royal Modern Call Button */
.btn-call-royal {
    background: var(--primary-color);
    color: var(--secondary-color) !important;
    border: 2px solid var(--primary-color);
    font-weight: 700;
    font-size: 1.08rem;
    padding: 10px 26px;
    border-radius: 2rem 0.7rem;
    box-shadow: 0 4px 18px rgba(209,172,95,0.13);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}
.btn-call-royal i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    color: var(--secondary-color);
    transition: color 0.2s;
}
.btn-call-royal:hover, .btn-call-royal:focus {
    background: var(--secondary-color);
    color: var(--primary-color) !important;
    border-color: var(--secondary-color);
    box-shadow: 0 8px 32px rgba(209,172,95,0.18);
}
.btn-call-royal:hover i, .btn-call-royal:focus i {
    color: var(--primary-color);
}
@media (max-width: 767.98px) {
    .btn-call-royal {
        font-size: 1rem;
        padding: 8px 16px;
    }
}