:root {
    --bg-dark: #050a15;
    --bg-card: #0d1626;
    --bg-header: rgba(5, 10, 21, 0.9);
    --primary: #007bff;
    --primary-glow: rgba(0, 123, 255, 0.5);
    --success: #25d366;
    --success-glow: rgba(37, 211, 102, 0.4);
    --text-main: #e0e6ed;
    --text-muted: #a0aec0;
    --accent: #00d4ff;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

section {
    position: relative;
    overflow: hidden;
}

.section-padding {
    padding: 40px 0;
}

.section-padding-small {
    padding: 10px 0 20px 0;
}

.services-section {
    padding-top: 20px !important;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header & Nav */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-header);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
}

.text-logo {
    font-size: 2rem;
    font-weight: 800;
    /* Bold 'I' */
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.white-bold {
    font-weight: 800;
    color: var(--white);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.btn-ev {
    background-color: #012b20;
    /* Even Darker Green for better contrast */
    padding: 10px 22px;
    border-radius: 50px;
    color: var(--white) !important;
    /* White text */
    border: 1px solid #10b981;
    font-weight: 700 !important;
    /* Bold text */
    text-transform: uppercase;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-ev:hover {
    background-color: #10b981;
    color: #064e3b !important;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(5, 10, 21, 0.9), rgba(5, 10, 21, 0.7));
    z-index: -1;
}

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

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.subheadline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.address {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    background-color: #0069d9;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-success {
    background-color: var(--success);
    color: white;
    box-shadow: 0 4px 15px var(--success-glow);
}

.btn-success:hover {
    background-color: #21bd5b;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px var(--success-glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-review {
    background: linear-gradient(135deg, #be185d 0%, #6366f1 100%);
    color: var(--white);
    padding: 12px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(190, 24, 93, 0.4);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-review:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
    color: var(--white);
    background: linear-gradient(135deg, #db2777 0%, #4f46e5 100%);
}

.btn-review i {
    color: #ffd700;
    /* Gold star for contrast */
    font-size: 1.4rem;
}

/* Featured Image Section */
.featured-image-section {
    padding: 20px 0 30px 0;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .featured-image-section {
        padding: 0px 0 20px 0;
    }
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 0.6fr;
    /* Ratio adjusted to significantly shrink the 2nd image */
    gap: 30px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.featured-img-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    animation: floating 6s ease-in-out infinite;
}

.logo-wrap {
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    /* Minimized padding */
}

.logo-wrap img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 1px 3px rgba(0, 212, 255, 0.05));
    animation: logo-pulse 4s ease-in-out infinite;
}

.photo-wrap {
    height: auto;
    max-height: 280px;
    /* Restricting height to make it smaller than the logo block */
    display: flex;
}

.photo-wrap img {
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .logo-wrap {
        padding: 5px;
    }
}

/* Logo Display Section */
.logo-display-wrapper {
    max-width: 500px;
    margin: 40px auto;
    /* Added margin for better separation */
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.logo-display-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 100%;
    height: 200%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: rotate(30deg);
    animation: light-shine 4s ease-in-out infinite;
}

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

    50%,
    100% {
        left: 200%;
    }
}

.display-logo {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 1px 3px rgba(0, 212, 255, 0.05));
    animation: logo-pulse 4s ease-in-out infinite;
    transition: var(--transition);
}

.display-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 25px rgba(0, 212, 255, 0.4));
}

@keyframes logo-pulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 1px 3px rgba(0, 212, 255, 0.03));
    }

    50% {
        transform: scale(1.01);
        filter: drop-shadow(0 2px 5px rgba(0, 212, 255, 0.08));
    }
}

@media (max-width: 768px) {
    .logo-display-wrapper {
        max-width: 300px;
        padding: 15px;
        margin: 20px auto;
    }
}

.featured-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

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

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

/* Gallery Video Styles */
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover video {
    transform: scale(1.1);
}

.gallery-item.video-item::after {
    content: '\f144';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    /* Reduced from 280px */
    gap: 20px;
    justify-content: center;
}

.service-card {
    background: var(--bg-card);
    padding: 25px 15px;
    /* Further reduced */
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    text-align: center;
    max-width: 280px;
    /* Reduced from 350px */
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.service-card i {
    font-size: 2rem;
    /* Reduced from 2.5rem */
    color: var(--accent);
}

.service-card h3 {
    font-size: 1.25rem;
    /* Reduced from 1.5rem */
    margin: 10px 0;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    /* Slightly smaller text */
}

/* Why Us Section */
.why-us-wrapper {
    background: var(--bg-card);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    position: relative;
}

.why-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
}

.why-list li i {
    color: var(--success);
    font-size: 1.4rem;
    margin-top: 3px;
}

.pricing-note {
    margin-top: 50px;
    text-align: center;
    padding: 20px;
    border-top: 1px dashed var(--glass-border);
}

.note-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    font-style: italic;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    /* More items per row, smaller size */
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    background: var(--bg-card);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 123, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Owner Section */
.owner-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.owner-img {
    flex: 0 0 220px;
    /* Reduced from 300px/250px */
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
}

.owner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owner-info h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.owner-info .role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-details {
    list-style: none;
    margin-bottom: 30px;
}

.contact-details li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-details i {
    color: var(--primary);
    width: 20px;
}

.owner-ctas {
    display: flex;
    gap: 15px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Location Section */
.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    background: var(--bg-card);
    padding: 20px;
    border-radius: 30px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
}

.address-box {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.address-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.address-box p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    margin-top: 30px;
    justify-content: center;
}

/* Footer */
.main-footer {
    background: #02060e;
    padding: 80px 0 120px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-grid h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
    color: var(--white);
}

.footer-links ul,
.footer-contact p {
    list-style: none;
    color: var(--text-muted);
}

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

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.developer-note {
    margin-top: 15px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.developer-note a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.developer-note a:hover {
    text-decoration: underline;
}

/* Mobile CTA Bar */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    background: var(--bg-header);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--glass-border);
    z-index: 999;
}

.cta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 5px;
    text-decoration: none;
    color: var(--white);
    font-size: 0.75rem;
    gap: 5px;
}

.cta-item i {
    font-size: 1.3rem;
}

.cta-item.call {
    background: var(--primary);
}

.cta-item.whatsapp {
    background: var(--success);
}

.cta-item.directions {
    background: var(--bg-card);
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
    transition: var(--transition);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 10px;
    object-fit: contain;
    animation: zoom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .owner-card {
        flex-direction: column;
        text-align: center;
    }

    .owner-img {
        flex: 0 0 250px;
        width: 250px;
        height: 250px;
    }

    .location-wrapper {
        grid-template-columns: 1fr;
    }

    .address-box {
        padding: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 30px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: radial-gradient(circle at center, rgba(13, 22, 38, 0.98), rgba(5, 10, 21, 1));
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: all 0.6s cubic-bezier(0.85, 0, 0.15, 1);
        clip-path: circle(0% at 90% 5%);
        z-index: 999;
        pointer-events: none;
    }

    .nav-links.active {
        clip-path: circle(150% at 90% 5%);
        pointer-events: all;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger links */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-links.active li:nth-child(7) {
        transition-delay: 0.4s;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger.toggle span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.toggle span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .mobile-cta-bar {
        display: grid;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .featured-img-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .why-us-wrapper {
        padding: 30px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}