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

:root {
    --primary: #637554;
    --primary-light: #8a9d7a;
    --primary-lighter: #b0c0a0;
    --primary-lightest: #d8e3d0;
    --primary-dark: #4d5a42;
    --primary-darker: #384030;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --text-dark: #384030;
    --text-light: #5a6b4e;
    --shadow-sm: 0 2px 8px rgba(99, 117, 84, 0.08);
    --shadow-md: 0 8px 24px rgba(99, 117, 84, 0.12);
    --shadow-lg: 0 16px 48px rgba(99, 117, 84, 0.16);
    --shadow-xl: 0 24px 64px rgba(99, 117, 84, 0.2);
    --gradient-primary: linear-gradient(135deg, #637554 0%, #4d5a42 100%);
    --gradient-soft: linear-gradient(135deg, #f8faf9 0%, #d8e3d0 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

h1,
h2,
h3,
h4 {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1,
.hero-title,
.section-title {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
}

.logo-text {
    font-family: 'Great Vibes', cursive;
}

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

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

@media (max-width: 768px) {
    .about .container,
    .contact .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .about .container,
    .contact .container {
        padding: 0 16px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    padding: 0;
    height: 65px;
    min-height: 65px;
    border-bottom: 1px solid rgba(99, 117, 84, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(99, 117, 84, 0.08);
    height: 55px;
    min-height: 55px;
    background: var(--white);
}

.navbar.scrolled .logo-image {
    height: 55px;
}

@media (max-width: 768px) {
    .navbar.scrolled .logo-image {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .navbar.scrolled .logo-image {
        height: 40px;
    }
}

.nav-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    height: 100%;
    width: 100%;
 background-color: #d9e3d1;
 border:none;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links-left {
    margin-right: 30px;
}

.nav-links-right {
    margin-left: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 249, 0.98) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: -4px 0 40px rgba(99, 117, 84, 0.15);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 117, 84, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 117, 84, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.mobile-menu-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.mobile-menu-header {
    padding: 30px 24px;
    border-bottom: 2px solid rgba(99, 117, 84, 0.1);
    background: linear-gradient(135deg, rgba(99, 117, 84, 0.05) 0%, transparent 100%);
    margin-bottom: 20px;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    padding: 12px 12px;
}

.mobile-menu-logo:hover {
    opacity: 0.8;
}

.mobile-menu-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.mobile-menu-title {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 1px solid rgba(99, 117, 84, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: transparent;
    letter-spacing: 0.3px;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: linear-gradient(90deg, rgba(99, 117, 84, 0.08) 0%, rgba(99, 117, 84, 0.03) 100%);
    color: var(--primary);
    padding-left: 32px;
    transform: translateX(4px);
}

.mobile-nav-link:hover::before,
.mobile-nav-link:active::before {
    transform: scaleY(1);
}

.mobile-dropdown {
    border-bottom: 1px solid rgba(99, 117, 84, 0.08);
    background: transparent;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.mobile-dropdown-toggle::after {
    content: '';
    position: absolute;
    right: 24px;
    width: 24px;
    height: 24px;
    background: rgba(99, 117, 84, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle::after {
    background: var(--primary);
    transform: rotate(180deg);
}

.mobile-arrow {
    font-size: 14px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary);
    font-weight: 600;
}

.mobile-dropdown.active .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(180deg, rgba(99, 117, 84, 0.04) 0%, rgba(99, 117, 84, 0.01) 100%);
    border-left: 3px solid transparent;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 600px;
    border-left-color: var(--primary);
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    padding: 16px 24px 16px 48px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(99, 117, 84, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mobile-dropdown-item::before {
    content: '•';
    position: absolute;
    left: 32px;
    color: var(--primary-light);
    font-size: 20px;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.mobile-dropdown-item:hover,
.mobile-dropdown-item:active {
    background: linear-gradient(90deg, rgba(99, 117, 84, 0.1) 0%, rgba(99, 117, 84, 0.05) 100%);
    color: var(--primary);
    padding-left: 56px;
    transform: translateX(4px);
}

.mobile-dropdown-item:hover::before,
.mobile-dropdown-item:active::before {
    opacity: 1;
    color: var(--primary);
    transform: scale(1.2);
}

.mobile-language-selector {
    margin-top: 30px;
    padding: 24px;
    border-top: 2px solid rgba(99, 117, 84, 0.1);
    background: linear-gradient(135deg, rgba(99, 117, 84, 0.03) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-language-selector-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 8px;
    padding: 0 4px;
}

.mobile-language-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mobile-language-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-language-item:hover,
.mobile-language-item.active {
    background: linear-gradient(135deg, rgba(99, 117, 84, 0.1) 0%, rgba(99, 117, 84, 0.05) 100%);
    color: var(--primary);
    border-color: rgba(99, 117, 84, 0.2);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(99, 117, 84, 0.15);
}

.mobile-language-item:hover::before,
.mobile-language-item.active::before {
    transform: scaleY(1);
}

.mobile-language-item .language-flag-icon {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}


.logo {
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
    padding: 12px 12px;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-image {
    height: 65px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 0;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(99, 117, 84, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
    border: 1px solid rgba(99, 117, 84, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 24px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: rgba(99, 117, 84, 0.05);
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 28px;
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
}

.language-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-flag-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    font-size: 20px;
    line-height: 1;
}

.language-flag-icon iconify-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.language-code {
    font-weight: 600;
    font-size: 14px;
}

.language-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 160px;
    box-shadow: 0 8px 32px rgba(99, 117, 84, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
    border: 1px solid rgba(99, 117, 84, 0.1);
    z-index: 1001;
}

.language-dropdown:hover .language-menu,
.language-dropdown.active .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.language-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.language-menu .dropdown-item:hover {
    background: rgba(99, 117, 84, 0.05);
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 24px;
}

.language-menu .language-flag-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    font-size: 24px;
}

.language-menu .language-flag-icon iconify-icon {
    width: 24px;
    height: 24px;
}

/* RTL Support */
body.rtl {
    direction: rtl;
}

body.rtl .nav-links-left {
    margin-left: 30px;
    margin-right: 0;
}

body.rtl .nav-links-right {
    margin-right: 30px;
    margin-left: 0;
}

body.rtl .dropdown-menu {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

body.rtl .dropdown-item {
    text-align: right;
    border-left: none;
    border-right: 3px solid transparent;
    padding-right: 24px;
    padding-left: 24px;
}

body.rtl .dropdown-item:hover {
    border-right-color: var(--primary);
    padding-right: 28px;
}

body.rtl .nav-links-left {
    margin-left: 30px;
    margin-right: 0;
}

body.rtl .nav-links-right {
    margin-right: 30px;
    margin-left: 0;
}

body.rtl .about-content {
    direction: rtl;
}

body.rtl .contact-wrapper {
    direction: rtl;
}

body.rtl .info-item {
    flex-direction: row-reverse;
}

body.rtl .info-content {
    text-align: right;
}

body.rtl .form-group label {
    text-align: right;
}

body.rtl .form-group input,
body.rtl .form-group textarea {
    text-align: right;
    direction: rtl;
}

body.rtl .footer-content {
    direction: rtl;
}

body.rtl .footer-links {
    text-align: right;
}

body.rtl .section-header {
    direction: rtl;
}

body.rtl .section-description {
    text-align: right;
}

body.rtl .mobile-menu {
    left: auto;
    right: 0;
    transform: translateX(100%);
    box-shadow: 4px 0 40px rgba(99, 117, 84, 0.15);
}

body.rtl .mobile-menu.active {
    transform: translateX(0);
}

body.rtl .mobile-menu-toggle {
    left: auto;
    right: 20px;
}

body.rtl .mobile-nav-link::before {
    left: auto;
    right: 0;
}

body.rtl .mobile-nav-link:hover,
body.rtl .mobile-nav-link:active {
    padding-left: 24px;
    padding-right: 32px;
    transform: translateX(-4px);
}

body.rtl .mobile-dropdown-item {
    padding: 16px 48px 16px 24px;
}

body.rtl .mobile-dropdown-item::before {
    left: auto;
    right: 32px;
}

body.rtl .mobile-dropdown-item:hover,
body.rtl .mobile-dropdown-item:active {
    padding-left: 24px;
    padding-right: 56px;
    transform: translateX(-4px);
}

body.rtl .mobile-dropdown.active .mobile-dropdown-menu {
    border-left: none;
    border-right: 3px solid var(--primary);
}

body.rtl .mobile-dropdown-toggle {
    flex-direction: row-reverse;
}

body.rtl .mobile-language-item::before {
    left: auto;
    right: 0;
}

body.rtl .mobile-language-item:hover,
body.rtl .mobile-language-item.active {
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    body.rtl .mobile-menu-toggle {
        right: 15px;
    }
}

@media (max-width: 480px) {
    body.rtl .mobile-menu-toggle {
        right: 12px;
    }
}


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

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(99, 117, 84, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 117, 84, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 117, 84, 0.4) 0%, rgba(99, 117, 84, 0.2) 50%, rgba(255, 255, 255, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(56, 64, 48, 0.3) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 16px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    color: var(--primary-darker);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 48px;
    border: 1px solid rgba(99, 117, 84, 0.15);
    box-shadow: 0 4px 20px rgba(99, 117, 84, 0.1);
    animation: fadeInUp 0.8s ease;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '✨';
    font-size: 14px;
}

.hero-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(99, 117, 84, 0.15);
    border-color: var(--primary);
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
    letter-spacing: 0.02em;
    font-weight: 600;
    font-family: 'Dancing Script', cursive;
    color: var(--white);
    text-align: center;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: clamp(20px, 3vw, 28px);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
    font-weight: 400;
    letter-spacing: -0.01em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 8px 24px rgba(99, 117, 84, 0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(99, 117, 84, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(99, 117, 84, 0.1);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99, 117, 84, 0.25);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 12px;
    z-index: 3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--primary);
    position: relative;
    animation: scrollDown 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, #f8faf9 100%);
    position: relative;
}

.features-section .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-lightest), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0;
    width: 100%;
}

.feature-card {
    padding: 0;
    background: var(--white);
    border-radius: 0;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid rgba(99, 117, 84, 0.08);
    text-decoration: none;
    display: block;
    color: inherit;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 117, 84, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--primary);
}

.feature-card h3 {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    padding: 0 32px;
    margin: 0;
    z-index: 3;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: 'Dancing Script', cursive;
    transition: all 0.4s ease;
}

.feature-card p {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 0 32px;
    margin: 0;
    z-index: 3;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: all 0.4s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feature-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--gray-200);
    z-index: 0;
}

.feature-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(56, 64, 48, 0.85) 0%, rgba(56, 64, 48, 0.5) 50%, transparent 100%);
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.feature-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    filter: brightness(0.95);
}

.feature-card:hover .feature-img {
    transform: scale(1.15);
    filter: brightness(1);
}

/* Simple Geometric Icons */
.icon-wedding {
    position: relative;
}

.icon-wedding::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2.5px solid var(--primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-wedding::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2.5px solid var(--primary);
    border-radius: 50%;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.feature-card:hover .icon-wedding::before,
.feature-card:hover .icon-wedding::after {
    border-color: var(--white);
}

.icon-henna {
    position: relative;
}

.icon-henna::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2.5px solid var(--primary);
    border-radius: 4px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.icon-henna::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feature-card:hover .icon-henna::before {
    border-color: var(--white);
}

.feature-card:hover .icon-henna::after {
    background: var(--white);
}

.icon-engagement {
    position: relative;
}

.icon-engagement::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2.5px solid var(--primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-engagement::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2.5px solid var(--primary);
    border-radius: 50%;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}

.feature-card:hover .icon-engagement::before,
.feature-card:hover .icon-engagement::after {
    border-color: var(--white);
}

.icon-birthday {
    position: relative;
}

.icon-birthday::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2.5px solid var(--primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-birthday::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow:
        0 12px 0 var(--primary),
        -8px 6px 0 var(--primary),
        8px 6px 0 var(--primary);
}

.feature-card:hover .icon-birthday::before {
    border-color: var(--white);
}

.feature-card:hover .icon-birthday::after {
    background: var(--white);
    box-shadow:
        0 12px 0 var(--white),
        -8px 6px 0 var(--white),
        8px 6px 0 var(--white);
}

.icon-dining {
    position: relative;
}

.icon-dining::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border: 2.5px solid var(--primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-dining::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2.5px solid var(--primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feature-card:hover .icon-dining::before,
.feature-card:hover .icon-dining::after {
    border-color: var(--white);
}

.icon-graduation {
    position: relative;
}

.icon-graduation::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 16px;
    border: 2.5px solid var(--primary);
    border-radius: 2px;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-graduation::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2.5px;
    background: var(--primary);
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.feature-card:hover .icon-graduation::before {
    border-color: var(--white);
}

.feature-card:hover .icon-graduation::after {
    background: var(--white);
}

.icon-corporate {
    position: relative;
}

.icon-corporate::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2.5px solid var(--primary);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-corporate::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border: 2.5px solid var(--primary);
    border-radius: 2px;
    top: 8px;
    left: 8px;
}

.feature-card:hover .icon-corporate::before,
.feature-card:hover .icon-corporate::after {
    border-color: var(--white);
}

.icon-party {
    position: relative;
}

.icon-party::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2.5px solid var(--primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-party::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow:
        0 16px 0 var(--primary),
        -10px 8px 0 var(--primary),
        10px 8px 0 var(--primary),
        -6px 14px 0 var(--primary),
        6px 14px 0 var(--primary);
}

.feature-card:hover .icon-party::before {
    border-color: var(--white);
}

.feature-card:hover .icon-party::after {
    background: var(--white);
    box-shadow:
        0 16px 0 var(--white),
        -10px 8px 0 var(--white),
        10px 8px 0 var(--white),
        -6px 14px 0 var(--white),
        6px 14px 0 var(--white);
}

/* Section Header Icons */
.icon-services::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid var(--primary-darker);
    border-radius: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-services::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border: 2px solid var(--primary-darker);
    border-radius: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-about::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid var(--primary-darker);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-about::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-darker);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-gallery::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 10px;
    border: 2px solid var(--primary-darker);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-gallery::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border: 2px solid var(--primary-darker);
    border-radius: 2px;
    top: 1px;
    left: 1px;
}

.icon-contact::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 10px;
    border: 2px solid var(--primary-darker);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-contact::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 3px;
    border: 2px solid var(--primary-darker);
    border-top: none;
    border-radius: 0 0 2px 2px;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
}


/* About Section */
.about {
    padding: 140px 0;
    background: linear-gradient(180deg, #f8faf9 0%, var(--primary-lightest) 50%, #f8faf9 100%);
    position: relative;
}


.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-lighter), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
    position: relative;
    padding: 0;
}

.about-image {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(99, 117, 84, 0.2);
}

.about-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 36px;
    transition: transform 0.6s ease;
}

.about-image:hover .about-img {
    transform: scale(1.05);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    color: var(--primary-darker);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border: 1px solid rgba(99, 117, 84, 0.15);
    box-shadow: 0 4px 16px rgba(99, 117, 84, 0.1);
    position: relative;
}

.section-icon {
    width: 16px;
    height: 16px;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.section-title {
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--text-dark);
    letter-spacing: 0.02em;
    font-weight: 600;
    font-family: 'Dancing Script', cursive;
}

.about-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-top: 64px;
    padding-top: 64px;
    border-top: 1px solid rgba(99, 117, 84, 0.15);
    position: relative;
}

.about-stats::before {
    content: '✨';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(99, 117, 84, 0.1);
}

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

.stat-number {
    font-size: 64px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Gallery Section */
.gallery {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--white) 0%, #f8faf9 100%);
    position: relative;
}

.gallery .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-lightest), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    padding: 0 40px;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 0;
    padding: 0;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background: var(--gray-200);
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* Creates square aspect ratio */
}

.gallery-item:hover {
    opacity: 1;
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }
    
    .gallery-item {
        width: 100%;
        height: 0;
        padding-bottom: 100%;
    }

    .modal-prev,
    .modal-next {
        width: 48px;
        height: 48px;
    }

    .modal-prev svg,
    .modal-next svg {
        width: 20px;
        height: 20px;
    }

    .modal-prev {
        left: 15px;
    }

    .modal-next {
        right: 15px;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .modal-close svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }
    
    .gallery-item {
        width: 100%;
        height: 0;
        padding-bottom: 100%;
    }
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.15);
}


.gallery-load-more-container {
    text-align: center;
    margin-top: 48px;
    padding: 0 20px;
}

.gallery-load-more-btn {
    min-width: 200px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.gallery-load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 117, 84, 0.2);
}

/* Service Detail Page */
.service-detail {
    padding: 160px 0 100px;
    background: var(--white);
    min-height: 100vh;
}

.service-detail .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.service-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-title {
    font-size: 64px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 32px;
    font-family: 'Dancing Script', cursive;
    letter-spacing: -0.02em;
}

.service-description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.service-gallery {
    padding: 0;
    width: 100%;
}

@media (max-width: 1200px) {
    .service-title {
        font-size: 52px;
    }

    .service-description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .service-detail {
        padding: 140px 0 60px;
    }

    .service-header {
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .service-title {
        font-size: 40px;
        margin-bottom: 24px;
    }

    .service-description {
        font-size: 16px;
    }
}

@media (max-width: 1200px) {
    .service-header {
        padding: 0 30px;
    }
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.gallery-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--white);
    cursor: pointer;
    z-index: 10001;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1) rotate(90deg);
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--white);
    cursor: pointer;
    z-index: 10001;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-prev {
    left: 30px;
}

.modal-next {
    right: 30px;
}

.modal-prev svg,
.modal-next svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    stroke-width: 2.5;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.modal-counter {
    position: absolute;
    bottom: 30px;
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}


/* Instagram Section */
.instagram-section {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--white) 0%, #f8faf9 100%);
    position: relative;
}

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

.instagram-embed-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    min-height: 400px;
}

.instagram-fallback {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.instagram-placeholder {
    text-align: center;
    max-width: 600px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(99, 117, 84, 0.05) 0%, rgba(99, 117, 84, 0.02) 100%);
    border-radius: 24px;
    border: 2px solid rgba(99, 117, 84, 0.1);
}

.instagram-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(131, 58, 180, 0.3);
    animation: float 3s ease-in-out infinite;
}

.instagram-placeholder h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
}

.instagram-placeholder p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 32px;
}

.instagram-iframe {
    width: 100%;
    max-width: 100%;
}

.instagram-iframe.loaded {
    display: block !important;
}

.instagram-fallback.hidden {
    display: none;
}

#fb-root {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.instagram-embed {
    max-width: 1100px;
    width: 100%;
    height: 1200px;
    border: none;
    display: block;
}

/* Contact Section */
.contact {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--primary-lightest) 0%, #f8faf9 50%, var(--white) 100%);
    position: relative;
}


.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-lighter), transparent);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: start;
    padding: 0;
}

.contact-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 56px;
    font-weight: 400;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.info-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(99, 117, 84, 0.2);
}

.info-item:hover .info-icon {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 28px rgba(99, 117, 84, 0.3);
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-content h4 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.01em;
    font-family: 'Dancing Script', cursive;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    padding: 64px;
    border-radius: 36px;
    box-shadow: 0 20px 60px rgba(99, 117, 84, 0.15);
    border: 1.5px solid rgba(99, 117, 84, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 117, 84, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid rgba(99, 117, 84, 0.15);
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 6px rgba(99, 117, 84, 0.08), 0 4px 16px rgba(99, 117, 84, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 50%, var(--primary-darker) 100%);
    background-size: 200% 200%;
    color: var(--white);
    padding: 100px 0 50px;
    position: relative;
    animation: footerGradient 10s ease infinite;
}

@keyframes footerGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
    padding: 0 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--white);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: none;
    font-family: 'Great Vibes', cursive;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 30px 40px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--primary-light);
    font-size: 14px;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, 30px) rotate(180deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, -30px) rotate(5deg);
    }
}

@keyframes scrollDown {

    0%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0.3;
        transform: translateY(10px);
    }
}

/* Responsive */
@media (max-width: 1200px) {

    .container {
        padding: 0 30px;
    }

    .instagram-section .container {
        padding: 0 30px;
    }

    .instagram-embed {
        height: 1000px;
    }

    .section-header {
        padding: 0 30px;
    }

    .footer-content,
    .footer-bottom {
        padding-left: 30px;
        padding-right: 30px;
    }

    .hero-title {
        font-size: 64px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }
    
    .gallery-item {
        width: 100%;
        height: 0;
        padding-bottom: 100%;
    }
}

@media (max-width: 968px) {
    .nav-wrapper {
        padding: 0 20px;
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo-image {
        height: 50px;
    }

    .mobile-menu {
        display: block;
    }

    .dropdown-menu {
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-dropdown:hover .dropdown-menu {
        transform: translateX(-50%) translateY(0);
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .gallery-item {
        grid-column: 1 !important;
        grid-row: span 1 !important;
        aspect-ratio: 1;
        width: 100%;
        height: 0;
        padding-bottom: 100%;
    }

    .gallery-item.large {
        grid-column: 1 !important;
        grid-row: span 1 !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 600px) {

    .container {
        padding: 0 20px;
    }

    .instagram-section .container {
        padding: 0 20px;
    }

    .instagram-embed {
        height: 800px;
    }

    .section-header {
        padding: 0 20px;
    }

    .footer-content,
    .footer-bottom {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .logo-image {
        height: 45px;
    }

    .hero {
        padding: 100px 0 60px 0;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card h3 {
        bottom: 70px;
        padding: 0 24px;
        font-size: 22px;
    }

    .feature-card p {
        bottom: 16px;
        padding: 0 24px;
        font-size: 13px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .features-grid {
        gap: 0;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }
    
    .gallery-item {
        width: 100%;
        height: 0;
        padding-bottom: 100%;
    }

    .instagram-iframe {
        height: 800px !important;
        min-height: 800px !important;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-label {
        font-size: 11px;
    }
}

/* Instagram iframe responsive */
.instagram-iframe {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 1200px) {
    .instagram-iframe {
        height: 1000px !important;
        min-height: 1000px !important;
    }
}

@media (max-width: 968px) {
    .instagram-iframe {
        height: 900px !important;
        min-height: 900px !important;
    }

    .about-content {
        gap: 60px;
    }

    .about-img {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 45px;
        min-height: 45px;
        padding: 0;
    }

    .navbar.scrolled {
        height: 45px;
        min-height: 45px;
    }

    .nav-wrapper {
        padding: 0 15px;
    }

    .mobile-menu-toggle {
        left: 15px;
        width: 28px;
        height: 28px;
    }

    .logo-image {
        height: 45px;
    }

    .hero {
        padding: 45px 0 60px;
        min-height: 80vh;
    }

    .hero-actions {
        flex-direction: column;
        gap: 16px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 16px 32px;
        font-size: 14px;
    }

    .features-section,
    .about,
    .gallery,
    .instagram-section,
    .contact {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .section-description {
        font-size: 16px;
    }

    .instagram-iframe {
        height: 700px !important;
        min-height: 700px !important;
    }

    .instagram-placeholder {
        padding: 40px 24px;
    }

    .instagram-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 24px;
    }

    .instagram-placeholder h3 {
        font-size: 28px;
    }

    .instagram-placeholder p {
        font-size: 15px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        margin-top: 40px;
        padding-top: 40px;
    }

    .stat-number {
        font-size: 40px;
    }

    .contact-form {
        padding: 40px 24px;
    }

    .info-icon {
        width: 56px;
        height: 56px;
    }

    .info-content h4 {
        font-size: 24px;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        gap: 32px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .instagram-section .container,
    .section-header {
        padding: 0 16px;
    }

    .navbar {
        height: 40px;
        min-height: 40px;
        padding: 0;
    }

    .navbar.scrolled {
        height: 40px;
        min-height: 40px;
    }

    .nav-wrapper {
        padding: 0 12px;
    }

    .mobile-menu-toggle {
        left: 12px;
        width: 26px;
        height: 26px;
    }

    .logo-image {
        height: 40px;
    }

    .mobile-menu-content {
        padding-top: 60px;
    }

    .mobile-menu-header {
        padding: 20px 16px;
        margin-bottom: 16px;
    }

    .mobile-menu-logo img {
        height: 45px;
    }

    .mobile-menu-title {
        font-size: 12px;
    }

    .mobile-nav-link {
        padding: 16px 18px;
        font-size: 15px;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link:active {
        padding-left: 26px;
    }

    .mobile-dropdown-item {
        padding: 12px 18px 12px 40px;
        font-size: 13px;
    }

    .mobile-dropdown-item::before {
        left: 28px;
    }

    .mobile-dropdown-item:hover,
    .mobile-dropdown-item:active {
        padding-left: 48px;
    }

    .mobile-language-selector {
        padding: 16px;
        margin-top: 24px;
    }

    .mobile-language-item {
        padding: 14px 16px;
        font-size: 15px;
    }

    .mobile-language-item .language-flag-icon {
        font-size: 24px;
    }

    .hero {
        padding: 40px 0 40px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .features-section,
    .about,
    .gallery,
    .instagram-section,
    .contact {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card h3 {
        font-size: 20px;
        bottom: 60px;
        padding: 0 20px;
    }

    .feature-card p {
        font-size: 12px;
        bottom: 12px;
        padding: 0 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .section-description {
        font-size: 14px;
        margin-top: 16px;
    }

    .about-content {
        gap: 40px;
    }

    .about-img {
        height: 400px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    
    .gallery-item {
        width: 100%;
        height: 0;
        padding-bottom: 100%;
    }

    .instagram-iframe {
        height: 600px !important;
        min-height: 600px !important;
    }

    .instagram-fallback {
        padding: 40px 16px;
    }

    .instagram-placeholder {
        padding: 32px 20px;
    }

    .instagram-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .instagram-placeholder h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .instagram-placeholder p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .contact-wrapper {
        gap: 32px;
    }

    .contact-form {
        padding: 32px 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px 20px;
        font-size: 14px;
    }

    .info-item {
        gap: 16px;
    }

    .info-icon {
        width: 48px;
        height: 48px;
    }

    .info-icon svg {
        width: 20px;
        height: 20px;
    }

    .info-content h4 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .info-content p {
        font-size: 14px;
    }

    .footer {
        padding: 50px 0 24px;
    }

    .footer-content {
        gap: 24px;
    }

    .footer-logo {
        font-size: 32px;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    .footer-links a,
    .footer-contact p {
        font-size: 13px;
    }
}

/* Google Maps Section */
.maps-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.maps-section .container {
    padding: 0 40px;
}

.maps-wrapper {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(99, 117, 84, 0.1);
}

.google-map {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .maps-section {
        padding: 60px 0;
    }

    .maps-section .container {
        padding: 0 20px;
    }

    .maps-wrapper {
        margin-top: 30px;
        border-radius: 12px;
    }

    .google-map {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .maps-section {
        padding: 50px 0;
    }

    .maps-section .container {
        padding: 0 16px;
    }

    .maps-wrapper {
        margin-top: 24px;
        border-radius: 8px;
    }

    .google-map {
        height: 350px;
    }
}

/* Fixed Social Media Buttons */
.fixed-social-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.social-btn:hover::before {
    width: 300px;
    height: 300px;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.social-btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-btn:hover svg {
    transform: scale(1.1);
}

.phone-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.phone-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.instagram-btn {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
}

.instagram-btn:hover {
    background: linear-gradient(135deg, #FCAF45 0%, #FD1D1D 50%, #833AB4 100%);
}

/* Responsive: Fixed Social Buttons */
@media (max-width: 768px) {
    .fixed-social-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .social-btn {
        width: 50px;
        height: 50px;
    }

    .social-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .fixed-social-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .social-btn {
        width: 48px;
        height: 48px;
    }

    .social-btn svg {
        width: 18px;
        height: 18px;
    }

    .maps-section {
        padding: 60px 0;
    }

    .google-map {
        height: 350px;
    }
}

/* RTL Support for Fixed Buttons */
body.rtl .fixed-social-buttons {
    right: auto;
    left: 30px;
}

@media (max-width: 768px) {
    body.rtl .fixed-social-buttons {
        left: 20px;
    }
}

@media (max-width: 480px) {
    body.rtl .fixed-social-buttons {
        left: 15px;
    }
}