@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --luxury-black: #0d0f12;
    --luxury-gold: #d4af37;
    --luxury-gray: #1a1e24;
    --luxury-bg: #f9fafb;
    --text-dark: #2c323a;
    --text-muted: #717b88;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--luxury-bg);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

header {
    background-color: var(--luxury-black);
    padding: 25px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    font-family: 'Cinzel', serif;
    color: white;
    font-size: 1.7rem;
    letter-spacing: 3px;
    font-weight: 700;
}

.logo-text span {
    color: var(--luxury-gold);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    display: block;
    margin-top: 2px;
}

nav {
    position: relative;
}

nav a {
    color: #a3aab5;
    text-decoration: none;
    margin-left: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    padding-bottom: 5px;
}

nav a:hover,
nav a.active-link {
    color: var(--luxury-gold);
}

.nav-indicator {
    position: absolute;
    bottom: -8px; 
    left: 0;
    height: 1px;
    background: var(--luxury-gold);
    pointer-events: none;
}

.nav-indicator.ready-to-animate {
    transition: all 0.3s ease-in-out;
}

#content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 40px 20px;
}

.page {
    display: none;
}

.page.active {
    display: block;
    animation: pageFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes luxuryReveal {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.gold-badge {
    color: var(--luxury-gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 4px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    text-align: center;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 20px auto;
    font-size: 1.05rem;
}

.hero-image-container {
    height: 75vh;
    margin-top: 12px;
    background: linear-gradient(rgba(13, 15, 18, 0.8), rgba(13, 15, 18, 0.85)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
}

.hero-overlay-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-overlay-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-overlay-content p {
    color: #c4cbd4;
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 300;
    margin-top: 35px;
    margin-bottom: 55px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-luxury {
    background: transparent;
    color: var(--luxury-gold);
    border: 1px solid var(--luxury-gold);
    padding: 15px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    display: block;
    width: fit-content;
    margin: -15px auto 0 auto;
}

.btn-luxury:hover {
    background: var(--luxury-gold);
    color: var(--luxury-black);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    position: relative;
    width: 100%;
}

.hero-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
        rgba(212, 175, 55, 0) 0%,
        rgba(212, 175, 55, 1) 20%,
        rgba(212, 175, 55, 1) 80%,
        rgba(212, 175, 55, 0) 100%
    );
}

.hf-item {
    color: #c4cbd4;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 1;
    text-align: center;
}

.hf-item.run-animation {
    animation: luxuryReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hf-item strong {
    display: block;
    color: var(--luxury-gold);
    font-size: 1.6rem;
    font-family: 'Cinzel', serif;
    margin-bottom: 4px;
}

.home-extra-info-box {
    max-width: 100%;
    height: 80vh;
    margin: 60px auto 0 auto;
    background: #ffffff;
    padding: 30px 60px 35px 60px;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
    border-bottom: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.extra-info-content {
    margin-bottom: 25px;
    flex-shrink: 0;
}

.extra-info-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--luxury-black);
    margin-bottom: 12px;
}

.extra-info-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.1rem;
    max-width: 950px;
    margin: 0 auto;
}

.extra-info-image-frame {
    width: 100%;
    flex: 1;
    min-height: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.extra-info-image-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.home-dark-highlight {
    max-width: 1200px;
    margin: 80px auto 60px auto;
    min-height: 75vh;
    background: linear-gradient(135deg, var(--luxury-black), var(--luxury-gray));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dark-highlight-content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dark-highlight-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

.dark-highlight-content p {
    color: #c4cbd4;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.dark-features-list {
    list-style: none;
    margin-top: 10px;
}

.dark-features-list li {
    color: var(--luxury-gold);
    margin-bottom: 12px;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.dark-highlight-image {
    height: 100%;
    min-height: 400px;
}

.dark-highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.feature-item {
    margin-bottom: 30px;
    border-left: 2px solid var(--luxury-gold);
    padding-left: 20px;
}

.feature-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.feature-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

.about-image-box {
    height: 450px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-radius: 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
    background: #1a1e24;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: start;
}

.service-luxury-card {
    background: white;
    border: 1px solid #eef1f5;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.service-image-placeholder {
    height: 200px;
    background: #1a1e24;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #525e6e;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
}

.service-card-content {
    padding: 30px 30px 15px 30px;
}

.service-card-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-card-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.gallery-luxury-container {
    display: flex;
    flex-direction: column;
}

.gallery-project-block {
    margin-bottom: 70px;
    padding-bottom: 60px;
    border-bottom: 2px solid var(--luxury-gold);
}

.gallery-project-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.before-after-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.img-frame {
    position: relative;
    background: #1e242c;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(13, 15, 18, 0.85);
    color: white;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    z-index: 10;
}

.gold-status {
    background: var(--luxury-gold);
    color: var(--luxury-black);
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1e24;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.img-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.contact-luxury-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    margin-top: 20px;
}

.contact-form-luxury {
    background: white;
    padding: 40px;
    border: 1px solid #eef1f5;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
}

.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    color: var(--luxury-black);
    outline: none;
    transition: all 0.3s;
}

.input-group textarea {
    resize: none;
}

.input-group label {
    position: absolute;
    top: 12px;
    left: 0;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 1px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -15px;
    font-size: 0.75rem;
    color: var(--luxury-gold);
    font-weight: 600;
}

.input-group input:focus,
.input-group textarea:focus {
    border-bottom: 1px solid var(--luxury-gold);
}

.btn-luxury-submit {
    background: var(--luxury-black);
    color: white;
    border: 1px solid var(--luxury-gold);
    width: 100%;
    padding: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-luxury-submit:hover {
    background: var(--luxury-gold);
    color: var(--luxury-black);
}

.contact-info-luxury h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.info-line {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-line strong {
    color: var(--luxury-gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 3px;
}

.info-line span {
    color: var(--text-dark);
}

@keyframes luxuryErrorReveal {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.error-text {
    color: #d93838;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 6px;
    display: block;
    animation: luxuryErrorReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.input-group.has-error input,
.input-group.has-error textarea {
    border-bottom: 1px solid #d93838 !important;
}

.input-group.has-error label {
    color: #d93838 !important;
}

@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

.shake-animation {
    animation: shakeError 0.4s ease-in-out !important;
}

footer {
    background: var(--luxury-black);
    padding: 60px 20px 20px 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    text-align: left;
}

.footer-col {
    flex: 1 1 350px;
    max-width: 100%;
}

.footer-col h2 {
    font-family: 'Cinzel', serif;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-col h3 {
    font-family: 'Cinzel', serif;
    color: var(--luxury-gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
    white-space: nowrap; 
}

.footer-col:first-child p {
    white-space: normal; 
    max-width: 380px; 
}

.footer-col strong {
    color: #a3aab5;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
        rgba(212, 175, 55, 0) 0%,
        rgba(212, 175, 55, 0.8) 50%,
        rgba(212, 175, 55, 0) 100%
    );
}

.footer-bottom .copyright {
    font-size: 0.8rem;
    color: var(--luxury-gold);
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    justify-content: flex-start;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-text h1 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 1.7rem;
    letter-spacing: 3px;
    font-weight: 700;
}

.footer-logo-text h2 {
    color: #ffffff;
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    font-weight: bold;
    line-height: 1;
    margin: 0;
}

.footer-logo-text span {
    color: #d4af37;
    font-size: 10px;
    letter-spacing: 3px;
    margin-top: 4px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .logo-container { flex-direction: row; text-align: left; gap: 10px; align-items: center; }
    .header-logo { height: 40px; }
    .logo-text h1 { font-size: 1.1rem; }
    .logo-text span { font-size: 0.5rem; letter-spacing: 2px; }
    header { flex-direction: row; justify-content: space-between; align-items: center; padding: 10px 15px; gap: 0; }
    nav a { margin: 0 10px; font-size: 0.75rem; }
    .hero-overlay-content h2 { font-size: 2rem; }
    .hero-features { flex-direction: column; gap: 20px; margin-top: 40px; }
    .home-extra-info-box { margin: 40px 20px; padding: 25px; max-width: 100%; height: auto; }
    .extra-info-content h3 { font-size: 1.4rem; }
    .extra-info-image-frame img { max-height: 300px; }
    .home-dark-highlight { grid-template-columns: 1fr; margin: 40px 20px; min-height: auto; }
    .dark-highlight-content { padding: 40px 25px; }
    .dark-highlight-image { min-height: 250px; }
    .about-grid, .before-after-wrapper, .contact-luxury-wrapper { grid-template-columns: 1fr; }
    .about-image-box { height: 300px; }
    .footer-container { text-align: center; }
    .footer-logo-wrapper { justify-content: center; }
    .footer-col p { white-space: normal; } 
}

.about-image-box img,
.service-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 768px) {

section {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

header {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 35px 20px !important; 
    height: auto !important;
    text-align: left;
    background-color: var(--luxury-black) !important;
    border-bottom: 2px solid var(--luxury-gold) !important; 
    position: sticky !important;
    top: 0 !important;
    z-index: 1000;
}

header .logo-container img {
    height: 45px !important; 
    width: auto !important;
}

header .logo-container h1 { 
    font-size: 1.3rem !important;
    line-height: 1.1 !important;
    margin-bottom: 2px !important;
}

header .logo-container p { 
    font-size: 0.7rem !important;
    letter-spacing: 1.5px !important;
}

header .logo-container {
    gap: 10px !important;
}

#nav-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    background-color: var(--luxury-black) !important;
    display: flex !important; 
    flex-direction: column !important;
    align-items: center !important;
    max-height: 0 !important; 
    overflow: hidden !important; 
    padding: 0 !important; 
    border: none !important; 
    transition: all 0.4s ease-in-out !important; 
    z-index: 999 !important;
}

#nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--luxury-gold);
}

#nav-menu::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--luxury-gold);
}

#nav-menu.active {
    max-height: 400px !important; 
    padding: 25px 0 !important; 
}

#nav-menu a {
    margin: 10px 0 !important; 
    font-size: 0.9rem !important; 
}

.menu-toggle {
    margin-left: auto !important;
}

.hero-image-container {
    width: calc(100% + 40px) !important; 
    margin-left: -20px !important;       
    margin-right: -20px !important;      
    margin-top: -15px !important;
    margin-bottom: 0 !important;         
    border-radius: 0 !important;         
    border: none !important;
    min-height: 80vh !important;         
    height: auto !important; 
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important; 
    padding: 25px 20px !important;       
}

.hero-overlay-content {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-top: 0 !important;            
    gap: 22px !important;                
    width: 100% !important;
}

.hero-overlay-content h2 {
    font-size: 26px !important;          
    margin-bottom: 0 !important;
    line-height: 1.3 !important;
}

.hero-overlay-content p {
    font-size: 1.05rem !important; 
    line-height: 1.6 !important;         
    margin: 0 !important;
}

.btn-luxury {
    margin: 5px auto 0 auto !important; 
    padding: 12px 32px !important;       
}

.hero-features {
    flex-direction: column !important;
    gap: 22px !important;                
    margin-top: auto !important;         
    margin-bottom: 0 !important;         
    padding-top: 0 !important;
    width: 100% !important;
    align-items: center !important;
    transform: translateY(40px) !important;
}

.hero-features::before {
    top: -30px !important;                
}

.hf-item {
    margin-bottom: 0 !important;
}

.hf-item strong {
    font-size: 1.4rem !important;       
}

.home-extra-info-box, 
.home-dark-highlight, 
.about-grid, 
.contact-luxury-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
}

.extra-info-image-frame, 
.dark-highlight-image, 
.about-image-box {
    width: 100% !important;
}

.services-grid, 
.gallery-luxury-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
}

.footer-container {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 30px !important;
}
    
.footer-logo-wrapper {
        justify-content: center !important;
    }
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px !important;
    background-color: var(--luxury-gold);
    margin: 1px auto;
    border: none !important;
}

@media (max-width: 768px) {

.hamburger {
    display: flex;
}

nav {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--luxury-black);
    padding: 20px;
    text-align: center;
}

nav.active {
        display: flex;
    }
}

#nav-menu.no-animation {
    transition: none !important;
}

@media (max-width: 768px) {
    
.home-extra-info-box {
    width: calc(100% + 40px) !important;   
    margin-left: -20px !important;         
    margin-right: -20px !important;        
    margin-top: 40px !important;
    margin-bottom: 40px !important;
    padding: 30px 20px !important;         
    border-radius: 0 !important;           
    max-width: none !important;
    height: auto !important;
}

.extra-info-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important;
}

.home-dark-highlight {
    width: calc(100% + 40px) !important;   
    margin-left: -20px !important;         
    margin-right: -20px !important;        
    margin-top: 40px !important;
    margin-bottom: 40px !important;
    border-radius: 0 !important;           
    border: none !important;     
    padding-bottom: 0 !important;       
}
    
.dark-highlight-content {
    padding-top: 45px !important;       
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-bottom: 0 !important;       
    text-align: center !important;         
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;        
}

.dark-highlight-image {
    margin-top: 25px !important;        
    margin-bottom: 0 !important;        
    margin-left: -20px !important;      
    margin-right: -20px !important;     
    width: calc(100% + 40px) !important; 
    display: block !important; 
}

.dark-highlight-content .gold-badge {
    text-align: center !important;
    margin: 0 auto 15px auto !important;
}

.dark-features-list {
        text-align: left !important;           
        display: inline-block !important;      
        margin: 20px auto 0 auto !important;
        padding-left: 0 !important;
        list-style: none !important;
    }
}

@media (max-width: 768px) {
    
footer {
    margin-top: 25px !important; 
    padding: 35px 15px 15px 15px !important;
    border-top: 2px solid #d4af37 !important; 
}

.footer-container {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 22px !important;
    margin-bottom: 20px !important;
}

.footer-col {
    flex: 1 1 auto !important;
    max-width: 100% !important;
}

.footer-col p {
    white-space: normal !important;
    margin-bottom: 6px !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
}

.footer-col h3 {
    font-size: 1.05rem !important;
    margin-bottom: 10px !important;
    letter-spacing: 1px !important;
}

.footer-logo-wrapper {
    justify-content: center !important;
    margin-bottom: 12px !important;
}

.footer-col:first-child p {
    max-width: 290px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.footer-bottom {
    padding-top: 15px !important;
    margin-top: 5px !important;
}
    
.footer-bottom p.copyright {
        font-size: 0.8rem !important;
    }
}

.gallery-title::after,
.gallery-section h2::after,
.section-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
}
    
.gallery-divider,
.gold-divider,
.divider {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
}

@media screen and (min-width: 769px) {

.about-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 50px !important;
    align-items: center !important;
}
    
.about-text-box {
    width: 100% !important; 
    order: 1 !important;
}
    
.about-image-box {
        width: 100% !important; 
        height: 100% !important;
        min-height: 450px;
        order: 2 !important;
    }
}

@media screen and (max-width: 768px) {

.about-grid {
    display: flex !important;
    flex-direction: column !important;
}
    
.about-image-box {
    height: 300px !important;
    order: -1 !important;
    margin-bottom: 30px !important;
}

.gallery-title::after,
.gallery-section h2::after,
.section-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
    
.gallery-divider,
.gold-divider,
.divider {
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
    }
}

@media screen and (min-width: 769px) {
    .logo-text h1 {
        font-size: 32px !important;
    }
}