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

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container width fixes for mobile */
.services-grid,
.about-container,
.gallery-grid,
.contact-content-wrapper,
.footer-content,
.instagram-feed,
.services-section,
.about-section,
.instagram-section,
.contact-section,
.footer {
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}



/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.1s ease;
}







.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #000000;
    height: 80px;
    border-bottom: 1px solid #333;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-center {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

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

.book-btn {
    position: relative;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.1s ease;
    border-radius: 0;
    z-index: 1;
}

.book-btn:hover {
    background: transparent;
    color: #ffffff;
    font-weight: 700;
}



.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    height: 100%;
    align-items: center;
}

.nav-links li {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.1s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    height: 80px;
    position: relative;
}

.nav-links a:hover {
    color: #ffffff;
    background: #333333;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #ffffff;
    transition: all 0.1s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::before {
    width: 80%;
}

.nav-links a i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.nav-links a:hover i {
    transform: scale(1.2);
}

.home-link {
    padding: 0 15px !important;
}

.home-link i {
    font-size: 18px !important;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 0;
    transition: all 0.1s ease;
    display: block;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform 0.1s ease;
    z-index: 999;
    display: block;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 10px 5% 21px 5%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-bottom: 140px;
}

.mobile-nav-links li {
    margin-bottom: 25px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.1s ease;
}

.mobile-nav-links a:hover {
    color: #ffffff;
    padding-left: 15px;
    background: #333333;
}

.mobile-home-link i {
    font-size: 24px;
}

.mobile-reservation {
    position: absolute;
    bottom: 80px;
    left: 5%;
    right: 5%;
    padding-top: 0;
}

.mobile-book-btn {
    position: relative;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.1s ease;
    border-radius: 0;
    z-index: 1;
    width: 100%;
    font-size: 16px;
    text-align: center;
}

.mobile-book-btn:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    font-weight: 700;
    border-color: #cccccc;
}

.mobile-book-btn .btn-border {
    display: none;
}

.mobile-book-btn .btn-border::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: white;
    border-radius: 8px;
    z-index: -1;
}

.desktop-only {
    display: block;
}

.logo {
    text-align: center;
}

.logo-main {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    display: block;
    font-family: 'Raleway', sans-serif;
    letter-spacing: -1px;
}

.logo-sub {
    font-size: 14px;
    color: #cccccc;
    display: block;
    margin-top: -5px;
}



/* Hero Slider Styles */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.7);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.slide-title {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.slide-main {
    font-size: 120px;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: -2px;
}

.slide-sub {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
}

.slide-location {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    z-index: 3;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Services Section */
.services-section {
    padding: 100px 5%;
    background: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}



.services-header {
    text-align: center;
    margin-bottom: 60px;
    z-index: 10;
    position: relative;
}

.services-subtitle {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.services-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 15;
    position: relative;
}

.services-grid:hover .service-card:not(:hover) {
    transform: scale(0.95) translateY(10px);
    opacity: 0.7;
    filter: blur(2px);
}

.service-card {
    background: #000000;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
    transition: all 0.1s ease;
    cursor: pointer;
    position: relative;
    border: 2px solid #333333;
    z-index: 1;
}

.service-card:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 0 25px 50px rgba(255,255,255,0.2);
    border-color: #ffffff;
    z-index: 10;
}

.service-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.1s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.15);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 20px 20px 25px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.service-price-display {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    padding: 15px 10px;
    border-radius: 0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
}

.service-price-display .price-label {
    font-size: 10px;
    font-weight: 400;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: center;
    line-height: 1.2;
}

.service-price-display .price-value {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.service-price-display .price-options {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}

.service-price-display .price-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 100%;
}

.service-price-display .price-option:last-child {
    border-right: none;
}

/* Service Rules Section */
.service-rules-section {
    margin-top: 60px;
    padding: 40px 0;
    background: #000000;
    border-top: 1px solid #333;
}

.rules-header {
    text-align: center;
    margin-bottom: 40px;
}

.rules-header h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

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

.rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #111111;
    border: 1px solid #333;
    border-radius: 0;
    transition: all 0.1s ease;
}

.rule-item:hover {
    border-color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.rule-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #333333;
    border: 1px solid #555;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
}

.rule-text h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.rule-text p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.service-overlay h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Service Modal Styles */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.service-modal-content {
    background: #000000;
    border-radius: 0;
    max-width: 450px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.1s ease;
    border: 1px solid #333;
}

.service-modal.active .service-modal-content {
    transform: scale(1);
}

.service-modal-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-modal-body {
    padding: 20px;
}

.service-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: center;
}

.service-modal-description {
    color: #cccccc;
    line-height: 1.4;
    margin-bottom: 15px;
    text-align: center;
    font-size: 13px;
}

.service-modal-pricing {
    margin-bottom: 15px;
}

.service-modal-pricing.dual-pricing {
    display: flex;
    gap: 10px;
}

.service-modal-pricing.multi-pricing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.service-modal-pricing.single-pricing {
    display: block;
}

.service-price-option {
    background: #333333;
    color: white;
    padding: 10px 15px;
    border-radius: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #555;
}

.service-modal-pricing.dual-pricing .service-price-option {
    flex: 1;
}

.service-modal-pricing.multi-pricing .service-price-option {
    padding: 8px 12px;
}

.service-modal-pricing.single-pricing .service-price-option {
    max-width: 300px;
    margin: 0 auto;
    padding: 15px 25px;
    font-size: 16px;
}

.service-price-option .price-label {
    font-size: 11px;
    opacity: 0.9;
    display: block;
    margin-bottom: 2px;
}

.service-price-option .price-value {
    font-size: 16px;
    font-weight: 700;
}

.service-modal-pricing.multi-pricing .service-price-option .price-label {
    font-size: 10px;
}

.service-modal-pricing.multi-pricing .service-price-option .price-value {
    font-size: 14px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.service-modal-pricing.single-pricing .service-price-option .price-label {
    font-size: 12px;
    text-align: left;
}

.service-modal-pricing.single-pricing .service-price-option .price-value {
    font-size: 20px;
    text-align: right;
}

.service-modal-rules {
    background: #333333;
    color: white;
    padding: 15px;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff;
}

.service-modal-rules h4 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-modal-rules h4::before {
    content: "⚠️";
    font-size: 16px;
}

.service-modal-rules ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-modal-rules li {
    color: rgba(255,255,255,0.95);
    font-size: 12px;
    margin-bottom: 6px;
    padding-left: 18px;
    position: relative;
    line-height: 1.3;
}

.service-modal-rules li::before {
    content: "•";
    color: rgba(255,255,255,0.8);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.service-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #333333;
    border: 1px solid #555;
    width: 35px;
    height: 35px;
    border-radius: 0;
    cursor: pointer;
    font-size: 18px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s ease;
}

.service-modal-close:hover {
    background: #ffffff;
    color: #000000;
    transform: scale(1.1);
}



/* About Section */
.about-section {
    padding: 100px 5%;
    background: #111111;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.about-image {
    position: relative;
    height: 500px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255,255,255,0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.1s ease;
    filter: grayscale(100%) brightness(0.7);
}

.about-image:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,212,255,0.1), rgba(0,184,230,0.1));
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.experience-badge {
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255,255,255,0.1);
    border: 1px solid #333;
}

.experience-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.experience-text {
    font-size: 12px;
    font-weight: 600;
    color: #cccccc;
    letter-spacing: 1px;
    line-height: 1.2;
}

.about-content {
    padding: 0;
}

.about-header {
    margin-bottom: 30px;
}

.about-subtitle {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #000000;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
    transition: transform 0.1s ease;
    border: 1px solid #333;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #ffffff;
}

.feature-item i {
    font-size: 24px;
    color: #ffffff;
    min-width: 24px;
}

.feature-item span {
    font-weight: 500;
    color: #ffffff;
}

.learn-more-btn {
    background: #00d4ff;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.learn-more-btn:hover {
    background: #00b8e6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,212,255,0.3);
}

/* Instagram Section */
.instagram-section {
    padding: 100px 5%;
    background: #000000;
    text-align: center;
}

.instagram-header {
    margin-bottom: 60px;
}

.instagram-subtitle {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.instagram-header h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.instagram-header p {
    color: #cccccc;
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto;
}

.instagram-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.instagram-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.instagram-loading i {
    font-size: 48px;
    color: #00d4ff;
    margin-bottom: 20px;
    display: block;
}

.instagram-loading p {
    font-size: 16px;
    margin: 0;
}

.instagram-post {
    position: relative;
    height: 250px;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.1s ease;
    background: #000000;
    border: 1px solid #333;
}

.instagram-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255,255,255,0.2);
    border-color: #ffffff;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.1s ease;
    filter: grayscale(100%) brightness(0.5);
}

.instagram-post:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1);
}

.instagram-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(225, 48, 108, 0.8), rgba(64, 93, 230, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .instagram-post-overlay {
    opacity: 1;
}

.instagram-post-overlay i {
    font-size: 32px;
    color: white;
}

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

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #833AB4, #FD1D1D, #F77737);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(131, 58, 180, 0.3);
}

.instagram-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(131, 58, 180, 0.4);
    color: white;
    text-decoration: none;
}

.instagram-follow-btn i {
    font-size: 20px;
}

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    background: #111111;
    color: #ffffff;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-subtitle {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.contact-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
}

.contact-header p {
    font-size: 18px;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content-wrapper {
    display: block;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.contact-card {
    background: #000000;
    padding: 35px 30px 20px 30px;
    border-radius: 0;
    box-shadow: 0 8px 25px rgba(255,255,255,0.1);
    text-align: center;
    transition: all 0.1s ease;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ffffff;
    transform: scaleX(0);
    transition: transform 0.1s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255,255,255,0.2);
    border-color: #ffffff;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card .contact-icon {
    width: 60px;
    height: 60px;
    background: #333333;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.1);
    transition: all 0.1s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    background: #ffffff;
    color: #000000;
}

.contact-card .contact-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

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

.contact-card .contact-content p {
    color: #cccccc;
    line-height: 1.5;
    font-size: 14px;
    margin: 0 0 auto 0;
    flex-grow: 1;
}

.phone-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.phone-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid #333;
    border-radius: 0;
    background: rgba(255,255,255,0.05);
}

.contact-info {
    text-align: left;
}

.contact-info h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.contact-info p {
    color: #cccccc;
    font-size: 14px;
    margin: 0;
}

.phone-contact .contact-action-btn {
    margin: 0;
    width: auto;
    min-width: 80px;
    padding: 8px 16px;
    font-size: 13px;
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #333333;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.1s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    min-width: 140px;
    border: 1px solid #555;
}

.contact-action-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: left 0.6s ease;
}

.contact-action-btn:hover {
    background: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    color: #000000;
    text-decoration: none;
    border-color: #ffffff;
}

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

.contact-action-btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.contact-action-btn i {
    font-size: 12px;
}

.contact-info-section h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

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

.contact-icon {
    background: #00d4ff;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}



/* Footer Section */
.footer {
    background: #000000;
    color: white;
    padding: 60px 0 0;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-logo .logo-main {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    display: block;
    font-family: 'Raleway', sans-serif;
    letter-spacing: -1px;
}

.footer-logo .logo-sub {
    font-size: 14px;
    color: #ccc;
    display: block;
    margin-top: -5px;
    font-weight: 300;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    font-size: 14px;
    margin-top: 15px;
}

.footer-menu h4,
.footer-services h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-menu ul,
.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-menu li,
.footer-services li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-menu a:hover {
    color: #ffffff;
}

.footer-services li {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}





.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #999;
    font-size: 14px;
    margin: 0;
}

.powered-by p {
    color: #999;
    font-size: 14px;
    margin: 0;
}

.powered-by a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.powered-by a:hover {
    color: #00b8e6;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    
    .navbar {
        padding: 10px 15px;
        height: auto;
        min-height: 60px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        margin: 0;
    }
    
    .nav-right {
        flex-shrink: 0;
        min-width: auto;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-right {
        gap: 15px;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 1001;
    }
    
    .mobile-menu {
        display: block;
        top: 70px;
        height: calc(100vh - 90px);
    }
    
    .logo-main {
        font-size: 24px;
    }
    
    .logo-sub {
        font-size: 12px;
    }
    
    .slide-main {
        font-size: 60px;
    }
    
    .slide-sub {
        font-size: 18px;
    }
    
    .slider-controls {
        padding: 0 20px;
    }
    
    .services-header h2 {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    
    .services-grid:hover .service-card:not(:hover) {
        transform: scale(0.96) translateY(8px);
        opacity: 0.75;
        filter: blur(1px);
    }
    
    .service-card {
        border-radius: 0;
    }
    
    .service-card:hover {
        transform: scale(1.06) translateY(-12px);
    }
    
    .service-modal-content {
        max-width: 90%;
        width: 95%;
    }
    
    .service-modal-body {
        padding: 20px;
    }
    
    .service-modal-title {
        font-size: 20px;
    }
    
    .service-modal-price {
        font-size: 18px;
        padding: 12px 20px;
    }
    
    .service-image {
        height: 220px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .about-image {
        height: 350px;
        order: 1;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-content h2,
    .gallery-section h2,
    .contact-content h2 {
        font-size: 32px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .instagram-container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .instagram-feed {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .instagram-post {
        height: 180px;
    }
    
    .instagram-follow-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .contact-content-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .contact-container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .contact-card {
        padding: 30px 20px 20px 20px;
        min-height: 260px;
    }
    
    .contact-card .contact-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .contact-action-btn {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 120px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer-container {
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .slide-main {
        font-size: 40px;
    }
    
    .slide-title {
        font-size: 14px;
    }
    
    .slide-sub {
        font-size: 16px;
    }
    
    .services-section,
    .about-section,
    .instagram-section,
    .contact-section {
        padding: 40px 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        overflow-x: hidden;
    }
    
    .services-header h2 {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 3px;
    }
    
    .services-grid:hover .service-card:not(:hover) {
        transform: scale(0.97) translateY(5px);
        opacity: 0.8;
        filter: blur(1px);
    }
    
    .service-card {
        border-radius: 0;
    }
    
    .service-card:hover {
        transform: scale(1.04) translateY(-8px);
    }
    
    .service-modal-content {
        max-width: 95%;
        width: 98%;
        max-height: 90vh;
        border-radius: 0;
    }
    
    .service-modal-image {
        height: 150px;
    }
    
    .service-modal-body {
        padding: 15px;
    }
    
    .service-modal-title {
        font-size: 16px;
    }
    
    .service-modal-description {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .service-modal-pricing.dual-pricing {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .service-modal-pricing.multi-pricing {
        gap: 6px;
        margin-bottom: 12px;
        grid-template-columns: 1fr 1fr;
    }
    
    .service-modal-pricing.single-pricing {
        margin-bottom: 12px;
    }
    
    .service-price-option {
        padding: 8px 12px;
        border-radius: 0;
    }
    
    .service-modal-pricing.single-pricing .service-price-option {
        padding: 12px 20px;
    }
    
    .service-price-option .price-label {
        font-size: 10px;
    }
    
    .service-price-option .price-value {
        font-size: 14px;
    }
    
    .service-modal-pricing.single-pricing .service-price-option .price-label {
        font-size: 11px;
    }
    
    .service-modal-pricing.single-pricing .service-price-option .price-value {
        font-size: 18px;
    }
    
    .service-modal-rules {
        padding: 12px;
        border-radius: 0;
    }
    
    .service-modal-rules h4 {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .service-modal-rules h4::before {
        font-size: 14px;
    }
    
    .service-modal-rules li {
        font-size: 10px;
        margin-bottom: 4px;
        padding-left: 15px;
    }
    
    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .rule-item {
        padding: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .rule-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 0;
    }
    
    .rule-text h4 {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .rule-text p {
        font-size: 12px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .about-container,
    .instagram-container,
    .contact-container {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .instagram-feed {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .instagram-post {
        height: 150px;
    }
    
    .instagram-follow-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .instagram-header h2 {
        font-size: 32px;
    }
    
    .instagram-header p {
        font-size: 14px;
    }
    
    .about-image {
        height: 300px;
    }
    
    .about-content h2 {
        font-size: 28px;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    .experience-badge {
        padding: 20px;
    }
    
    .experience-number {
        font-size: 28px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-item {
        height: 150px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .contact-card {
        padding: 25px 20px 20px 20px;
        min-height: 240px;
    }
    
    .contact-card .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .contact-card .contact-content h4 {
        font-size: 16px;
    }
    
    .contact-card .contact-content p {
        font-size: 13px;
        margin-bottom: auto;
    }
    
    .contact-action-btn {
        padding: 10px 18px;
        font-size: 12px;
        gap: 6px;
        min-width: 110px;
        margin-top: 15px;
    }
    
    .contact-content-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        margin: 0;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    

    
    .contact-header h2 {
        font-size: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer-container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        overflow-x: hidden;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        width: 100%;
        box-sizing: border-box;
    }
}

/* Parallax Effects */
.services-section,
.about-section,
.gallery-section,
.contact-section {
    position: relative;
    background-attachment: fixed;
}

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

/* Loading Animation */
.service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }

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