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

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', sans-serif;
    background: #1a0820;
    color: #e8d0ee;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
}

/* ===== Navbar ===== */
#navbar {
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
    background: rgba(26, 8, 32, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-link {
    position: relative;
}

/* ===== Buttons ===== */
.btn-amber {
    background: linear-gradient(135deg, #F5A623 0%, #e8920e 100%);
    color: #1a0820;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-amber:hover {
    background: linear-gradient(135deg, #ffda7a 0%, #F5A623 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.35);
}

.btn-plum {
    background: linear-gradient(135deg, #7B2D8E 0%, #6a2478 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-plum:hover {
    background: linear-gradient(135deg, #ba7abf 0%, #7B2D8E 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(123, 45, 142, 0.35);
}

.btn-outline-large {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-large:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-large {
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== Inputs ===== */
.input-field {
    background: rgba(123, 45, 142, 0.15);
    border: 1px solid rgba(123, 45, 142, 0.3);
    border-radius: 12px;
    padding: 14px 16px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    width: 100%;
    transition: all 0.3s ease;
    outline: none;
}

.input-field::placeholder {
    color: rgba(232, 208, 238, 0.4);
}

.input-field:focus {
    border-color: #F5A623;
    background: rgba(123, 45, 142, 0.25);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.input-field option {
    background: #3f1448;
    color: #fff;
}

/* ===== Service Cards ===== */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Review Cards ===== */
.review-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.review-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Gallery ===== */
.gallery-item {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== Geometric Shapes ===== */
.geo-shape {
    position: absolute;
    opacity: 0.06;
    pointer-events: none;
}

.geo-circle-1 {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: #F5A623;
    top: -100px;
    right: -100px;
}

.geo-circle-2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #7B2D8E;
    bottom: 10%;
    left: -50px;
    opacity: 0.1;
}

.geo-circle-3 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #F5A623;
    bottom: -100px;
    right: -100px;
}

.geo-circle-4 {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: #7B2D8E;
    top: 20%;
    left: -80px;
}

.geo-square-1 {
    width: 120px;
    height: 120px;
    background: #F5A623;
    top: 25%;
    left: 8%;
    transform: rotate(45deg);
    opacity: 0.08;
}

.geo-square-2 {
    width: 80px;
    height: 80px;
    background: #F5A623;
    top: 15%;
    right: 12%;
    transform: rotate(20deg);
    opacity: 0.1;
}

.geo-triangle-1 {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid #F5A623;
    top: 40%;
    right: 5%;
    opacity: 0.05;
    transform: rotate(-15deg);
}

.geo-dots {
    background-image: radial-gradient(circle, #F5A623 1px, transparent 1px);
    background-size: 20px 20px;
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 10%;
    opacity: 0.15;
}

/* ===== Scroll Indicator ===== */
.animate-scroll-line {
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Mobile Menu ===== */
.mobile-link {
    display: block;
}

/* ===== Animations ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(45deg); }
    50% { transform: translateY(-20px) rotate(45deg); }
}

.geo-square-1 {
    animation: float 6s ease-in-out infinite;
}

.geo-triangle-1 {
    animation: float 8s ease-in-out infinite reverse;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .geo-circle-1 {
        width: 300px;
        height: 300px;
    }
    
    .geo-circle-2,
    .geo-circle-3,
    .geo-circle-4 {
        display: none;
    }
}
