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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: block;
    text-decoration: none;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo a:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2c5aa0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2c5aa0;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 80vh;
}

.hero-left {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 2rem 0;
}

.hero-image {
    max-width: 180%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    margin-bottom: -200px;
    margin-right: -150px;
}

.hero-logo img {
    height: 120px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.4;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero p:last-of-type {
    margin-bottom: 2rem;
}

.hero-image {
    max-width: 180%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}



.cta-button {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5aa0;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.about h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #ff6b35;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.about-text p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.about-text p:last-of-type {
    margin-bottom: 1.5rem;
}

.about-text h4 {
    color: #2c5aa0;
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
}

.services-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.services-list li {
    display: flex;
    align-items: center;
    padding: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.services-list li:hover {
    transform: translateY(-2px);
}

.services-list i {
    color: #2c5aa0;
    margin-right: 10px;
    font-size: 1.2rem;
}

.about-image {
    text-align: center;
    animation: slideInRight 1s ease-out 0.6s both;
}

.about-image img,
.about-image iframe,
.about-image video {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image iframe,
.about-image video {
    height: 500px;
    width: 100%;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: white;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5aa0;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.gallery h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #ff6b35;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 100px 0 50px 0;
    background: #f8f9fa;
}

/* Map Section */
.map-section {
    padding: 50px 0 0 0;
    background: white;
}

.contact h2,
.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5aa0;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.contact h2::after,
.map-section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #ff6b35;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.2s both;
    align-items: start;
}

.map-fullwidth {
    width: 100%;
    margin-top: 2rem;
}

.map-fullwidth iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

.contact-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    border: 1px solid rgba(44, 90, 160, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: slideInLeft 1s ease-out both;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-item:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #ff6b35);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.contact-item h3 {
    color: #2c5aa0;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-left: 2rem;
}

.contact-item h3::before {
    content: '📍';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.contact-details p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(44, 90, 160, 0.1);
    transition: all 0.3s ease;
}

.contact-details p:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-details p:hover {
    background: rgba(44, 90, 160, 0.05);
    padding-left: 1rem;
    border-radius: 8px;
    margin: 0.5rem -1rem;
    padding-right: 1rem;
}

.contact-details i {
    color: #ff6b35;
    margin-right: 15px;
    font-size: 1.3rem;
    min-width: 20px;
    margin-top: 2px;
}

.contact-details a {
    color: #2c5aa0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

.contact-map {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-map h3 {
    color: #2c5aa0;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    border: none;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.submit-btn {
    background: #2c5aa0;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #1e3a5f;
}

/* Footer */
.footer {
    background: #2c5aa0;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

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

.footer-social h4 {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.facebook:hover {
    background: #166fe5;
    border-color: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #e0852e 0%, #d55a2f 25%, #d1233a 50%, #c11f5a 75%, #b0157a 100%);
    border-color: #bc1888;
}

.social-link.tiktok {
    background: #000000;
}

.social-link.tiktok:hover {
    background: #333333;
    border-color: #000000;
}

.social-link.twitter {
    background: #000000;
}

.social-link.twitter:hover {
    background: #333333;
    border-color: #000000;
}

.footer-text {
    text-align: right;
}

.footer-text p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1.5rem;
        max-width: 100%;
    }

    .hero {
        padding: 80px 0 40px 0;
        min-height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #1a2a3f 0%, rgba(30,58,95,0.6) 100%), url('images/banar-img-01.png') center/cover no-repeat;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
        z-index: 1;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
        background: transparent;
        border-radius: 0;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
        position: relative;
        z-index: 2;
        max-width: 100%;
    }

    .hero-left {
        text-align: center;
        width: 100%;
    }

    .hero h1 {
        font-size: 1.9rem;
        margin-bottom: 1rem;
        line-height: 1.25;
        text-align: center;
        font-weight: 800;
        color: #ffffff;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.55;
        text-align: center;
        opacity: 0.98;
        color: #f8f9fb;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
    }

    .hero p:last-of-type {
        margin-bottom: 2rem;
    }

    .hero-logo img {
        display: block;
        height: 100px;
        margin-bottom: 1.5rem;
        filter: brightness(0) invert(1);
        animation: logoFloat 3s ease-in-out infinite;
    }

    /* Hide hero banner logo on mobile */
    .hero-logo { display: none !important; }

    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
        margin: 0 auto;
        border-radius: 30px;
        font-weight: 700;
        display: block;
        width: fit-content;
        background: linear-gradient(45deg, #ff7a45, #ff9c57);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
        transition: transform 0.2s ease, box-shadow 0.3s ease;
        position: relative;
        z-index: 2;
    }

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    }

    @keyframes logoFloat {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    .hero-image {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image iframe,
    .about-image video {
        height: 350px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .contact-item {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
        height: auto;
    }

    .contact-item h3 {
        font-size: 1.4rem;
        padding-left: 1.5rem;
    }

    .contact-details p {
        font-size: 1rem;
        padding: 0.6rem 0;
    }

    .map-fullwidth iframe {
        height: 350px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

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

    .social-links {
        gap: 0.8rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .whatsapp-widget {
        bottom: 10px;
        right: 10px;
    }

    .whatsapp-button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .whatsapp-tooltip {
        font-size: 10px;
        padding: 4px 6px;
    }



    .services-list {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0 30px 0;
        min-height: 60vh;
        background: url('images/banar-img-01.png') center/cover no-repeat fixed, linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    }

    .hero-container {
        padding: 25px 15px;
        border-radius: 20px;
        margin: 0 15px;
        max-width: 95%;
    }

    .hero h1 {
        font-size: 1.6rem;
        margin-bottom: 0.9rem;
        line-height: 1.25;
        text-align: center;
        font-weight: 800;
        color: #ffffff;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 0.9rem;
        line-height: 1.55;
        text-align: center;
        opacity: 0.98;
        color: #f8f9fb;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
    }

    .hero p:last-of-type {
        margin-bottom: 1.5rem;
    }

    .hero-logo img {
        height: 80px;
        margin-bottom: 1.2rem;
    }

    /* Ensure hero banner logo stays hidden on very small screens */
    .hero-logo { display: none !important; }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
        border-radius: 25px;
        font-weight: 600;
        display: block;
        width: fit-content;
        margin: 0 auto;
    }

    .about h2,
    .gallery h2,
    .contact h2 {
        font-size: 2rem;
    }

    .contact-item,
    .contact-map {
        padding: 1.5rem;
    }

    .contact-map iframe {
        height: 300px;
    }
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    visibility: visible;
    opacity: 1;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    border: 3px solid white;
}

.whatsapp-button:hover {
    background: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border: 5px solid transparent;
    border-top-color: #333;
}

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    height: 120px;
    width: auto;
    margin-bottom: 2rem;
    animation: logoPulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .loading-logo {
        height: 80px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .loading-logo {
        height: 60px;
        margin-bottom: 1rem;
    }
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

.about-content,
.gallery-grid,
.contact-content {
    animation: fadeInUp 0.8s ease-out;
}



/* About: iki sütun metin + altta video (eklenen) */
.about .container { max-width: 1200px; }

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* iki sütun */
    gap: 2rem 3rem;
    align-items: start;
}

.about-col h3 { font-size: 1.375rem; margin-bottom: 0.75rem; color: #2c5aa0; }
.about-col h4 { margin-top: 1.5rem; margin-bottom: 0.5rem; font-size: 1.1rem; color: #2c5aa0; }
.about-col p { margin: 0.5rem 0 0.75rem; line-height: 1.7; }

/* Var olan .services-list ile çakışmayı önle: görünümü koru */
.about-layout .services-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
}

/* Video bloğu: altta, iki sütunu kaplar */
.about-video-block { grid-column: 1 / -1; margin: 0; }
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* oran koruma */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.about-video { width: 100%; height: 100%; display: block; object-fit: cover; }
.video-caption { font-size: 0.9rem; color: #666; margin-top: 0.5rem; }

/* Video Widget Styles */
.video-widget {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    background: #0b0b0b;
    isolation: isolate;
}
.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.9) contrast(1.05) brightness(0.95);
    transition: transform 0.5s ease, filter 0.4s ease;
}
.video-widget::after {
    content: '';
    position: absolute;
    inset: 0;
    /* vignette a bit stronger, with center slightly left like sample */
    background:
      radial-gradient(110% 80% at 35% 50%, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.65) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0) 40%);
    pointer-events: none;
}
.video-play-btn {
    position: absolute;
    top: 50%; left: 42%; transform: translate(-50%, -50%);
    width: 82px; height: 82px;
    border-radius: 50%;
    border: none;
    background: #d62b2b; /* solid red like sample */
    box-shadow: 0 12px 28px rgba(0,0,0,0.45);
    display: grid; place-items: center;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease;
}
/* white double ring */
.video-play-btn::before, .video-play-btn::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.85);
}
.video-play-btn::after {
    inset: -16px;
    border: 3px solid rgba(255,255,255,0.35);
}
.video-play-btn:hover { transform: translate(-50%, -50%) scale(1.06); box-shadow: 0 16px 34px rgba(0,0,0,0.5); }
.video-play-btn:active { transform: translate(-50%, -50%) scale(0.97); }
.play-icon {
    width: 0; height: 0;
    border-left: 22px solid #fff;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 6px;
}
.video-badge {
    position: absolute; left: 18px; bottom: 18px;
    background: rgba(18,18,18,0.85);
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    letter-spacing: .2px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
.video-widget:hover .video-thumb { transform: scale(1.04); filter: saturate(1) contrast(1.1) brightness(1); }

/* Modal for original-size video */
.video-modal {
    position: fixed; inset: 0; background: rgba(0,0,0,0.85);
    display: flex; align-items: center; justify-content: center;
    padding: 24px; z-index: 3000; opacity: 0; transition: opacity .25s ease;
}
.video-modal.active { opacity: 1; }
.video-modal .modal-frame {
    position: relative; background: #000; border-radius: 12px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.video-modal .modal-close {
    position: absolute; top: -44px; right: 0; color: #fff; font-size: 32px; cursor: pointer;
}
.video-modal video {
    display: block; max-width: 100%; max-height: 85vh; height: auto; width: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .about-layout { grid-template-columns: 1fr; } /* tek sütun */
    .about-layout .services-list { grid-template-columns: 1fr; }
}
