/* ============================================
   PROM G FASHION - LIGHT & GOLD LUXURY THEME
   ============================================ */


/* ---------- CSS Variables ---------- */

:root {
    --bg-primary: #faf8f5;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f3f0eb;
    --bg-card: rgba(255, 255, 255, 0.85);
    --gold: #B8960C;
    --gold-light: #D4AF37;
    --gold-dark: #96790A;
    --gold-glow: rgba(184, 150, 12, 0.25);
    --gold-subtle: rgba(184, 150, 12, 0.06);
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-muted: #999999;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(184, 150, 12, 0.2);
    --glass-hover: rgba(184, 150, 12, 0.08);
    --shadow-gold: 0 8px 40px rgba(184, 150, 12, 0.1);
    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ---------- Dark Theme Variables ---------- */

[data-theme="dark"] {
    --bg-primary: #0d0d0d;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --bg-card: rgba(20, 20, 20, 0.85);
    --text-primary: #e8e4df;
    --text-secondary: #a8a8a8;
    --text-muted: #666666;
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(184, 150, 12, 0.25);
    --glass-hover: rgba(184, 150, 12, 0.12);
    --shadow-gold: 0 8px 40px rgba(184, 150, 12, 0.15);
    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.3);
}


/* ---------- Theme Toggle ---------- */

.theme-toggle {
    background: none;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gold);
    transition: all 0.3s ease;
    padding: 0;
    margin-left: 8px;
}

.theme-toggle:hover {
    border-color: var(--gold);
    background: var(--gold-subtle);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.theme-toggle:hover svg {
    transform: rotate(15deg);
}

.theme-toggle .icon-sun {
    display: none;
}

.theme-toggle .icon-moon {
    display: block;
}

[data-theme="dark"] .theme-toggle .icon-sun {
    display: block;
}

[data-theme="dark"] .theme-toggle .icon-moon {
    display: none;
}


/* ---------- Dark Theme Overrides ---------- */

[data-theme="dark"] #mainNav.scrolled {
    background: rgba(13, 13, 13, 0.92);
    border-bottom: 1px solid rgba(184, 150, 12, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .styles-overlay {
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.92) 0%, rgba(13, 13, 13, 0.88) 50%, rgba(13, 13, 13, 0.95) 100%);
}

[data-theme="dark"] .about-overlay {
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.90) 50%, rgba(13, 13, 13, 0.96) 100%);
}

[data-theme="dark"] .hero-overlay {
    background: radial-gradient(ellipse at 50% 0%, rgba(184, 150, 12, 0.08) 0%, transparent 60%), radial-gradient(ellipse at 80% 80%, rgba(184, 150, 12, 0.05) 0%, transparent 50%), linear-gradient(180deg, transparent 0%, rgba(13, 13, 13, 0.3) 100%);
}

[data-theme="dark"] .lightbox-caption {
    background: rgba(20, 20, 20, 0.95);
    border-color: rgba(184, 150, 12, 0.25);
}

[data-theme="dark"] .contact-map iframe {
    filter: grayscale(0.6) brightness(0.5) contrast(1.1) invert(0.92) hue-rotate(180deg);
}

[data-theme="dark"] .contact-map:hover iframe {
    filter: grayscale(0.3) brightness(0.6) contrast(1.05) invert(0.92) hue-rotate(180deg);
}

@media (max-width: 1024px) {
    [data-theme="dark"] .nav-links {
        background: rgba(13, 13, 13, 0.97);
        border-left: 1px solid rgba(184, 150, 12, 0.15);
    }
    [data-theme="dark"] .nav-link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}


/* ---------- Reset & Base ---------- */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-light);
}

::selection {
    background: var(--gold);
    color: var(--white);
}


/* ---------- Custom Scrollbar ---------- */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}


/* ---------- Preloader ---------- */

#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.needle-svg {
    animation: needleSew 1.4s ease-in-out infinite;
}

@keyframes needleSew {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(-5deg);
    }
    50% {
        transform: translateY(10px) rotate(3deg);
    }
    75% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

.thread-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: threadDraw 1.4s ease-in-out infinite;
}

@keyframes threadDraw {
    0% {
        height: 0;
        opacity: 0;
    }
    50% {
        height: 60px;
        opacity: 1;
    }
    100% {
        height: 0;
        opacity: 0;
    }
}

.preloader-text {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 6px;
    text-transform: uppercase;
    animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}


/* ---------- Canvas Backgrounds ---------- */

#skyCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}


/* ---------- Custom Cursor ---------- */

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10002;
    transition: transform 0.05s ease;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

.cursor-ring.hover {
    width: 56px;
    height: 56px;
    border-color: var(--gold-light);
    opacity: 1;
}


/* ---------- Navigation ---------- */

#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}

#mainNav.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 150, 12, 0.12);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 48px;
    width: auto;
    filter: brightness(1.1);
    transition: var(--transition);
}

.nav-logo:hover img {
    filter: brightness(1.3) drop-shadow(0 0 8px var(--gold-glow));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 4px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary) !important;
    font-weight: 700;
    border-radius: 6px;
    padding: 10px 20px;
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.25);
    border: none;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    color: var(--bg-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.4);
}


/* Mobile Toggle */

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ---------- Layout ---------- */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    position: relative;
    z-index: 2;
    padding: 120px 0;
}


/* ---------- Section Typography ---------- */

.section-label {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
}

.section-label.light {
    color: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--text-primary);
}

.gold-text {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-divider {
    margin-bottom: 32px;
}

.gold-divider.centered {
    text-align: center;
}

.gold-divider svg {
    opacity: 0.6;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}


/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 4px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold-subtle);
    transform: translateY(-3px);
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.15);
}

.btn-gold-sm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 28px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 4px;
    transition: all 0.4s ease;
    cursor: none;
    margin-top: 20px;
}

.btn-gold-sm:hover {
    background: var(--gold);
    color: var(--bg-primary);
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.3);
}


/* ---------- Hero Section ---------- */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(184, 150, 12, 0.06) 0%, transparent 60%), radial-gradient(ellipse at 80% 80%, rgba(184, 150, 12, 0.04) 0%, transparent 50%), linear-gradient(180deg, transparent 0%, rgba(250, 248, 245, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.badge-line {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.badge-line:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.badge-text {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: revealTitle 1s forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.6s;
}

.title-line:nth-child(2) {
    animation-delay: 0.9s;
}

.title-line:nth-child(3) {
    animation-delay: 1.2s;
}

.title-accent {
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes revealTitle {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeIn 1s 1.5s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    animation: fadeIn 1s 1.8s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


/* Scroll Indicator */

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeIn 1s 2.2s forwards;
    opacity: 0;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 11px;
    position: relative;
    opacity: 0.5;
}

.scroll-wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(14px);
    }
}

.scroll-indicator span {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}


/* Hero Thread */

.hero-thread {
    position: absolute;
    right: 10%;
    top: 0;
    height: 100%;
    width: 60px;
    z-index: 1;
    opacity: 0.15;
}

.thread-path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: drawThread 4s ease-in-out forwards 1s;
}

@keyframes drawThread {
    to {
        stroke-dashoffset: 0;
    }
}


/* ---------- Hero Slider ---------- */

.hero-slider {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
    pointer-events: none;
}

.hero-slide--active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-slide--active .title-line {
    opacity: 0;
    transform: translateY(40px);
    animation: revealTitle 0.8s forwards;
}

.hero-slide--active .title-line:nth-child(1) {
    animation-delay: 0.15s;
}

.hero-slide--active .title-line:nth-child(2) {
    animation-delay: 0.35s;
}

.hero-slide--active .title-line:nth-child(3) {
    animation-delay: 0.55s;
}

.hero-slide--active .hero-subtitle {
    opacity: 0;
    animation: fadeIn 0.7s 0.6s forwards;
}

.hero-slide--active .hero-actions,
.hero-slide--active .hero-reviews-strip,
.hero-slide--active .review-cta {
    opacity: 0;
    animation: fadeIn 0.7s 0.8s forwards;
}

.hero-slide--active .hero-stars {
    opacity: 0;
    animation: fadeIn 0.5s 0.1s forwards;
}

.hero-slide--active .hero-badge {
    opacity: 0;
    animation: fadeIn 0.5s 0s forwards;
}


/* Stars */

.hero-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}

.hero-title--reviews {
    margin-bottom: 16px;
}


/* Reviews strip */

.hero-reviews-strip {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.review-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 16px 18px;
    max-width: 280px;
    flex: 1;
    text-align: left;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.review-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.review-body {
    flex: 1;
    min-width: 0;
}

.review-text {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 6px;
}

.review-author {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 1px;
    font-weight: 600;
}

.review-cta {
    margin-top: 8px;
}


/* Slider dots */

.hero-slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.4s ease;
    opacity: 0.5;
}

.slider-dot--active {
    background: var(--gold);
    opacity: 1;
    transform: scale(1.2);
}


/* Slider arrows */

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.6;
    padding: 0;
}

.hero-slider-arrow:hover {
    opacity: 1;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.hero-slider-arrow--prev {
    left: 24px;
}

.hero-slider-arrow--next {
    right: 24px;
}

@media (max-width: 768px) {
    .hero-slider-arrow {
        display: none;
    }
    .hero-slider-dots {
        bottom: 60px;
    }
    .hero-reviews-strip {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .review-card {
        max-width: 320px;
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
        border: 1px solid rgba(212, 175, 55, 0.25);
    }
    .review-card .review-text {
        color: rgba(255, 255, 255, 0.85);
    }
    .review-card:nth-child(2),
    .review-card:nth-child(3) {
        display: none;
    }
}


/* ---------- Introduction Section ---------- */

.section-intro {
    background: var(--bg-secondary);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.image-frame img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    transition: transform 0.8s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.frame-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border-color: var(--gold);
    border-style: solid;
    border-width: 0;
    opacity: 0.6;
}

.frame-tl {
    top: -1px;
    left: -1px;
    border-top-width: 1px;
    border-left-width: 1px;
}

.frame-br {
    bottom: -1px;
    right: -1px;
    border-bottom-width: 1px;
    border-right-width: 1px;
}

.intro-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.8;
}


/* ---------- Features Section ---------- */

.section-features {
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* Glass Card */

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.glass-card:hover .card-glow {
    opacity: 1;
}

.card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(212, 175, 55, 0.03) 45%, rgba(212, 175, 55, 0.06) 50%, rgba(212, 175, 55, 0.03) 55%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.glass-card:hover .card-shine {
    transform: translateX(100%);
}

.feature-card .card-image {
    height: 220px;
    overflow: hidden;
}

.feature-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}


/* ---------- Styles Section ---------- */

.section-styles {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.styles-bg-wrapper {
    position: absolute;
    inset: 0;
}

.styles-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.styles-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(250, 248, 245, 0.88) 0%, rgba(250, 248, 245, 0.82) 50%, rgba(250, 248, 245, 0.92) 100%);
}

.styles-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.styles-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.style-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}

.style-tag {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    color: var(--gold);
    background: var(--glass-bg);
    transition: all 0.3s ease;
    cursor: default;
}

.style-tag:hover {
    border-color: var(--gold);
    background: var(--gold-subtle);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}


/* ---------- Gallery Section ---------- */

.section-gallery {
    background: var(--bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    z-index: 3;
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 6px 16px;
    border-radius: 3px;
}


/* ---------- Lightbox ---------- */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 85vw;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.15);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    width: 90%;
    text-align: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(184, 150, 12, 0.2);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.lightbox.active .lightbox-caption {
    opacity: 1;
}

.lightbox-caption:empty {
    display: none;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    font-size: 28px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}


/* ---------- About Section ---------- */

.section-about {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.about-bg-wrapper {
    position: absolute;
    inset: 0;
}

.about-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(250, 248, 245, 0.92) 0%, rgba(250, 248, 245, 0.85) 50%, rgba(250, 248, 245, 0.94) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.about-card {
    padding: 40px;
}

.about-card-icon {
    margin-bottom: 24px;
}

.about-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}


/* ---------- Visit / CTA Section ---------- */

.section-visit {
    background: var(--bg-primary);
    text-align: center;
}

.visit-content {
    max-width: 700px;
    margin: 0 auto;
}

.visit-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}


/* ---------- FAQ Section ---------- */

.section-faq {
    background: var(--bg-primary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid rgba(184, 150, 12, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item[open] {
    border-color: rgba(184, 150, 12, 0.4);
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.3s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}


/* ---------- Contact Section ---------- */

.section-contact {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    padding: 40px;
}

.contact-logo {
    height: 50px;
    width: auto;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    filter: grayscale(0.6) brightness(0.7) contrast(1.1);
    transition: filter 0.4s ease;
}

.contact-map:hover iframe {
    filter: grayscale(0.3) brightness(0.8) contrast(1.05);
}


/* ---------- Footer ---------- */

.site-footer {
    position: relative;
    z-index: 2;
    background: var(--bg-primary);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 40px;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    filter: blur(1px);
}

.footer-content {
    text-align: center;
}

.footer-brand {
    margin-bottom: 32px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin: 0 auto 16px;
    filter: brightness(1.1);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    font-style: italic;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 4px;
}


/* ---------- Scroll Reveal Animations ---------- */

[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal="left"] {
    transform: translateX(-60px);
}

[data-reveal="right"] {
    transform: translateX(60px);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0, 0);
}


/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 4px;
        transition: right 0.5s cubic-bezier(0.65, 0, 0.35, 1);
        border-left: 1px solid var(--glass-border);
        overflow-y: auto;
    }
    .nav-links.open {
        right: 0;
    }
    .nav-link {
        width: 100%;
        font-size: 14px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .nav-link {
        width: 100%;
        font-size: 14px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .nav-link::after {
        display: none;
    }
    .nav-cta {
        margin-top: 16px;
        text-align: center;
        justify-content: center;
    }
    .mobile-toggle {
        display: flex;
    }
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    .hero-title {
        font-size: clamp(2.4rem, 10vw, 4rem);
    }
    .hero-actions {
        flex-direction: column;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-styles,
    .section-about {
        padding: 100px 0;
    }
    .cursor-dot,
    .cursor-ring {
        display: none;
    }
    body {
        cursor: auto;
    }
    .btn,
    .btn-gold-sm {
        cursor: pointer;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .btn {
        padding: 14px 28px;
        font-size: 11px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .about-card {
        padding: 28px;
    }
}


/* ---------- Utility Animations ---------- */

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.section9-heading2.second1 {
    max-width: 515px;
}

.section9-heading1.third {
    padding-left: 190px;
    padding-top: 16px;
}

.section9-heading2.third2 {
    max-width: 515px;
}

.section9-heading1.four {
    padding-left: 200px;
    padding-top: 20px;
}

.section9-heading2.four2 {
    max-width: 508px;
}

.section10 {
    background-image: url(../images/section10.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    min-height: 100vh;
    margin-top: 40px;
}

.section10-heading {
    color: #022234;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: Mogra;
    font-size: 46.979px;
    font-weight: 400;
    line-height: 147.523%;
    padding-bottom: 30px;
    padding-top: 100px;
}

.section10-heading1 {
    color: #032F48;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 147.523%;
    margin: auto;
    max-width: 855px;
    text-align: center;
    padding-bottom: 30px;
}

.section10-heading2 {
    color: #DCA623;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 147.523%;
}

.footer-section {
    background: #919770;
    box-shadow: 0px -4px 22px 0px #6C7780;
    margin-top: 70px;
}

.social-text {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 147.523%;
}

.social-icons {
    display: flex;
    gap: 6px;
    padding-bottom: 50px;
}

.email img {
    width: 50px;
}

.whatsapp img {
    width: 40px;
}

.social-anchor a:hover,
.social-anchor a {
    text-decoration: none;
    color: #FFF;
}

.footer {
    padding-top: 100px;
}

.instagram img {
    width: 35px;
}

.social-text.second {
    padding-left: 34px;
}

.social-icons.second {
    padding-bottom: 0px !important;
}

.copy-write {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.523%;
    padding-bottom: 30px;
}

.social-text.pl {
    padding-left: 32px;
}

.responsive-map iframe {
    width: 369px;
    height: 198px;
}

.navbar-brand img {
    width: 112px;
}

.footer-logo img {
    width: 240px;
}

.footer-line {
    padding-top: 70px;
    padding-bottom: 50px;
}

.social-link-icon {
    display: flex;
    gap: 10px;
    align-items: center;
}

.call-img img {
    width: 25px;
}

@media screen and (max-width: 767px) {
    .navbar-nav {
        text-align: center;
        gap: 10px;
    }
    .header-section .container {
        padding: 0px;
    }
    .header-section .container .navbar {
        padding: 10px;
    }
    .header-section .container .navbar-brand img {
        position: unset;
        width: 64px;
    }
    .header-section .navbar-light .navbar-toggler {
        border: 0px;
    }
    .header-section .navbar-light .navbar-collapse {
        position: absolute;
        top: 58px;
        background: #7D96A9;
        width: 100%;
        left: 0px;
        padding: 20px;
        z-index: 10000;
    }
    .header-section .navbar-light .navbar-collapse .navbar-nav {
        padding-left: 0px;
    }
    .hero-section-text2 {
        text-align: center;
        font-size: 30px;
        padding-top: 0px;
    }
    .hero-section-text1 {
        font-size: 30px;
    }
    .hero-section {
        background: url(../images/mobile-images/hero-section.png);
        background-size: 100%;
        min-height: 55vh;
    }
    .section1 {
        margin-top: -1px;
    }
    .section1-text1 {
        font-size: 16px;
        padding-top: 32px;
    }
    .section1-text2 {
        font-size: 13px;
        max-width: 308px;
        padding-top: 35px;
    }
    .first-bg {
        background-image: url(../images/mobile-images/first-bg.png);
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: 0px 0px;
    }
    .why-chooseus {
        padding-left: 90px;
        font-size: 16px;
    }
    .section6-img {
        padding-top: 270px;
    }
    .section2-text1 {
        font-size: 12px;
        padding-top: 15px;
    }
    .section2-text2 {
        font-size: 11px;
        max-width: 234px;
        padding-top: 14px;
    }
    .section2-img img {
        width: 151px;
    }
    .section2-img {
        padding-top: 170px;
    }
    .section3 {
        background: url(../images/mobile-images/section3-bg.png);
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: 0px 0px;
        margin-top: -12px;
    }
    .section3-img img {
        width: 103px;
    }
    .section3-text1 {
        font-size: 11px;
    }
    .section3-text2 {
        font-size: 10px;
        padding-top: 12px;
    }
    .section3-img {
        text-align: left;
        margin-top: 23px;
    }
    .section3-text1 {
        margin-top: -23px;
    }
    .section4 {
        background: url(../images/mobile-images/section4.png);
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: 0px 0px;
        margin-top: 50px;
    }
    .section4-text1 {
        font-size: 11px;
        margin-top: -194px;
    }
    .section4-text2 {
        font-size: 9px;
        max-width: 199px;
    }
    .section4-img img {
        width: 159px;
    }
    .section4-img {
        margin-top: -243px;
        margin-left: -60px;
    }
    .section5-text1 {
        font-size: 13px;
    }
    .section5-text2 {
        max-width: 222px;
        font-size: 11px;
    }
    .multi-img {
        padding-top: 30px;
    }
    .gallery-heading {
        font-size: 16px;
    }
    .gallery-head img {
        width: 58px;
        height: 68px;
    }
    .gallery-bg {
        padding: 39px 0px 50px 3px;
        margin-bottom: 25px;
        border: 1px solid #798A21;
    }
    .gallery-border {
        border: 0.408px solid #DCA623;
        margin: 18px 16px 0px 14px;
    }
    .section7-heading {
        font-size: 23px;
    }
    .section7-paragraph {
        font-size: 13px;
        max-width: 315px;
    }
    .section7-div {
        position: absolute;
        top: 43px;
        padding-left: 50px;
    }
    .section8-img img {
        width: 100%;
    }
    .section8-text1 {
        left: 50px;
        top: 272px;
    }
    .section8-text2 {
        left: 83px;
    }
    .section9-heading1 {
        padding-left: 0px;
    }
    .section9-heading1.third,
    .section9-heading1.second {
        padding-left: 0px;
    }
    .section8-paragraph1 {
        max-width: 214px;
        font-size: 13px;
    }
    .section9-img1 img {
        width: 183px;
    }
    .section9-img1 {
        padding-left: 0px;
        text-align: center;
    }
    .section10-heading {
        font-size: 22px;
        padding-bottom: 15px;
    }
    .section10-heading2 {
        font-size: 10px;
    }
    .section10-heading1 {
        font-size: 10px;
        max-width: 270px;
    }
    .section10 {
        min-height: 50vh;
    }
    .whatsapp img,
    .instagram img,
    .email img {
        width: 25px;
    }
    .mob-align-base {
        align-items: baseline;
    }
    .social-text {
        font-size: 13px;
    }
    .responsive-map iframe {
        width: 270px;
        height: 160px;
    }
    .social-text.second {
        padding-left: 24px;
    }
    .copy-write {
        padding-top: 26px;
    }
    .gallery-box3 {
        padding-bottom: 15px;
        padding-left: 10px;
    }
    .gallery-box2 {
        padding-bottom: 15px;
    }
    .gallery-box1 {
        padding-bottom: 15px;
        padding-right: 0px;
    }
    .gallery-box4 {
        margin-left: -1px;
        margin-bottom: -1px;
    }
    .wrapper {
        overflow: hidden;
    }
    html,
    body {
        overflow-x: hidden;
    }
    body {
        position: relative
    }
    .border-bttom {
        margin-top: -21px;
    }
    .section1-img {
        margin-top: -8px;
    }
    .footer-logo img {
        width: 180px;
    }
    .map-images {
        padding-top: 30px
    }
}

@media screen and (min-width: 1500px) and (max-width: 1700px) {
    .section6-img {
        padding-top: 155px;
    }
    .section5 {
        padding-top: 75px;
    }
    .section8-text1 {
        left: 770px;
    }
    .section8-text2 {
        left: 900px;
        bottom: 166px;
    }
    .section9-heading1 {
        padding-left: 202px;
        padding-top: 26px;
    }
    .section9-heading1.second {
        padding-left: 193px;
        padding-top: 42px;
    }
    .section9-heading1.third {
        padding-left: 227px;
        padding-top: 35px;
    }
    .section9-heading1.four {
        padding-left: 230px;
        padding-top: 34px;
    }
    .gallery-bg {
        margin-bottom: -188px;
    }
}