<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

/* Preloader &amp; Page Transitions */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo-svg {
    animation: rotate 2s linear infinite;
}

.outer-circle {
    animation: dash 1.5s ease-in-out infinite;
    stroke-dasharray: 126;
    stroke-dashoffset: 126;
}

.inner-circle {
    animation: dash 1.5s ease-in-out infinite reverse;
    stroke-dasharray: 63;
    stroke-dashoffset: 63;
}

.loading-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #fff;
    letter-spacing: 2px;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Page Transition Effects */
body {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
    animation-delay: 0.5s;
}

.content-wrapper {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: 1s;
}

/* Animations */
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 126;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -126;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@font-face {
    font-family: 'SimpleMicheal';
    src: url('../fonts/simplemicheal.ttf') format('truetype');
}

body {
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    color: #fff;
    font-family: 'Inter', sans-serif;
    min-height: 100%;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

header {
    border: solid 1px rgba(255, 255, 255, 0.263);
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    transform: translateX(-50%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: fixed;
    width: auto;
    top: 20px;
    left: 50%;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    align-items: center;
    padding: 0.8rem 2.5rem;
    gap: 2rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover {
    transform: scale(1.1);
}

.main-logo {
    height: 30px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover .main-logo {
    content: url('../img/mainlogocolor.svg');
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.logo:hover {
    transform: scale(1.1);
}

.logo img {
    height: 30px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo:hover img[src*="mainlogo"] {
    content: url('../img/mainlogocolor.svg');
}

nav ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.6rem 0;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}


nav ul li a:hover {
    color: #ff3434;
    font-weight: 500;
}

.studio-title {
    font-family: 'Inter', sans-serif;
    font-size: 128px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-top: 120px;
    padding: 40px 0 0 0;
    z-index: 1;
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #878787;
    text-align: center;
    margin-bottom: 50px;
}

:root {
    --slide-speed: 40s;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.slider {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.slider::before,
.slider::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.slider::before {
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8), transparent);
}

.slider::after {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.8), transparent);
}

.list {
    display: flex;
    gap: 20px;
    padding: 10px;
    transform: translateX(0);
}

.list:hover {
    --slide-speed: 120s;
}

.list img {
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 12px;
    width: 660px;
    height: 600px;
}

.content {
    margin-top: 100px;
}

.sub-title {
    font-family: 'Inter', sans-serif;
    font-size: 70px;
    font-weight: 600;
    color: #fff;
    text-align: LEFT;
    margin-top: 40px; 
    padding: 20px;
    z-index: 1;
    margin-left: 100px;
}

/* Webkit browsers (Chrome, Safari, newer Edge) */
::-webkit-scrollbar {
    width: 12px;
    background-color: transparent;
    border-radius: 20px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-radius: 20px;
    margin: 5px 0;
    border: 2px solid #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #333, #444);
    border-radius: 20px;
    border: 3px solid #0a0a0a;
    min-height: 50px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #444, #555);
    border: 2px solid #0a0a0a;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #444 #0a0a0a;
}

.modern-footer {
    background-color: #0a0a0a;
    color: #fff;
    padding: 80px 0 20px;
    margin-top: 100px;
    position: relative;
}

/* Adding glowing top border */
.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(9, 56, 106, 0.3),
        rgb(8, 86, 170),
        rgba(9, 56, 106, 0.3),
        transparent
    );
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-about {
    color: #888;
    line-height: 1.6;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #0855aa;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    color: #888;
    transition: color 0.3s ease;
}

.footer-section ul li:hover {
    color: #fff;
}

.footer-section a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff0000;
}

.footer-social {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #222;
    margin-top: 60px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    color: #fff;
    font-size: 18px;
}

.social-icon:hover {
    background: rgba(255, 52, 52, 0.1);
    border-color: #ff3434;
    transform: translateY(-3px);
    color: #ff3434;
}

.social-icon i {
    transition: all 0.3s ease;
}

.social-link {
    color: #888;
    text-decoration: none;
    margin: 0 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-link:hover {
    color: #ff3434;
}

.social-link i {
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    header {
        width: 90%;
    }

    nav {
        padding: 0.8rem 1.5rem;
    }

    .logo img {
        height: 25px;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav ul li a {
        font-size: 1.1rem;
    }

    .studio-title {
        font-size: 64px;
        margin-top: 160px;
        padding: 40px 0 0 0;
    }

    .tagline {
        font-size: 16px;
        margin-bottom: 60px;
        padding: 0 20px;
    }

    .sub-title {
        font-size: 40px;
        margin-left: 20px;
        padding: 30px 20px;
        margin-top: 60px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
        gap: 15px;
    }

    .service-box img {
        height: 300px;
    }

    .carousel-container {
        padding: 0 20px;
    }

    .location-card {
        width: 100%;
        max-width: 400px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        width: 120px;
        margin-bottom: 15px;
    }

    /* Slider Mobile Styles */
    .slider {
        margin: 0;
        width: 100vw;
    }

    .slider::before,
    .slider::after {
        width: 50px;
    }

    .list {
        gap: 15px;
        padding: 10px;
    }

    .list img {
        width: calc(100vw - 40px);
        height: 400px;
    }
}

@media (max-width: 576px) {
    .studio-title {
        font-size: 48px;
        margin-top: 180px;
        padding: 40px 0 0 0;
    }

    .tagline {
        font-size: 14px;
        margin-bottom: 80px;
        padding: 0 20px;
    }

    .sub-title {
        font-size: 32px;
        margin-left: 15px;
        padding: 40px 20px;
        margin-top: 80px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .service-box img {
        height: 250px;
    }

    /* Slider Small Mobile Styles */
    .slider {
        margin: 0;
    }

    .slider::before,
    .slider::after {
        width: 30px;
    }

    .list {
        gap: 10px;
    }

    .list img {
        width: calc(100vw - 30px);
        height: 350px;
    }

    .carousel-container {
        padding: 0 15px;
    }

    .location-card {
        width: 100%;
        max-width: 100%;
    }

    .card-map {
        height: 200px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-section:first-child {
        grid-column: 1;
        order: -1;
        margin-bottom: 20px;
    }

    .footer-logo {
        width: 100px;
    }

    .footer-about {
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        padding: 30px 0;
    }

    .social-link {
        margin: 0 10px;
        font-size: 14px;
    }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 1rem;
}

@media (max-width: 768px) {
    header {
        width: 90%;
    }

    nav {
        padding: 0.8rem 1.5rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 200px;
        background: rgba(0, 0, 0, 0.95);
        padding: 15px;
        flex-direction: column;
        gap: 10px;
        border-radius: 10px;
        margin-top: 10px;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        font-size: 1rem;
        display: block;
        padding: 8px 15px;
        color: rgba(255, 255, 255, 0.9);
    }

    nav ul li a:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
    }
}

html, body {
    box-sizing: border-box;
    overflow-x: hidden;
    max-width: 100vw;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 100px;
    margin: 40px 0;
}

.service-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.service-box img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-box:hover img {
    transform: scale(1.1);
}

.service-content {
    padding: 20px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.575) 50%,
        rgba(0, 0, 0, 0) 100%
    );
    position: absolute;
    bottom: 0;
    width: 100%;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.service-box:hover .service-content {
    transform: translateY(0);
}

.service-content h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-content p {
    color: #888;
    font-size: 0.9rem;
}

.location-carousel {
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    padding: 0 100px;
}

.carousel-track {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.location-card {
    width: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-10px);
}

.card-map {
    height: 250px;
    overflow: hidden;
}

.card-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.card-content {
    padding: 20px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95),
        rgba(0, 0, 0, 0.8)
    );
}

.card-content h3 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.card-content p {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 50px;
        gap: 15px;
    }

    .studio-title {
        font-size: 96px;
    }

    .sub-title {
        font-size: 50px;
        margin-left: 50px;
    }

    .carousel-container {
        padding: 0 50px;
    }

    .location-card {
        width: 350px;
    }
}

@media (max-width: 576px) {
    .slider {
        margin: 0 -15px;
    }

    .list {
        height: 300px;
        padding: 10px;
        gap: 10px;
    }

    .list img {
        width: 250px;
    }

    .slider::before,
    .slider::after {
        width: 30px;
    }

    .studio-title {
        font-size: 48px;
        margin-top: 50px;
    }

    .tagline {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .sub-title {
        font-size: 32px;
        margin-left: 15px;
        padding: 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .service-box img {
        height: 250px;
    }

    .list img {
        width: 100%;
        height: 400px;
    }

    .carousel-container {
        padding: 0 15px;
    }

    .location-card {
        width: 100%;
        max-width: 100%;
    }

    .card-map {
        height: 200px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-section:first-child {
        grid-column: 1;
        order: -1;
        margin-bottom: 20px;
    }

    .footer-logo {
        width: 100px;
    }

    .footer-about {
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        padding: 30px 0;
    }

    .social-link {
        margin: 0 10px;
        font-size: 14px;
    }
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    will-change: transform;
}

.cursor-follower {
    width: 8px;
    height: 8px;
    background: #ff3434;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transition: all 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translate(-50%, -50%);
    will-change: transform;
}

/* Cursor hover effects */
.cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: rgba(255, 52, 52, 0.1);
    border-color: #ff3434;
    mix-blend-mode: normal;
}

.cursor-follower.hover {
    transform: translate(-50%, -50%) scale(0.5);
    background: #ff3434;
}

/* Add hover class for ALL interactive elements */
a, 
button, 
.service-box, 
.location-card, 
.slider,
.footer-section li,
.footer-social a,
.mobile-menu-btn,
.logo,
nav ul li a,
.studio-title,
.tagline,
.sub-title,
.service-content,
.card-content,
img {
    cursor: none !important;
}

/* Special handling for iframes */
.card-map iframe {
    pointer-events: none !important;
    cursor: none !important;
}

/* Hide default cursor */
* {
    cursor: none !important;
}

/* Hide cursor on mobile */
@media (max-width: 768px) {
    .cursor, 
    .cursor-follower {
        display: none !important;
    }
    
    * {
        cursor: auto !important;
    }

    .card-map iframe {
        pointer-events: auto !important;
        cursor: auto !important;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    padding: 0 20px;
}

.contact-info {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.contact-info &gt; p {
    color: #888;
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-content h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 18px;
}

.info-content p {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    color: #fff;
    font-size: 18px;
}

.social-icon:hover {
    background: rgba(255, 52, 52, 0.1);
    border-color: #ff3434;
    transform: translateY(-3px);
    color: #ff3434;
}

.social-icon i {
    transition: all 0.3s ease;
}

.social-link {
    color: #888;
    text-decoration: none;
    margin: 0 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-link:hover {
    color: #ff3434;
}

.social-link i {
    font-size: 18px;
}

.contact-form {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.form-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #888;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff3434;
    background: rgba(255, 52, 52, 0.05);
    outline: none;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:valid ~ label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background: #0a0a0a;
    padding: 0 5px;
    color: #ff3434;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #ff3434;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 52, 52, 0.3);
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

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

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

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

    .contact-info,
    .contact-form {
        padding: 30px;
    }

    .info-items {
        gap: 20px;
    }

    .info-icon {
        padding: 12px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-info h3 {
        font-size: 24px;
    }

    .info-content h4 {
        font-size: 16px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }

    .form-group label {
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 14px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 52, 52, 0.1);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question span {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

.faq-question i {
    color: #ff3434;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #888;
    line-height: 1.6;
    font-size: 16px;
}

.faq-item.active {
    background: rgba(255, 52, 52, 0.05);
    border-color: rgba(255, 52, 52, 0.2);
}

.faq-item.active .faq-question {
    border-bottom: 1px solid rgba(255, 52, 52, 0.2);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

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

    .faq-question span {
        font-size: 16px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 14px;
    }
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
}

.back-to-top,
.whatsapp-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    transition: all 0.3s ease;
}

.back-to-top {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.whatsapp-btn {
    position: absolute;
    bottom: 0;
    right: 0;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top.show + .whatsapp-btn {
    transform: translateY(-43px);
}

.back-to-top:hover,
.whatsapp-btn:hover {
    transform: scale(1.15);
}

.back-to-top.show + .whatsapp-btn:hover {
    transform: translateY(-43px) scale(1.15);
}

.back-to-top i,
.whatsapp-btn i {
    color: #fff;
    font-size: 14px;
}

@media (max-width: 768px) {
    .floating-buttons {
        right: 15px;
        bottom: 15px;
        gap: 8px;
    }
}

/* --- Improved Locations Section Alignment &amp; Premium Look --- */
.locations-partition-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-start;
    margin: 40px 0 0 0;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.locations-partition {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}

.partition-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 1px;
    padding-left: 8px;
}

.location-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.location-card.glass {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 340px;
    background: rgba(255,255,255,0.10);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.13);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255,255,255,0.15);
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    overflow: hidden;
}
.location-card.glass:hover {
    box-shadow: 0 16px 40px 0 rgba(31,38,135,0.22);
    border: 1.5px solid #ff3434;
    transform: translateY(-4px) scale(1.01);
}

.card-map {
    width: 100%;
    height: 200px;
    background: #181818;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}
.card-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.card-content {
    flex: 1 1 auto;
    padding: 22px 20px 18px 20px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92) 80%,
        rgba(0, 0, 0, 0.7) 100%
    );
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-card .card-content h4 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.location-card .card-content p {
    color: #bdbdbd;
    font-size: 0.98rem;
    margin-bottom: 2px;
}
.location-phone {
    color: #ff3434;
    font-weight: 500;
    font-size: 1rem;
    margin-top: 2px;
}

.locations-partition.jeddah .location-cards-grid {
    gap: 0;
}

@media (max-width: 1024px) {
    .locations-partition-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .locations-partition {
        max-width: 100%;
    }
}

@media (max-width: 700px) {
    .locations-partition-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px 0 0 0;
        padding: 0 4px;
    }
    .locations-partition {
        min-width: 0;
        padding: 0;
    }
    .partition-title {
        font-size: 1.2rem;
        padding-left: 2px;
    }
    .location-card .card-content h4 {
        font-size: 1rem;
    }
    .location-card .card-content p, .location-phone {
        font-size: 0.92rem;
    }
    .card-map {
        height: 160px;
    }
    .location-card.glass {
        min-height: 220px;
    }
}

/* --- Locations Section Final Polish --- */

/* 1. Reduce top margin above locations section */
.locations {
    margin-top: 30px;
}

/* 2. Add margin-bottom to sub-title in locations section */
.locations .sub-title {
    margin-bottom: 32px;
}

/* 3. Responsive: stack columns on screens &lt;900px */
@media (max-width: 900px) {
    .locations-partition-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 8px;
    }
}

/* 4 &amp; 6. Card map fallback and min height */
.card-map {
    background: linear-gradient(135deg, #181818 60%, #232323 100%);
    min-height: 180px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-map iframe {
    min-height: 180px;
    background: transparent;
}

/* 5. Subtle border and shadow for glass cards */
.location-card.glass {
    border: 1.5px solid rgba(255,255,255,0.18);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.16), 0 1.5px 8px 0 rgba(0,0,0,0.10);
}
.location-card.glass:hover {
    border: 1.5px solid #ff3434;
    box-shadow: 0 16px 40px 0 rgba(31,38,135,0.22), 0 2px 12px 0 rgba(0,0,0,0.13);
}

/* 7. More padding for breathing room */
.locations-partition-wrapper {
    padding-bottom: 32px;
}

/* 8. Balance vertical spacing between columns */
.locations-partition {
    justify-content: flex-start;
    align-items: stretch;
}

/* --- Kerala Locations Grid Layout --- */
.locations-partition.kerala .location-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
@media (max-width: 900px) {
    .locations-partition.kerala .location-cards-grid {
        grid-template-columns: 1fr;
    }
}

html, body {
    box-sizing: border-box;
    overflow-x: hidden;
    max-width: 100vw;
}

.locations-partition-wrapper,
.location-cards-grid {
    max-width: 100vw;
    width: 100%;
    min-width: 0;
}

.location-card, .card-content {
    word-break: break-word;
}

@media (max-width: 600px) {
  .locations-cards-grid {
    margin: 0 !important;
    padding: 0 2vw !important;
    width: 100vw !important;
    max-width: 100vw !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .location-card.glass {
    margin: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }
  .card-content {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

/* Hide the Jeddah empty card on mobile, show only on desktop for alignment */
.jeddah-empty-card {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    pointer-events: none;
    min-height: 340px;
    visibility: hidden;
}
@media (max-width: 900px) {
    .jeddah-empty-card {
        display: none !important;
    }
}

/* --- Kerala Horizontal Scroll (Carousel) --- */
.kerala-scroll-wrapper {
    margin-bottom: 40px;
}
.kerala-scroll-cards {
    display: flex;
    flex-direction: row;
    gap: 28px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #444 #181818;
    -webkit-overflow-scrolling: touch;
}
.kerala-scroll-cards::-webkit-scrollbar {
    height: 8px;
    background: transparent;
}
.kerala-scroll-cards::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 8px;
}
.kerala-scroll-cards::-webkit-scrollbar-track {
    background: transparent;
}
.kerala-scroll-cards .location-card {
    min-width: 320px;
    max-width: 340px;
    flex: 0 0 auto;
}
@media (max-width: 600px) {
    .kerala-scroll-cards .location-card {
        min-width: 90vw;
        max-width: 95vw;
    }
}

/* --- Jeddah Testimonial Card --- */
.jeddah-testimonial-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 32px;
}
.jeddah-card-center {
    display: flex;
    justify-content: center;
    width: 100%;
}
.jeddah-card-center .location-card {
    min-width: 320px;
    max-width: 400px;
    width: 100%;
}

/* Hide old grid/column styles for locations section */
.locations-partition-wrapper, .locations-partition, .location-cards-grid, .jeddah-empty-card {
    display: none !important;
}

/* --- Locations Card-Based Grid Layout --- */
.locations-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 40px auto 40px auto;
    max-width: 900px;
    width: 100%;
    justify-content: center;
}
@media (max-width: 800px) {
    .locations-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 98vw;
    }
}

.location-card.glass {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 22px;
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.13);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255,255,255,0.13);
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.location-card.glass:hover {
    box-shadow: 0 16px 40px 0 rgba(31,38,135,0.22);
    border: 1.5px solid #ff3434;
    transform: translateY(-4px) scale(1.01);
}
.card-map {
    width: 100%;
    height: 180px;
    background: #181818;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
}
.card-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.card-content {
    flex: 1 1 auto;
    padding: 22px 20px 18px 20px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92) 80%,
        rgba(0, 0, 0, 0.7) 100%
    );
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}
.card-content h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.card-content p {
    color: #bdbdbd;
    font-size: 1rem;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.location-phone {
    color: #ff3434;
    font-weight: 500;
    font-size: 1rem;
    margin-top: 2px;
}
.card-actions {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.cta-btn {
    background: rgba(209,42,42,0.10);
    color: #fff;
    border: 1px solid #d12a2a;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.98rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px 0 rgba(209,42,42,0.08);
}
.cta-btn:hover {
    background: #d12a2a;
    color: #fff;
    border: 1px solid #fff;
    box-shadow: 0 4px 16px 0 rgba(209,42,42,0.18);
}

/* --- Location Badge --- */
.location-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255,255,255,0.10);
    color: #fff;
    border: 1px solid #d12a2a;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 4px 16px;
    letter-spacing: 0.7px;
    z-index: 2;
    box-shadow: 0 2px 12px 0 rgba(209,42,42,0.10);
    pointer-events: none;
    user-select: none;
}
.card-content {
    position: relative;
}

</pre></body></html>