/* ============================================
   CROWN ADDIS - MAIN STYLESHEET
   Colors: Gold (#D4AF37), Black (#0A0A0A), White (#FFFFFF)
============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
    color: #0A0A0A;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo, .nav-links a, .hero-headline, .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

:root {
    --gold: #D4AF37;
    --gold-dark: #B4941C;
    --black: #0A0A0A;
    --white: #FFFFFF;
    --gray-light: #F9F9F9;
    --gray-border: #EAEAEA;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--black);
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.text-center {
    text-align: center;
}

.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 14px 38px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border: none;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-outline:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.whatsapp-hero {
    background: #25D366;
    border: none;
    color: white;
}

.whatsapp-hero:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

/* ========== LOADING PAGE ========== */
.loading-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0A0A0A;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.loading-content {
    text-align: center;
    animation: fadeInScale 0.6s ease;
}

.loading-logo {
    max-width: 200px;
    width: auto;
    height: auto;
    animation: logoPulse 1.5s infinite ease-in-out;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.3));
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    animation: dotBounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes logoPulse {
    0%, 100% { 
        opacity: 0.7; 
        transform: scale(0.95);
        filter: drop-shadow(0 0 5px rgba(212,175,55,0.3));
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05);
        filter: drop-shadow(0 0 20px rgba(212,175,55,0.6));
    }
}

@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.3; }
    40% { transform: scale(1); opacity: 1; }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.loading-page.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(212,175,55,0.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== HEADER & NAVIGATION ========== */
header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0A0A0A;
}

.logo span { 
    color: var(--gold); 
}

.logo-image {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.3s;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover:after, .nav-links a.active:after {
    width: 100%;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
    background: var(--gold);
    padding: 8px 28px;
    border-radius: 40px;
    color: var(--black) !important;
}

.nav-cta:after { display: none; }

.nav-cta:hover {
    background: var(--black);
    color: var(--gold) !important;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--black);
    -webkit-tap-highlight-color: transparent;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.theme-toggle {
    background: #f0f0f0;
    border: none;
    border-radius: 40px;
    padding: 8px 18px;
    cursor: pointer;
    font-weight: 500;
    margin-left: 15px;
}

/* ========== MOBILE NAVIGATION OVERLAY ========== */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ========== MOBILE NAVIGATION ENHANCED ========== */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .logo-image {
        height: 55px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger i {
        font-size: 1.6rem;
        color: #0A0A0A;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        padding: 60px 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        margin: 0;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.15rem;
        color: #0A0A0A;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
        padding: 8px 0;
    }
    
    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active a:nth-child(1) { transition-delay: 0.05s; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.1s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.15s; }
    .nav-links.active a:nth-child(4) { transition-delay: 0.2s; }
    .nav-links.active a:nth-child(5) { transition-delay: 0.25s; }
    .nav-links.active a:nth-child(6) { transition-delay: 0.3s; }
    .nav-links.active a:nth-child(7) { transition-delay: 0.35s; }
    
    .nav-links a:after {
        bottom: -2px;
    }
    
    .nav-cta {
        margin-top: 10px;
        padding: 10px 30px !important;
        font-size: 1rem !important;
    }
    
    .container { 
        padding: 0 20px; 
    }
    
    .section-title { 
        font-size: 2.2rem; 
    }
    
    section { 
        padding: 60px 0; 
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.1rem;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .hamburger i {
        font-size: 1.4rem;
    }
    
    .theme-toggle {
        padding: 5px 10px;
        font-size: 0.75rem;
        margin-left: 5px;
    }
    
    .theme-toggle span {
        display: none;
    }
}

/* ========== BODY STATES ========== */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

body.modal-open {
    overflow: hidden;
}

/* ========== HERO SECTION ========== */
.hero {
    height: 95vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.4) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    padding: 0 20px;
}

.hero-headline {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-sub {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s 0.1s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s 0.2s backwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}

/* Hero mobile adjustments */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.8rem;
    }
    .hero {
        height: 85vh;
    }
    .hero-content {
        padding-top: 50px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    .hero-sub {
        font-size: 0.95rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .hero-buttons .btn {
        width: 90%;
        max-width: 280px;
        text-align: center;
    }
}

/* ========== WEATHER WIDGET MOBILE FIX ========== */
@media (max-width: 768px) {
    .weather-widget {
        top: 90px !important;
        right: 15px !important;
        z-index: 7 !important;
        min-width: 170px !important;
        padding: 8px 14px !important;
        border-radius: 16px !important;
    }
    
    .weather-widget-content {
        gap: 6px !important;
    }
    
    .weather-details-mini {
        padding-left: 10px !important;
        gap: 10px !important;
    }
    
    .weather-temp {
        font-size: 1.3rem !important;
    }
    
    .weather-icon {
        font-size: 1.4rem !important;
    }
}

/* ========== SEARCH BAR MOBILE ========== */
@media (max-width: 768px) {
    .hero-search-wrapper {
        bottom: 50px !important;
        width: 90% !important;
        max-width: 500px !important;
    }
    
    .hero-search-input {
        font-size: 0.9rem !important;
    }
    
    .hero-search-button {
        padding: 10px 16px !important;
        font-size: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    .hero-search-wrapper {
        bottom: 35px !important;
        width: 92% !important;
    }
    
    .hero-search-button span {
        display: none;
    }
    
    .hero-search-button {
        padding: 10px 14px !important;
    }
    
    .hero-search-icon {
        padding: 8px 10px !important;
    }
    
    .hero-search-input {
        padding: 10px 4px !important;
        font-size: 0.85rem !important;
    }
    
    .hero-search-results {
        max-height: 220px !important;
    }
}

/* ========== FEATURES GRID ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 28px;
    transition: all 0.4s;
    border: 1px solid var(--gray-border);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.08);
    border-color: var(--gold);
}

.feature-icon {
    font-size: 56px;
    color: var(--gold);
    margin-bottom: 25px;
}

.feature-card h3 { 
    font-size: 1.8rem; 
    margin-bottom: 12px; 
}

/* ========== TOURS GRID ========== */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.tour-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.5s;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    cursor: pointer;
}

.tour-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 55px rgba(212,175,55,0.15);
}

.tour-img {
    height: 230px;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s;
}

.tour-card:hover .tour-img { 
    transform: scale(1.05); 
}

.tour-content { 
    padding: 28px; 
}

.tour-content h3 { 
    font-size: 1.7rem; 
    margin-bottom: 8px; 
}

.tour-price {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 12px 0;
}

.tour-details {
    display: flex;
    gap: 18px;
    margin: 12px 0;
    color: #666;
    font-size: 0.85rem;
}

.tour-details i { 
    color: var(--gold); 
    margin-right: 5px; 
}

/* ========== DESTINATIONS GRID ========== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.dest-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.dest-card:hover img { 
    transform: scale(1.08); 
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 35px 25px 25px;
    color: white;
}

.dest-overlay h3 { 
    font-size: 1.8rem; 
    margin-bottom: 5px; 
}

.dest-overlay p { 
    font-size: 0.9rem; 
    opacity: 0.9; 
}

/* ========== GALLERY MODAL MOBILE ========== */
@media (max-width: 768px) {
    .gallery-close {
        top: 15px;
        right: 15px;
        font-size: 32px;
        padding: 10px;
    }
    
    .gallery-grid-modal {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item-modal img {
        height: 200px;
    }
    
    .gallery-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .fullscreen-prev,
    .fullscreen-next {
        font-size: 24px;
        padding: 12px;
    }
    
    .fullscreen-image {
        max-height: 65%;
    }
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(115deg, var(--black) 0%, #1f1f1f 100%);
    padding: 85px 50px;
    border-radius: 45px;
    text-align: center;
    color: white;
}

.cta-banner h2 { 
    font-size: 2.8rem; 
    margin-bottom: 25px; 
}

@media (max-width: 768px) {
    .cta-banner h2 {
        font-size: 1.8rem;
    }
    .cta-banner {
        padding: 50px 25px;
    }
    .dest-overlay h3 {
        font-size: 1.4rem;
    }
}

/* ========== FOOTER ========== */
footer {
    background: #0A0A0A;
    color: #aaa;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--gold);
    margin-bottom: 22px;
    font-size: 1.4rem;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    line-height: 2;
}

.footer-col a:hover { 
    color: var(--gold); 
}

.social-icons a {
    color: #ccc;
    margin-right: 20px;
    font-size: 24px;
    transition: 0.3s;
    display: inline-block;
}

.social-icons a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 30px;
}

/* ========== FLOATING WHATSAPP ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    text-align: center;
    font-size: 34px;
    line-height: 62px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

/* Floating buttons mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 25px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
        line-height: 50px;
    }
}

/* ========== BACK TO TOP ========== */
#backToTop {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: none;
    background: #D4AF37;
    color: #0A0A0A;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

#backToTop:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    #backToTop {
        bottom: 25px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* ========== DARK MODE ========== */
body.dark {
    background: #121212;
    color: #eaeaea;
}

body.dark header {
    background: rgba(18,18,18,0.96);
    border-bottom-color: #222;
}

body.dark .nav-links a, 
body.dark .logo h1 {
    color: #f0f0f0;
}

body.dark .hamburger i {
    color: #f0f0f0;
}

body.dark .section-title {
    color: #f0f0f0;
}

body.dark .feature-card,
body.dark .tour-card {
    background: #1e1e1e;
    border-color: #2c2c2c;
}

body.dark .cta-banner {
    background: #1a1a1a;
}

body.dark footer {
    background: #050505;
}

body.dark .mobile-nav-overlay {
    background: rgba(0, 0, 0, 0.8);
}

body.dark .nav-links {
    background: rgba(18, 18, 18, 0.98);
}

body.dark .nav-links a {
    color: #f0f0f0;
}

/* ========== TOUCH FRIENDLY ========== */
@media (hover: none) and (pointer: coarse) {
    .search-result-item,
    .dest-card,
    .tour-card,
    .gallery-item-modal,
    .hamburger {
        -webkit-tap-highlight-color: transparent;
    }
    
    .hero-search-button,
    .hamburger,
    .gallery-close,
    .fullscreen-close,
    .fullscreen-prev,
    .fullscreen-next {
        min-height: 44px;
        min-width: 44px;
    }
}

/* ========== SCROLLBAR ========== */
.hero-search-results::-webkit-scrollbar {
    width: 4px;
}

.hero-search-results::-webkit-scrollbar-track {
    background: transparent;
}

.hero-search-results::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.4);
    border-radius: 10px;
}

/* ========== LOADING PAGE MOBILE ========== */
@media (max-width: 768px) {
    .loading-logo {
        max-width: 150px;
    }
}
/* ============================================
   MOBILE APP-LIKE UI WITH GOLDEN FRAME
============================================ */

/* Golden border around entire page on mobile */
@media (max-width: 768px) {
    /* Golden frame around the viewport */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 3px solid var(--gold);
        border-radius: 12px;
        z-index: 99999;
        pointer-events: none;
        margin: 5px;
        box-shadow: 
            inset 0 0 20px rgba(212, 175, 55, 0.15),
            0 0 30px rgba(212, 175, 55, 0.1);
    }
    
    /* Gold corner accents */
    body::after {
        content: '';
        position: fixed;
        top: 8px;
        left: 8px;
        width: 30px;
        height: 30px;
        border-top: 3px solid var(--gold);
        border-left: 3px solid var(--gold);
        border-radius: 6px 0 0 0;
        z-index: 99999;
        pointer-events: none;
    }
    
    /* Bottom gold accent */
    .gold-corner-bottom {
        position: fixed;
        bottom: 8px;
        right: 8px;
        width: 30px;
        height: 30px;
        border-bottom: 3px solid var(--gold);
        border-right: 3px solid var(--gold);
        border-radius: 0 0 6px 0;
        z-index: 99999;
        pointer-events: none;
    }
    
    /* Smooth page transitions */
    main {
        animation: pageSlideIn 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }
    
    @keyframes pageSlideIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Card styling - modern glassmorphism */
    .feature-card-enhanced,
    .tour-card,
    .blog-card,
    .dest-card {
        border-radius: 20px !important;
        box-shadow: 
            0 4px 15px rgba(0, 0, 0, 0.08),
            0 1px 3px rgba(212, 175, 55, 0.1) !important;
        border: 1px solid rgba(212, 175, 55, 0.15) !important;
    }
    
    /* Section titles with gold underline */
    .section-title {
        position: relative;
        display: inline-block;
        margin-bottom: 30px !important;
    }
    
    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        border-radius: 2px;
    }
    
    /* Buttons - larger touch targets */
    .btn {
        padding: 14px 28px !important;
        font-size: 1rem !important;
        border-radius: 30px !important;
        letter-spacing: 0.5px;
        min-height: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Navbar golden bottom border */
    .navbar {
        border-bottom: 2px solid rgba(212, 175, 55, 0.3) !important;
        background: rgba(255, 255, 255, 0.97) !important;
        backdrop-filter: blur(20px) !important;
    }
    
    /* Hero section overlay enhancement */
    .hero-overlay {
        background: linear-gradient(
            180deg, 
            rgba(0,0,0,0.7) 0%, 
            rgba(0,0,0,0.4) 50%, 
            rgba(0,0,0,0.7) 100%
        ) !important;
    }
    
    /* Floating WhatsApp button - golden ring */
    .whatsapp-float {
        border: 2px solid var(--gold) !important;
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3) !important;
        animation: floatPulse 2s infinite;
    }
    
    @keyframes floatPulse {
        0%, 100% { box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3); }
        50% { box-shadow: 0 4px 30px rgba(212, 175, 55, 0.5); }
    }
    
    /* Back to top button */
    #backToTop {
        border: 2px solid var(--gold-dark) !important;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
    }
    
    /* Footer gold top border */
    footer {
        border-top: 2px solid var(--gold) !important;
    }
    
    /* Input fields */
    input, textarea, select {
        border-radius: 12px !important;
        border: 1px solid rgba(212, 175, 55, 0.2) !important;
        transition: all 0.3s !important;
    }
    
    input:focus, textarea:focus, select:focus {
        border-color: var(--gold) !important;
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
    }
    
    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }
    
    /* Section spacing */
    section {
        padding: 60px 20px !important;
    }
    
    /* CTA Banner */
    .cta-banner {
        border-radius: 24px !important;
        border: 1px solid rgba(212, 175, 55, 0.2) !important;
        margin: 20px !important;
    }
    
    /* Gallery modals */
    .gallery-modal-content {
        border-radius: 20px !important;
        border: 1px solid rgba(212, 175, 55, 0.3) !important;
    }
    
    .gallery-item-modal {
        border-radius: 14px !important;
        border: 1px solid rgba(212, 175, 55, 0.15) !important;
    }
    
    /* Dark mode golden frame */
    body.dark::before {
        border-color: rgba(212, 175, 55, 0.6) !important;
        box-shadow: 
            inset 0 0 20px rgba(212, 175, 55, 0.1),
            0 0 30px rgba(212, 175, 55, 0.05) !important;
    }
    
    body.dark::after {
        border-color: rgba(212, 175, 55, 0.6) !important;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    body::before {
        margin: 3px !important;
        border-width: 2px !important;
        border-radius: 8px !important;
    }
    
    body::after {
        width: 20px !important;
        height: 20px !important;
        top: 5px !important;
        left: 5px !important;
    }
}