/* ========================================
   GLOBAL STYLES & VARIABLES
   ======================================== */

:root {
    --primary-gold: #d4af37;
    --primary-dark: #1a1a1a;
    --secondary-gold: #b8860b;
    --accent-light: #f5f5f5;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: fadeInDown 0.6s ease-out;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

/* ========================================
   NAVIGATION BAR
   ======================================== */

.navbar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-light);
    animation: slideDown 0.6s ease-out;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    transition: var(--transition);
}

.nav-logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.4rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 8s ease-out forwards;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(212, 175, 55, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    animation: slideUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-gold);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

/* ========================================
   BUTTONS & CTA
   ======================================== */

.cta-button,
.cta-button-dark {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.cta-button {
    background: transparent;
    color: var(--primary-gold);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gold);
    z-index: -1;
    transition: left 0.4s ease-in-out;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: var(--primary-dark);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.cta-button-dark {
    background: var(--primary-dark);
    color: var(--primary-gold);
    border-color: var(--primary-dark);
}

.cta-button-dark:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
    box-shadow: var(--shadow);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gold) 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
    font-size: 1rem;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafafa 0%, var(--white) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease-out backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #fefaf0 0%, var(--white) 100%);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotateY(360deg);
    animation: spin 0.6s ease-in-out;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a2a2a 50%, var(--primary-gold) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    animation: fadeIn 0.8s ease-out;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ========================================
   AMENITIES SECTION
   ======================================== */

.amenities-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.amenity-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease-out backwards;
    border-bottom: 3px solid var(--primary-gold);
}

.amenity-item:nth-child(1) { animation-delay: 0.1s; }
.amenity-item:nth-child(2) { animation-delay: 0.2s; }
.amenity-item:nth-child(3) { animation-delay: 0.3s; }
.amenity-item:nth-child(4) { animation-delay: 0.4s; }
.amenity-item:nth-child(5) { animation-delay: 0.5s; }
.amenity-item:nth-child(6) { animation-delay: 0.6s; }

.amenity-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #fefaf0 0%, var(--white) 100%);
}

.amenity-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.amenity-item:hover .amenity-icon {
    transform: scale(1.2);
    animation: spin 0.6s ease-in-out;
}

.amenity-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.amenity-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

  .amenity-item{
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212,175,55,.25);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all .5s ease;
    position: relative;
    overflow: hidden;
}

.amenity-item::before{
    content:'';
    position:absolute;
    top:-100%;
    left:-100%;
    width:200%;
    height:200%;
    background:linear-gradient(
    45deg,
    transparent,
    rgba(212,175,55,.15),
    transparent);
    transition:.8s;
}

.amenity-item:hover::before{
    top:0;
    left:0;
}

.amenity-item:hover{
    transform:translateY(-12px);
    border-color:#D4AF37;
    box-shadow:0 20px 40px rgba(212,175,55,.25);
}

.amenity-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(
    135deg,
    #D4AF37,
    #F5E6A8);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    color:#111;
    margin-bottom:20px;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a2a2a 100%);
}

.testimonials-section .section-title {
    color: var(--primary-gold);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease-out backwards;
    backdrop-filter: blur(10px);
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    font-size: 1rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-hero {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gold) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    /* margin-top: 70px; */
}

.about-hero .hero-overlay {
    opacity: 0.5;
}

.page-title {
    position: relative;
    z-index: 10;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    animation: slideDown 0.6s ease-out;
}

.page-subtitle {
    position: relative;
    z-index: 10;
    font-size: 1.3rem;
    animation: slideUp 0.6s ease-out 0.2s backwards;
}

.about-section {
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    animation: fadeInLeft 0.8s ease-out;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.about-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.company-details {
    background: linear-gradient(135deg, #fafafa 0%, var(--white) 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-gold);
    margin-top: 2rem;
    box-shadow: var(--shadow-light);
}

.detail-item {
    margin-bottom: 1.5rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.detail-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.about-image {
    animation: fadeInRight 0.8s ease-out;
}

.company-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition-smooth);
}

.company-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow);
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gold) 100%);
    height: 400px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: var(--shadow);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.image-placeholder p {
    font-size: 1.2rem;
    opacity: 0.7;
}

/* ========================================
   VALUES SECTION
   ======================================== */

.values-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafafa 0%, var(--white) 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease-out backwards;
    border-top: 3px solid var(--primary-gold);
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.value-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========================================
   TEAM SECTION
   ======================================== */

.team-section {
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease-out backwards;
}

.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.team-member:hover .member-avatar {
    transform: scale(1.1);
}

.team-member h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.team-member p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========================================
   LOCATIONS SECTION
   ======================================== */

.locations-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafafa 0%, var(--white) 100%);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease-out backwards;
    border-top: 4px solid var(--primary-gold);
}

.location-card:nth-child(1) { animation-delay: 0.1s; }
.location-card:nth-child(2) { animation-delay: 0.2s; }

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.location-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
}

.location-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.location-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-hero {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gold) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    /* margin-top: 70px; */
}

.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafafa 0%, var(--white) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    animation: fadeInLeft 0.8s ease-out;
}

.info-items {
    margin-top: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.info-icon {
    font-size: 1.8rem;
    color: var(--primary-gold);
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-content a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition);
}

.info-content a:hover {
    text-decoration: underline;
}

.social-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-gold);
}

.social-links h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.social-icons-large {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--primary-dark);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
    transform: scale(1.2) rotateZ(360deg);
}

/* ========================================
   CONTACT FORM
   ======================================== */

.contact-form-wrapper {
    animation: fadeInRight 0.8s ease-out;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: #e74c3c;
    font-size: 0.85rem;
    display: none;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #e74c3c;
}

.form-group.error .form-error {
    display: block;
}

/* ========================================
   MAP SECTION
   ======================================== */

.map-section {
    padding: 3rem 0;
    background: var(--white);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    animation: fadeIn 0.8s ease-out;
}

/* ========================================
   GALLERY SECTION
   ======================================== */

.gallery-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafafa 0%, var(--white) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease-out backwards;
}

.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:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gold) 100%);
    transition: var(--transition);
}

.gallery-item h4 {
    padding: 1.5rem;
    text-align: center;
    color: var(--primary-dark);
    font-weight: 600;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0a0a0a 100%);
    color: var(--white);
    padding: 4rem 0 1rem;
    margin-top: 3rem;
    border-top: 3px solid var(--primary-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-gold);
    padding-left: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    transform: scale(1.2) rotateZ(-15deg);
    background: var(--secondary-gold);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
    font-size: 0.85rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   ANIMATIONS & KEYFRAMES
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1.2);
    }
    to {
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(20px);
    }
}

@keyframes spin {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        padding: 1rem;
        gap: 1rem;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        height: 400px;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-hero,
    .contact-hero {
        height: 250px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .info-item {
        flex-direction: column;
    }

    .map-container {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-button,
    .cta-button-dark {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .values-grid,
    .team-grid {
        gap: 1rem;
    }

    .feature-card,
    .value-card,
    .team-member {
        padding: 1.5rem;
    }
}
