:root {
    --primary-color: #cb5829;
    --secondary-color: #e8a87c;
    --accent-color: #c38d9e;
    --dark-color: #333333;
    --light-bg: #f8f3e8;
    --white: #ffffff;
}

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

body {
    font-family: 'Neue Montreal', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    background-color: var(--light-bg);
    overflow-x: hidden;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('https://fonts.cdnfonts.com/css/neue-montreal') format('woff2');
    font-weight: normal;
    font-style: normal;
}

h1, h2, h3, h4 {
    font-weight: normal;
    letter-spacing: 0.5px;
}

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

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

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

section {
    padding: 120px 0;
}

.section-title {
    font-size: 3vw;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 15px;
}

/* Scroll Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Header Styles */

/* Modern Orange Button */


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    background-color: transparent;
    z-index: 1000;
    transition: background-color 0.4s ease;
}

header.scrolled {
    background-color: rgba(248, 243, 232, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
}

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

.logo {
    position: relative;
    z-index: 1001;
    height: 60px;
    width: auto;
    max-width: 180px;
    margin-right: auto;
   
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
   
}

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

nav ul li {
    margin-left: 40px;
}

nav ul li a {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--dark-color);
}

.language-switcher {
    display: flex;
    gap: 10px;
    padding-left: 90px;
}

.language-switcher a {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

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

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

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 60%;
    
}

.hero h1 {
    font-size: 5vw;
    margin-bottom: 30px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.hero p {
    font-size: 1.2vw;
    margin-bottom: 50px;
    max-width: 600px;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* About Section */
.about {
    background-color: var(--white);
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3vw;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 18px;
}

.about-image {
  flex: 1;
  height: 500px;
  background: url(../images/Gallery/about.JPG) no-repeat center center;
  background-size: contain; /* or cover */
}


.about-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* or scale-down */
}

.about-image:hover .couple-photo {
    transform: scale(1.03);
}
/* ----- Elegant Service Cards with White Titles ----- */
.services {
  background-color:var(--light-bg); /* Your brand orange (#cb5829) */
  padding: 8rem 2rem; /* Added side padding */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin-top: 20px;

}

.service-card {
  background: var(--primary-color);
  border-radius: 16px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  background: var(--primary-color);
}

/* Title Styling */
.service-card h3 {
  color: white;
  font-size: 1.8rem;
  text-align: center;
  margin: 0 auto 2rem;
  padding-bottom: 1rem;
  position: relative;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.service-card h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}


.service-card .btn {
  display: block; /* Make it a block element so margin auto works */
  margin: 1.5rem auto 0 auto; /* Top margin and auto left/right to center */
  padding: 12px 30px;
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--primary-color);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
}


/* Content Styling */
.service-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: center;
}

.service-details h4 {
  color: white;
  font-size: 1.2rem;
  text-align: center;
  margin: 2rem 0 1.5rem;
  font-weight: 400;
}

.service-details ul {
  padding: 0;
  margin: 0 auto;
  max-width: 300px;
  list-style: none;
}

.service-details ul li {
  color: rgba(255, 255, 255, 0.85);
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  position: relative;
  line-height: 1.6;
}

.service-details ul li:before {
  content: "•";
  color: white;
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .services {
    padding: 6rem 1.5rem;
  }
  
  .service-card {
    padding: 2.5rem;
  }
  
  .service-card h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .service-details ul {
    max-width: 100%;
  }
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    margin: 1.5rem auto;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.dropdown-toggle:hover {
    opacity: 0.9;
}

.dropdown-icon {
    width: 18px;
    height: 18px;
    fill: white;
    transition: transform 0.3s ease;
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    position: relative;
    z-index: 2;
}

.dropdown-content.active {
    max-height: 800px; /* Adjust based on your content */
}

.dropdown-toggle.active .dropdown-icon {
    transform: rotate(180deg);
}

/* Ensure service details maintain their styling */
.service-details {
    margin-top: 1rem;
}

/* Gallery Section */
.gallery {
    padding: 0;
    background-color: var(--white);
}

.gallery-container {
    display: flex;
    min-height: 70vh;
}

.gallery-text {
    flex: 0 0 40%;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
}

.gallery-images {
    flex: 0 0 60%;
    position: relative;
    overflow: hidden;
}

.gallery-slider {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.gallery-arrow {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-arrow:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Contact Section */
.contact {
    background-color: var(--light-bg);
    text-align: center;
}

.contact p {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-item {
    text-align: center;
}

.contact-item i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-item p {
    margin: 0;
    font-size: 16px;
}

/* Footer */
footer {
    background-color: #cb5b2b;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 28px;
    letter-spacing: 3px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-about {
    flex: 1;
    max-width: 400px;
}

.footer-about p {
    margin-bottom: 20px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--white);
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-links {
    flex: 1;
    display: flex;
    justify-content: space-around;
}

.footer-links h3 {
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: var(--secondary-color);
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        max-width: 80%;
    }
    
    .hero h1 {
        font-size: 6vw;
    }
    
    .hero p {
        font-size: 1.8vw;
    }
    
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-image {
        width: 100%;
        height: 500px;
    }
    
    .gallery-slide {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        font-size: 24px;
        z-index: 1001;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--light-bg);
        z-index: 1000;
        transition: right 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 20px 0;
    }
    
    .hero {
        height: 90vh;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding-top: 80px;
    }
    
    .hero-content img {
        max-width: 80%;
        height: auto;
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 8vw;
    }
    
    .hero p {
        font-size: 2.5vw;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .gallery-container {
        flex-direction: column;
    }
    
    .gallery-text,
    .gallery-images {
        flex: 1 1 100%;
    }
    
    .gallery-text {
        padding: 60px 40px;
    }
    
    .gallery-images {
        height: 80vh;
    }
    
    .gallery-arrow {
        width: 40px;
        height: 40px;
    }
    
    .language-switcher {
        padding-left: 0;
        justify-content: center;
        margin-top: 15px;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .about-image {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 10vw;
    }
    
    .hero p {
        font-size: 4vw;
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 12px 30px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .about-image {
        height: 300px !important;
    }
    
    .service-card {
        padding: 30px 20px !important;
        min-height: 400px !important;
    }
    
    .gallery-text {
        padding: 40px 20px;
    }
    
    .gallery-text h2 {
        font-size: 24px !important;
    }
    
    .gallery-images {
        height: 70vh;
        min-height: 400px;
    }
    
    .gallery-arrow {
        width: 35px;
        height: 35px;
    }
    
    footer .logo img {
        height: 80px !important;
        margin-top: 0 !important;
    }
    
    .about-text h2 {
        font-size: 24px !important;
    }
    
    .gallery-nav {
        opacity: 1 !important;
    }
    
    .gallery-arrow {
        background-color: rgba(255, 255, 255, 0.9);
    }
}

/* FAQ Section Styles */
.faq-section {
    background-color: var(--white);
    padding: 120px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(203, 88, 41, 0.2);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    content: '-';
    transform: rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--dark-color);
    line-height: 1.6;
    padding-left: 20px;
}

.faq-answer.active {
    max-height: 300px;
    padding-bottom: 20px;
}

.language-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(203, 88, 41, 0.2);
}

.language-tab {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-color);
    position: relative;
}

.language-tab.active {
    color: var(--primary-color);
}

.language-tab.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.faq-content {
    display: none;
}

.faq-content.active {
    display: block;
}