/* Base Styles and Variables */
:root {
    --rich-black: #0A0A0A;
    --midnight-blue: #121420;
    --dark-charcoal: #1E1E24;
    --slate-gray: #2C2C34;
    --silver: #C0C0C0;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --light-gray: #E0E0E0;
    
    --gradient-black: linear-gradient(135deg, var(--rich-black) 0%, var(--dark-charcoal) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, #F5F5DC 100%);
    --gradient-glass: linear-gradient(rgba(30, 30, 36, 0.8), rgba(18, 20, 32, 0.9));
    
    --gold-glow: 0 0 15px rgba(212, 175, 55, 0.5);
    --soft-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --inner-glow: inset 0 0 10px rgba(192, 192, 192, 0.2);
    
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--rich-black);
    width: 100%;
    position: relative;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.page-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

p {
    margin-bottom: 1.8rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--light-gray);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
}

h1 {
    font-size: 4rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--gold);
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-gold);
}

/* Glossy Effect Classes */
.service-glass, .contact-glass, .form-glass, .header-glass, .about-glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.7;
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(192, 192, 192, 0.1);
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.header-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    z-index: 1;
}

.header.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 10, 10, 0.95);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 120px;
    min-width: 120px;
    overflow: hidden;
}

.logo {
    height: 50px;
    width: auto;
    max-width: 100%;
    transition: var(--transition);
    
}

.header.scrolled .logo {
    height: 40px;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.nav-menu ul {
    display: flex;
    gap: 1.5rem;
}

.nav-menu a {
    position: relative;
    font-weight: 500;
    padding: 0.5rem 0;
    color: var(--light-gray);
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--gold);
    transition: var(--transition);
}

/* Hero Section with Video */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: var(--white);
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.slogan {
    font-size: 1.5rem;
    max-width: 800px;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: var(--light-gray);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--rich-black);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--soft-shadow);
    transition: var(--transition);
    border: 2px solid var(--gold);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), var(--gold-glow);
    background: transparent;
    color: var(--gold);
}

/* About Section */
.about {
    padding: 8rem 0 6rem;
    background: var(--midnight-blue);
    position: relative;
}

.about .section-title {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    font-size: 2.8rem;
}

.about .section-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3.5rem;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

/* Services Wrapper */
.services-wrapper {
    background: var(--rich-black);
    padding: 4rem 0;
    position: relative;
}

.services-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--rich-black);
    z-index: -2;
}

/* Service Sections */
.service {
    padding: 3rem 0;
    position: relative;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--soft-shadow), var(--gold-glow);
}

.service-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(30%) contrast(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.3));
    z-index: 1;
    opacity: 0.7;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1.2);
}

.service-card:hover .service-overlay {
    opacity: 0.4;
}

.service-text {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.service-text .section-title {
    text-align: left;
    color: var(--gold);
}

.service-text .section-title::after {
    left: 0;
    transform: none;
}

/* Contact Section */
.contact {
    position: relative;
    padding: 0;
}

.contact-wrapper {
    background: var(--gradient-black);
    padding: 6rem 0;
    color: var(--white);
    position: relative;
}

.contact .section-title {
    color: var(--gold);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.contact .section-title::after {
    background: var(--gold);
    left: 50%;
    transform: translateX(-50%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    padding: 2rem;
    border-radius: var(--border-radius);
    position: relative;
}

.contact-info h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--light-gray);
}

.contact-info i {
    color: var(--gold);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-form {
    padding: 2rem;
    border-radius: var(--border-radius);
    position: relative;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(224, 224, 224, 0.7);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--rich-black);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), var(--gold-glow);
}

/* Footer */
.footer {
    position: relative;
    background: var(--dark-charcoal);
    color: var(--light-gray);
    padding: 4rem 0 2rem;
}

.footer-content {
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
    
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--light-gray);
}

.social-icon:hover {
    background: var(--gold);
    color: var(--rich-black);
    transform: translateY(-3px);
    box-shadow: var(--gold-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(224, 224, 224, 0.7);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 1188px) {
    html {
        font-size: 14px;
    }
    
    .service-card {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 300px;
    }
}

@media (max-width: 1188px) {
    .header-container {
        flex-wrap: wrap;
        padding: 0 1rem;
    }
    
    .logo-container {
        order: 2;
        justify-content: flex-end;
        min-width: 100px;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        order: 1;
        z-index: 1000;
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--rich-black);
        border-right: 2px solid var(--gold);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
        padding: 80px 2rem 2rem;
        transition: var(--transition);
        z-index: 999;
        overflow-y: auto;
        text-align: left;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
        text-align: left;
        align-items: flex-start;
        width: 100%;
    }
    
    .nav-menu ul li {
        width: 100%;
        text-align: left;
        padding-left: 1rem;
    }
    
    .nav-menu ul li a {
        display: block;
        text-align: left;
        width: 100%;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .service-image {
        height: 250px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo, .footer-social {
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 12px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .slogan {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Service Card Flip Animation */
.service-card {
    perspective: 1000px;
}

.service-card[data-aos="flip-left"],
.service-card[data-aos="flip-right"] {
    backface-visibility: hidden;
}

.service-card[data-aos="flip-left"].aos-animate,
.service-card[data-aos="flip-right"].aos-animate {
    transform: rotateY(0);
}

.service-card[data-aos="flip-left"] {
    transform: rotateY(90deg);
}

.service-card[data-aos="flip-right"] {
    transform: rotateY(-90deg);
}

/* Particles Animation */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    background-color: var(--gold);
    border-radius: 50%;
    opacity: 0.2;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-40px) translateX(0);
    }
    75% {
        transform: translateY(-20px) translateX(-10px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Glossy Reflection Effect */
.glossy-reflection {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.05) 100%);
    transform: rotate(45deg);
    pointer-events: none;
}

/* Success Message Styling */
.success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.success-message i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    animation: glow 2s infinite;
}

.success-message p {
    font-size: 1.2rem;
    color: var(--white);
}
