* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #d4af37;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --text-light: #ffffff;
    --text-gold: #d4af37;
    --accent-blue: #1a237e;
    --whatsapp-green: #25d366;
    --gradient-primary: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
}

body {
    font-family: 'Crimson Text', serif;
    background: var(--gradient-primary);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px;
}

/* Logo Styling */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 80px 20px 20px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%), var(--gradient-primary);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-gold);
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.cta-button:focus {
    outline: 2px solid var(--text-gold);
    outline-offset: 2px;
}

.cta-button i {
    font-size: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--text-gold);
}

/* Magical Particles */
.magical-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.magical-particles::before,
.magical-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--text-gold);
    border-radius: 50%;
    animation: sparkle 3s linear infinite;
    box-shadow: 0 0 10px var(--text-gold);
}

.magical-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.magical-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

/* Services */
.services {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.5);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.services-categories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.service-category {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--text-gold);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border: 2px solid var(--text-gold);
}

.category-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--text-gold);
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--text-gold);
    background: rgba(255, 255, 255, 0.08);
}

.service-card.custom-build {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: var(--text-gold);
}

.service-card.custom-build:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--text-gold);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.service-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-gold);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Service Features */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.feature-card {
    background: rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--text-gold);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--text-gold);
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-gold);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.magic-circle {
    width: 300px;
    height: 300px;
    border: 3px solid var(--text-gold);
    border-radius: 50%;
    position: relative;
    animation: rotate 20s linear infinite;
}

.magic-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.5);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--text-gold);
    margin-top: 0.25rem;
    min-width: 30px;
}

.contact-details h3 {
    font-family: 'Cinzel', serif;
    color: var(--text-gold);
    margin-bottom: 0.75rem;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Enhanced Contact Methods */
.enhanced-contact {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-method-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.contact-method-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--text-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.contact-method-card.whatsapp-card:hover {
    border-color: var(--whatsapp-green);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
}

.method-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-icon.whatsapp-icon {
    background: var(--whatsapp-green);
    color: white;
}

.method-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.method-title {
    font-weight: 600;
    color: var(--text-gold);
    font-size: 0.9rem;
}

.contact-method-card.whatsapp-card .method-title {
    color: var(--whatsapp-green);
}

.method-number,
.method-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.9;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-gold);
    font-style: italic;
    text-align: center;
    margin-top: 0.5rem;
}

/* Footer contact number styling */
.footer-contact-number {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-number:hover {
    color: var(--text-gold);
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: #20c05a;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--text-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border: 5px solid transparent;
    border-top-color: var(--text-gold);
}

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-5px);
}

/* Contact and Footer link styling */
.contact-details a,
.footer-section a[href^="tel"],
.footer-section a[href^="mailto"] {
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.contact-details a:hover,
.footer-section a[href^="tel"]:hover,
.footer-section a[href^="mailto"]:hover {
    color: var(--text-gold);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Cinzel', serif;
    color: var(--text-gold);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--text-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--text-gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* Fallback */
@supports not (background-clip: text) {
    .hero-title,
    .section-title,
    .about-text h2 {
        color: var(--text-gold);
        background: none;
    }
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes sparkle {
    0% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .logo-img {
        height: 40px;
        max-width: 150px;
    }

    .hero {
        padding: 100px 20px 20px;
        min-height: calc(100vh - 80px);
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .magic-circle {
        width: 200px;
        height: 200px;
    }

    .magic-circle::before {
        width: 120px;
        height: 120px;
    }

    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .whatsapp-tooltip {
        bottom: 60px;
        right: -10px;
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .service-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 15px 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .whatsapp-tooltip {
        right: -20px;
        max-width: 150px;
        white-space: normal;
        text-align: center;
    }

    .service-category {
        padding: 1.5rem;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .category-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 320px) {
    .hero-content {
        padding: 0 10px;
    }

    .cta-button {
        width: 100%;
        max-width: 250px;
    }

    .logo-img {
        height: 30px;
        max-width: 100px;
    }

    .whatsapp-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .service-category {
        padding: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-title,
    .scroll-indicator,
    .magical-particles::before,
    .magical-particles::after,
    .magic-circle,
    .logo-img,
    .whatsapp-btn {
        animation: none;
    }

    .cta-button:hover,
    .service-card:hover,
    .logo-img:hover,
    .whatsapp-btn:hover,
    .contact-method-card:hover,
    .feature-card:hover {
        transform: none;
    }
}
