/* ===================================
   MG Events - Unique Modern Design
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #D4A853;
    --primary-dark: #B8941F;
    --secondary: #D4A853;
    --dark: #1A1A2E;
    --darker: #0F0F1E;
    --light: #EAEAEA;
    --white: #FFFFFF;
    --accent: #D4A853;

    --font-main: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Unique Navigation with Glass Effect
   =================================== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1300px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 15px 30px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(212, 168, 83, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.2),
        0 6px 20px rgba(212, 168, 83, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: translateX(-50%) translateY(-2px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 83, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 45px;
    font-size: 16px;
}

/* Animated Border Button with 3D Effect */
.btn-animated-border {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none !important;
    background: transparent;
    box-shadow:
        0 10px 20px rgba(212, 168, 83, 0.3),
        0 6px 6px rgba(0, 0, 0, 0.2),
        inset 0 -2px 5px rgba(0, 0, 0, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.1);
    transform: translateY(0) perspective(1000px) rotateX(0deg);
    transition: all 0.3s ease;
}

.btn-animated-border::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: conic-gradient(transparent, transparent, transparent, #D4A853);
    transform: translate(-50%, -50%);
    animation: rotate-border 4s linear infinite;
    z-index: -2;
}

.btn-animated-border::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(145deg, #1a1a1a, #000000);
    border-radius: 48px;
    z-index: -1;
}

.btn-animated-border {
    color: white;
}

.btn-animated-border:hover {
    color: #D4A853;
    background: transparent;
    transform: translateY(-5px) perspective(1000px) rotateX(5deg);
    box-shadow:
        0 20px 40px rgba(212, 168, 83, 0.4),
        0 10px 10px rgba(0, 0, 0, 0.3),
        inset 0 -3px 8px rgba(0, 0, 0, 0.4),
        inset 0 3px 8px rgba(255, 255, 255, 0.15);
}

.btn-animated-border:hover::after {
    background: linear-gradient(145deg, #222, #111);
}

.btn-animated-border:active {
    transform: translateY(-2px) perspective(1000px) rotateX(2deg);
    box-shadow:
        0 8px 16px rgba(212, 168, 83, 0.3),
        0 4px 4px rgba(0, 0, 0, 0.2);
}

@keyframes rotate-border {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s ease;
}

/* ===================================
   Creative Hero with Diagonal Split
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #000;
    padding-top: 100px;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    margin: 0 auto !important;
    padding: 0 60px !important;
    max-width: 1400px !important;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 230, 109, 0.2);
    border: 2px solid var(--accent);
    border-radius: 50px;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    margin-top: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--secondary);
    opacity: 0.3;
    z-index: -1;
    transform: skewY(-2deg);
}

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

/* ===================================
   Services with Card Hover Effects
   =================================== */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(212, 168, 83, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transform: rotate(-5deg);
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotate(0deg) scale(1.1);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.service-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 15px;
}

/* ===================================
   Wedding Feature Section
   =================================== */
.wedding-feature {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-left {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Laptop Frame */
.laptop-frame {
    width: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.laptop-screen {
    width: 100%;
    height: 400px;
    background: #111;
    border-radius: 12px 12px 0 0;
    padding: 15px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 12px solid #222;
    border-bottom: 0;
    overflow: hidden;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: #333;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 10;
}

.laptop-base {
    width: 110%;
    height: 20px;
    background: linear-gradient(to bottom, #333, #222);
    border-radius: 0 0 8px 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.laptop-base::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 8px;
    background: #1a1a1a;
    border-radius: 0 0 4px 4px;
}

@keyframes fadeImages {

    0%,
    25% {
        opacity: 1;
    }

    33.33%,
    100% {
        opacity: 0;
    }
}

.feature-right {
    padding-right: 40px;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark);
}

.highlight-blue {
    color: var(--primary);
    position: relative;
}

.feature-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

@media (max-width: 991px) {
    .feature-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .feature-right {
        padding-right: 0;
    }

    .phone-frame {
        width: 260px;
        height: 520px;
    }
}

/* ===================================
   About with Split Layout
   =================================== */
.about {
    padding: 120px 0;
    background: #000000;
    color: white;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--primary);
}

.about-content h2 .highlight {
    color: var(--accent);
}

.about-text {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 25px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.experience-badge h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
}

.experience-badge p {
    font-size: 13px;
    opacity: 0.9;
}

.about-features {
    margin-top: 40px;
    display: grid;
    gap: 24px;
}

.about-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ===================================
   Portfolio Masonry Grid
   =================================== */
.portfolio {
    padding: 120px 0;
    background: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    height: 400px;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.15) rotate(2deg);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    font-size: 14px;
    opacity: 0.8;
}

/* ===================================
   Contact with Modern Form
   =================================== */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-family: var(--font-main);
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(212, 168, 83, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-card p {
    color: #666;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* ===================================
   Professional Footer
   =================================== */
.main-footer {
    background: #000000;
    color: #ffffff;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

.footer-cta {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-text h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 10px;
    max-width: 600px;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-subtitle::before,
.cta-subtitle::after {
    content: '';
    height: 1px;
    width: 30px;
    background: rgba(255, 255, 255, 0.3);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: conic-gradient(transparent, transparent, transparent, #ffffff);
    transform: translate(-50%, -50%);
    animation: rotate-border 4s linear infinite;
    z-index: -2;
    border-radius: 50px;
}

.btn-cta::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--primary);
    border-radius: 48px;
    z-index: -1;
    transition: background 0.3s ease;
}

/* Gradient Shine Effect on Hover */
.btn-cta:hover::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: linear-gradient(135deg,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 25%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.1) 75%,
            transparent 100%);
    transform: skewX(-20deg);
    animation: shine 0.8s ease-in-out;
    z-index: 10;
    pointer-events: none;
}

@keyframes shine {
    0% {
        top: -100%;
        left: -10%;
    }

    100% {
        top: 100%;
        left: 110%;
    }
}

.btn-cta:hover {
    background: var(--primary-dark);
    color: #000;
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 168, 83, 0.3);
}

.btn-cta:hover::after {
    background: var(--primary-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo h2 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 5px;
}

.brand-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 25px;
}

.brand-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #001220;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    align-items: flex-start;
}

.footer-copyright {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ===================================
   Hero Quick Contact Form & Social
   =================================== */
.hero-right-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 380px;
    margin-left: auto;
}

.hero-quick-form {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.quick-form-group {
    margin-bottom: 20px;
}

.quick-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    text-align: left;
}

.quick-form-group input,
.quick-form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease;
}

.btn-send-message {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-send-message:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: -10px;
    padding: 15px 0;
    width: 100%;
}

.hero-social-icon {
    width: 60px;
    height: 60px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: conic-gradient(transparent, transparent, transparent, #D4A853);
    transform: translate(-50%, -50%);
    animation: rotate-border 4s linear infinite;
    z-index: -2;
}

.hero-social-icon::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #000;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

.hero-social-icon svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.hero-social-icon:hover {
    transform: translateY(-12px) scale(1.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    color: white;
    /* Keep white icons against colored backgrounds */
}

.hero-social-icon:hover svg {
    transform: scale(1.1);
}

/* Original Brand Colors on Hover */
.hero-social-icon:nth-child(1):hover::after {
    background: #1877F2;
    /* Facebook Blue */
}

.hero-social-icon:nth-child(2):hover::after {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    /* Instagram Gradient */
}

.hero-social-icon:nth-child(3):hover::after {
    background: #FF0000;
    /* YouTube Red */
}

.hero-social-icon:nth-child(4):hover::after {
    background: #000000;
    /* TikTok Black */
    box-shadow: inset 0 0 10px rgba(0, 242, 234, 0.5), inset 0 0 10px rgba(255, 0, 80, 0.5);
    /* TikTok Cyber Glow */
}



/* ===================================
   Map Section
   =================================== */
.map-section {
    width: 100%;
    line-height: 0;
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 450px;
}

/* ===================================
   Clients Section (Logo Slider)
   =================================== */
.clients-section {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.clients-slider-wrapper {
    width: 100%;
    overflow: hidden;
    /* Hide scrollbar */
    padding: 20px 0;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 0 20px;
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
        /* Half of total width including half gap */
    }
}

/* Pause on hover */
.clients-slider-wrapper:hover .clients-track {
    animation-play-state: paused;
}

/* ===================================
   Google Reviews Section
   =================================== */
.reviews-section {
    background: #000;
}

.reviews-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.reviews-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: reviewsScroll 60s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes reviewsScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    width: 400px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
}

.review-meta h4 {
    font-size: 18px;
    color: #fff;
    margin: 0 0 5px 0;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating .star {
    font-size: 14px;
    color: #444;
}

.review-rating .star.filled {
    color: #fbbc05;
}

.google-logo-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.review-body p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.review-date {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .review-card {
        width: 300px;
        padding: 20px;
    }
}

.client-card {
    min-width: 200px;
    height: 150px;
    background: white;
    border: 1px solid #eee;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.client-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.client-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===================================
   Premium Info Section (Seven Aura Style)
   =================================== */
.premium-info-section {
    padding: 100px 0;
    background: #f1f5f9;
    overflow: hidden;
}

.premium-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.premium-info-images {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-back {
    position: absolute;
    top: 50px;
    left: 0;
    width: 80%;
    height: 70%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-front {
    position: absolute;
    bottom: 50px;
    right: 20px;
    width: 70%;
    height: 70%;
    object-fit: cover;
    border-radius: 15px;
    border: 15px solid #ffffff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.premium-info-content {
    background: #ffffff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 5;
}

.premium-info-subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.premium-info-subtitle::before,
.premium-info-subtitle::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #e0e0e0;
}

.premium-info-title {
    font-size: 46px;
    line-height: 1.2;
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.premium-info-desc {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
}

.premium-info-desc b {
    color: var(--dark);
    font-weight: 700;
}

.premium-info-bottom {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.experience-card {
    background: #f8f9fa;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    min-width: 200px;
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.experience-card .icon-box {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.experience-card h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
}

.experience-card p {
    font-size: 14px;
    color: #777;
    margin: 0;
    line-height: 1.4;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 18px;
}

.feature-list .check-icon {
    width: 24px;
    height: 24px;
    background: #0f172a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.btn-dark-round {
    display: inline-block;
    padding: 18px 45px;
    background: #0f172a;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
}

.btn-dark-round:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 168, 83, 0.3);
    color: white;
}

/* ===================================
   Achievements Section (Dark Theme)
   =================================== */
.achievements-section {
    padding: 100px 0;
    background: #000000;
    color: white;
}

.achievements-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    align-items: center;
}

.achievements-left h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.achievements-left p {
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 35px;
}

.btn-white {
    display: inline-block;
    padding: 18px 40px;
    background: white;
    color: #0f172a;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    background: var(--primary);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 30px;
}

.stat-box {
    text-align: center;
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.stat-box h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
    color: white;
}

.stat-box p {
    font-size: 14px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.stat-box hr {
    width: 30px;
    border: none;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 15px auto;
}

/* ===================================
   Responsive Adjustments
   =================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 56px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-right-column {
        max-width: 100%;
        margin-top: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: 100%;
        top: 0;
        border-radius: 0;
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}