/* Çınar Fotoğraf - Modern Siyah Beyaz Tasarım */

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #5a5a5a !important;
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
    height: 60px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #b8860b, #daa520);
    border-radius: 50%;
    top: 4px;
    left: 4px;
}

.logo-icon i {
    color: #fff;
    font-size: 1.2rem;
    z-index: 1;
    position: relative;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 0.8rem;
    color: #ccc;
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 20px;
    height: 100%;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link i {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.nav-link span {
    font-size: 0.75rem;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0 20px;
    z-index: 10001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 60px;
    right: 0;
    width: 50%;
    height: auto;
    background: #fff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    border-radius: 0 0 0 10px;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.mobile-menu-close:hover {
    background: #e0e0e0;
    transform: scale(1.1);
}

.mobile-menu-close i {
    color: #333;
    font-size: 1rem;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 40px 0 20px 0;
    margin: 0;
    gap: 0;
}

.mobile-menu-link {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 12px 20px;
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.mobile-menu-link:last-child {
    border-bottom: none;
}

.mobile-menu-link:hover {
    background: #f8f8f8;
    color: #000;
}

.mobile-menu-link i {
    font-size: 1.1rem;
    margin-right: 12px;
    opacity: 0.8;
    transition: all 0.3s ease;
    width: 20px;
    text-align: center;
}

.mobile-menu-link:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.mobile-menu-link span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Mobile Menu Animation */
.mobile-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05), transparent);
    transition: left 0.5s ease;
}

.mobile-menu-link:hover::before {
    left: 100%;
}

/* Hero Section */
.hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #ddd 100%);
    margin-top: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #ddd 100%);
}

/* Animated Background Elements - Durufoto Style Enhanced */
.hero-background::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.6) 0%, rgba(255, 193, 7, 0.5) 30%, rgba(255, 165, 0, 0.4) 70%, transparent 100%);
    clip-path: polygon(0 100%, 100% 20%, 100% 100%);
    animation: waveMove1 4s ease-in-out infinite;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.5) 0%, rgba(255, 215, 0, 0.4) 50%, rgba(255, 140, 0, 0.3) 100%);
    clip-path: polygon(20% 100%, 100% 0%, 100% 100%);
    animation: waveMove2 5s ease-in-out infinite reverse;
    z-index: 2;
}

/* Additional floating wave elements */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.4) 30%, rgba(255, 193, 7, 0.3) 70%, transparent 100%);
    clip-path: polygon(0 60%, 20% 20%, 40% 60%, 60% 20%, 80% 60%, 100% 20%, 100% 100%, 0 100%);
    animation: waveFlow 6s linear infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 0;
    width: 70%;
    height: 100px;
    background: linear-gradient(270deg, transparent 0%, rgba(255, 193, 7, 0.3) 40%, rgba(255, 215, 0, 0.2) 80%, transparent 100%);
    clip-path: polygon(0 100%, 15% 40%, 30% 100%, 45% 40%, 60% 100%, 75% 40%, 90% 100%, 100% 40%, 100% 0%, 0 0%);
    animation: waveFlow 8s linear infinite reverse;
    z-index: 1;
}

/* Additional wave layers for more intensity */
.hero-content::before {
    content: '';
    position: absolute;
    top: 70%;
    left: 10%;
    width: 80%;
    height: 60px;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 193, 7, 0.15) 100%);
    clip-path: polygon(0 50%, 33% 0%, 66% 50%, 100% 0%, 100% 100%, 0 100%);
    animation: waveFlow 10s linear infinite;
    z-index: -1;
}

.hero-content::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 5%;
    width: 60%;
    height: 80px;
    background: linear-gradient(225deg, rgba(255, 193, 7, 0.25) 0%, rgba(255, 215, 0, 0.15) 100%);
    clip-path: polygon(0 80%, 25% 30%, 50% 80%, 75% 30%, 100% 80%, 100% 0%, 0 0%);
    animation: waveFlow 12s linear infinite reverse;
    z-index: -1;
}

/* Enhanced Wave Animations */
@keyframes waveMove1 {
    0%, 100% { 
        transform: translateX(0) scaleY(1) rotate(0deg);
        opacity: 0.6;
    }
    25% { 
        transform: translateX(30px) scaleY(1.2) rotate(1deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateX(50px) scaleY(1.3) rotate(2deg);
        opacity: 0.9;
    }
    75% { 
        transform: translateX(25px) scaleY(1.1) rotate(1deg);
        opacity: 0.7;
    }
}

@keyframes waveMove2 {
    0%, 100% { 
        transform: translateX(0) scaleY(1) rotate(0deg);
        opacity: 0.5;
    }
    33% { 
        transform: translateX(-25px) scaleY(0.8) rotate(-1deg);
        opacity: 0.7;
    }
    66% { 
        transform: translateX(-40px) scaleY(0.9) rotate(-2deg);
        opacity: 0.8;
    }
}

@keyframes waveFlow {
    0% {
        transform: translateX(-120%) scaleX(0.8);
        opacity: 0;
    }
    5% {
        opacity: 0.4;
        transform: translateX(-100%) scaleX(1);
    }
    50% {
        opacity: 0.6;
        transform: translateX(0%) scaleX(1.1);
    }
    95% {
        opacity: 0.4;
        transform: translateX(100%) scaleX(1);
    }
    100% {
        transform: translateX(120%) scaleX(0.8);
        opacity: 0;
    }
}

/* Pulsing effect for more movement */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }
}

/* Add pulsing to hero background */
.hero-background {
    animation: pulse 8s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
    position: relative;
}

.hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8b7355;
    margin-bottom: 1.5rem;
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2c2c2c;
    line-height: 1.2;
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
    white-space: nowrap;
}

.hero-description {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-cta-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

.hero-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
    border: 2px solid transparent;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.1);
}

.hero-btn:active {
    transform: translateY(0);
}

.hero-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.hero-btn:hover i {
    transform: translateX(3px);
}

/* Hero Slider Navigation */
.hero-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hero-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(44, 44, 44, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-nav-dot.active {
    background: #2c2c2c;
    transform: scale(1.2);
}

.hero-nav-dot:hover {
    background: rgba(44, 44, 44, 0.6);
    transform: scale(1.1);
}

/* Hero Slider Arrows */
.hero-arrows {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-arrow {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-arrow:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hero-arrow i {
    color: #2c2c2c;
    font-size: 1rem;
}

/* Hero Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
        white-space: normal;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-btn {
        padding: 15px 30px;
        font-size: 0.85rem;
    }
    
    .hero-nav {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-cta-text {
        font-size: 1.1rem;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000;
}

.section-header p {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f9f9f9;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-item h3 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Modern Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: #fff;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 3rem;
    padding: 0 20px;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #333;
    border: 1px solid #333;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
    white-space: nowrap;
}

.filter-btn:hover {
    background: #555;
    border-color: #555;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.filter-btn.active {
    background: #000;
    border-color: #000;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.filter-btn i {
    font-size: 0.8rem;
    opacity: 0.8;
}

.filter-btn.active i {
    opacity: 1;
}

/* Responsive Filters */
@media (max-width: 768px) {
    .gallery-filters {
        gap: 6px;
        margin-bottom: 2rem;
        justify-content: center;
        flex-wrap: wrap;
        padding: 10px 20px;
        overflow-x: visible;
    }
    
    .filter-btn {
        padding: 8px 12px;
        font-size: 0.7rem;
        min-width: auto;
        height: auto;
        border-radius: 4px;
        flex-shrink: 0;
        justify-content: center;
        background: #333;
        color: #fff;
        border-color: #333;
        white-space: nowrap;
    }
    
    .filter-btn span {
        display: inline;
    }
    
    .filter-btn i {
        font-size: 0.7rem;
        margin-right: 4px;
    }
    
    .filter-btn:hover,
    .filter-btn.active {
        background: #000;
        border-color: #000;
        color: #fff;
    }
}

@media (max-width: 480px) {
    .gallery-filters {
        gap: 4px;
        padding: 10px 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .filter-btn {
        padding: 6px 10px;
        font-size: 0.65rem;
        min-width: auto;
        height: auto;
        border-radius: 4px;
        background: #333;
        color: #fff;
        border-color: #333;
        white-space: nowrap;
    }
    
    .filter-btn span {
        display: inline;
    }
    
    .filter-btn i {
        font-size: 0.65rem;
        margin-right: 3px;
    }
}

.modern-gallery {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item-modern {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: #f8f8f8;
}

.gallery-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-item-modern:hover::before {
    opacity: 1;
}

.gallery-item-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1) saturate(1);
}

.gallery-item-modern:hover img {
    transform: scale(1.08);
    filter: brightness(1.1) saturate(1.2);
}

/* Gallery Category Label */
.gallery-category-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 3;
}

.gallery-item-modern:hover .gallery-category-label {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.gallery-item-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Animation on scroll */
.gallery-item-modern {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-item-modern:nth-child(1) { animation-delay: 0.1s; }
.gallery-item-modern:nth-child(2) { animation-delay: 0.2s; }
.gallery-item-modern:nth-child(3) { animation-delay: 0.3s; }
.gallery-item-modern:nth-child(4) { animation-delay: 0.4s; }
.gallery-item-modern:nth-child(5) { animation-delay: 0.5s; }
.gallery-item-modern:nth-child(6) { animation-delay: 0.6s; }
.gallery-item-modern:nth-child(7) { animation-delay: 0.7s; }
.gallery-item-modern:nth-child(8) { animation-delay: 0.8s; }
.gallery-item-modern:nth-child(9) { animation-delay: 0.9s; }
.gallery-item-modern:nth-child(10) { animation-delay: 1.0s; }
.gallery-item-modern:nth-child(11) { animation-delay: 1.1s; }
.gallery-item-modern:nth-child(12) { animation-delay: 1.2s; }

/* Responsive Design for Modern Gallery */
@media (max-width: 1024px) {
    .modern-gallery {
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .modern-gallery {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px;
    }
    
    .gallery-overlay-modern {
        width: 50px;
        height: 50px;
    }
    
    .gallery-overlay-modern i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .modern-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
        padding: 0 10px;
    }
    
    .gallery-section {
        padding: 3rem 0;
    }
}

/* Old Gallery Section */
.gallery {
    padding: 5rem 0;
}

.location-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.location-btn {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.location-btn:hover,
.location-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.location-btn i {
    margin-right: 5px;
    font-size: 0.7rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(auto, 300px);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
    width: 100%;
    height: 300px;
    display: block;
}

.gallery-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(20%);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: #fff;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

.gallery-overlay p {
    font-size: 0.8rem;
    color: #ccc;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}

.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* Gallery Animation Delays */
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }

/* Shooting Locations Section */
.shooting-locations {
    padding: 5rem 0;
    background: #fff;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.location-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.location-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.8);
}

.location-item:hover .location-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.location-item:hover .location-overlay {
    transform: translateY(0);
}

.location-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 600;
}

.location-overlay p {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design for Shooting Locations */
@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 20px;
    }
    
    .shooting-locations {
        padding: 3rem 0;
    }
}

/* Videos Section */
.videos {
    padding: 5rem 0;
    background: #f9f9f9;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #000;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: #fff;
    font-size: 1.2rem;
    margin-left: 3px;
}

.video-item h4 {
    padding: 1.5rem;
    font-size: 1rem;
    color: #000;
    margin: 0;
}

/* Services Section - Ultra Modern Card Design */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23000" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 320px;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 208, 63, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-image {
    position: relative;
    height: 140px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.9) saturate(1.1);
}

.service-item:hover .service-image img {
    transform: scale(1.1);
    filter: brightness(1) saturate(1.3);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(244, 208, 63, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-item:hover .service-image::after {
    opacity: 1;
}

.service-content {
    padding: 1rem 1.5rem;
    position: relative;
    z-index: 2;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    transition: all 0.3s ease;
    line-height: 1.3;
    text-align: center;
}

.service-item:hover h4 {
    color: #d4af37;
    transform: translateY(-5px);
}

.service-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    transition: all 0.3s ease;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item:hover p {
    color: #555;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    z-index: 3;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.service-item:hover .service-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Service Item Staggered Animation */
.service-item {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Services */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 4rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }
    
    .service-item {
        height: 380px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 2rem 1.5rem;
        height: 200px;
    }
    
    .service-item h4 {
        font-size: 1.2rem;
    }
    
    .service-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .service-item {
        height: 360px;
    }
    
    .service-image {
        height: 160px;
    }
    
    .service-content {
        padding: 1.5rem;
        height: 200px;
    }
}

/* Contact Section - Modern Design */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/><circle cx="10" cy="90" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-item:hover i {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.contact-item-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-weight: 600;
}

.contact-item-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c2c2c, #000);
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-links a:hover {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Contact Form - Compact Modern Design */
.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #daa520);
}

.form-group {
    margin-bottom: 1.2rem;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    transition: color 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: #ccc;
}

.submit-btn {
    background: linear-gradient(135deg, #2c2c2c, #000);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    transition: left 0.3s ease;
    z-index: 0;
}

.submit-btn:hover::before {
    left: 0;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

.submit-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.submit-btn:hover i {
    transform: translateX(2px);
}

/* Contact Responsive */
@media (max-width: 768px) {
    .contact {
        padding: 3rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-item {
        padding: 1.2rem;
    }
    
    .contact-item i {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Modern Photography Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: #fff;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #daa520);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Brand Section */
.footer-brand {
    position: relative;
}

.footer-brand .brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.footer-brand .logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.footer-brand .logo-icon i {
    color: #fff;
    font-size: 1.5rem;
    z-index: 1;
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.footer-brand .tagline {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-social a:hover {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Footer Sections */
.footer-section h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    border-radius: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.footer-section ul li a i {
    font-size: 0.8rem;
    opacity: 0.7;
    width: 12px;
}

/* Footer Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #bbb;
    font-size: 0.9rem;
}

.footer-contact-item i {
    width: 35px;
    height: 35px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer-contact-item:hover i {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #999;
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #d4af37;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand .brand-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 0;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.close:hover {
    color: #ccc;
}

#video-frame {
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

#lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.lightbox-nav button {
    background: rgba(0,0,0,0.7);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav button:hover {
    background: rgba(0,0,0,0.9);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-brand {
        padding: 0 10px;
        margin-left: -10px;
    }

    .mobile-menu {
        width: 60%;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 70%;
    }
    
    .mobile-menu-link {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .mobile-menu-link i {
        font-size: 1rem;
        margin-right: 10px;
    }
    
    .mobile-menu-link span {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(auto, 250px);
    }

    .gallery-item {
        height: 250px;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .location-filters {
        gap: 0.3rem;
    }

    .location-btn {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .modal-content {
        width: 95%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #video-frame {
        height: 250px;
    }
    
    #lightbox-image {
        max-width: 90vw;
        max-height: 80vh;
        width: auto;
        height: auto;
    }
    
    .lightbox-nav button {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 15px;
    }
    
    #lightbox-image {
        max-width: 85vw;
        max-height: 75vh;
        width: auto;
        height: auto;
    }
    
    .lightbox-nav {
        padding: 0 10px;
    }
    
    .lightbox-nav button {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.8rem;
    }

    .hero-btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }
}

/* Floating Contact Buttons */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

/* Instagram Floating Button */
.instagram-float {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e4405f, #c13584);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(228, 64, 95, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: instagramPulse 2s infinite;
    animation-delay: 0.5s;
}

.instagram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(228, 64, 95, 0.6);
}

.instagram-float i {
    color: #fff;
    font-size: 1.4rem;
}

.instagram-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #2c2c2c;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-weight: 500;
}

.instagram-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #2c2c2c;
}

.instagram-float:hover .instagram-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

/* Phone Floating Button */
.phone-float {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: phonePulse 2s infinite;
    animation-delay: 1s;
}

.phone-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.6);
}

.phone-float i {
    color: #fff;
    font-size: 1.4rem;
}

.phone-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #2c2c2c;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-weight: 500;
}

.phone-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #2c2c2c;
}

.phone-float:hover .phone-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: #fff;
    font-size: 1.4rem;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #2c2c2c;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-weight: 500;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #2c2c2c;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

/* Animations */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@keyframes phonePulse {
    0% {
        box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 123, 255, 0.6), 0 0 0 10px rgba(0, 123, 255, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
    }
}

@keyframes instagramPulse {
    0% {
        box-shadow: 0 4px 20px rgba(228, 64, 95, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(228, 64, 95, 0.6), 0 0 0 10px rgba(228, 64, 95, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(228, 64, 95, 0.4);
    }
}

/* Mobile Floating Buttons */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .whatsapp-float,
    .phone-float,
    .instagram-float {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float i,
    .phone-float i,
    .instagram-float i {
        font-size: 1.6rem;
    }
    
    .whatsapp-tooltip,
    .phone-tooltip,
    .instagram-tooltip {
        display: none;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}


/* Map Section */
.map-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.map-container {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
}
