/* Global Styles */
:root {
    --primary-color: #b8860b; /* Golden color for luxury */
    --secondary-color: #2c3e50; /* Deep blue */
    --accent-color: #d4af37; /* Gold accent */
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --text-light: #777777;
    --border-radius: 30px; /* More rounded corners */
    --button-radius: 50px; /* Very rounded buttons */
    --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #d4af37 100%);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Cormorant Garamond', 'Montserrat', sans-serif; /* More luxurious font */
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gold-gradient);
}

.section-header h2::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: var(--primary-color);
}

.section-header p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
    color: var(--text-light);
}

.section-header.left-align {
    text-align: left;
}

.section-header.left-align h2::after {
    left: 0;
    transform: none;
}

.section-header.left-align h2::before {
    left: 0;
    transform: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
}

.hero-content {
    max-width: 800px;
    color: #fff;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    padding: 0 25px 30px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gold-gradient);
    transition: height 0.5s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gold-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 50%;
    font-size: 2.2rem;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-image {
    height: 250px;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    margin: -35px -35px 25px -35px;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
    padding-top: 15px;
}

.service-card p {
    margin-bottom: 15px;
    padding: 0 10px;
}

/* Projects Section */
.projects {
    padding: 100px 0;
}

.projects-slider {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.projects-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    margin: 0 -15px;
}

.project-slide {
    flex: 0 0 33.333%;
    padding: 0 15px;
    opacity: 1;
    visibility: visible;
    height: auto;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 400px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin: 20px 0;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.project-info {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 20px;
    transition: var(--transition);
}

.project-card:hover .project-info {
    bottom: 0;
}

.project-info h3 {
    margin-bottom: 5px;
    color: #fff;
}

.project-info p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.project-card::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.project-card:hover::after {
    opacity: 1;
}

.project-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.project-dots {
    display: flex;
    margin: 0 20px;
}

.project-controls button {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.project-controls button:hover {
    background-color: var(--gold);
    color: white;
}

.project-card .btn {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.project-card .btn:hover {
    background-color: #d4af37;
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-image {
    position: relative;
    height: 100%;
}

.about-image::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background-color: var(--primary-color);
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    position: relative;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 20px 40px;
    position: relative;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition);
}

.testimonial-card.active::before {
    opacity: 1;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.testimonial-author p {
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev-btn,
.next-btn {
    background-color: var(--secondary-color);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
    background-color: var(--primary-color);
}

.testimonial-dots {
    display: flex;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: var(--light-color);
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Contact Page Styles */
.contact-page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('https://images.unsplash.com/photo-1541123603104-512919d6a96c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 160px 0 80px;
    text-align: center;
    color: white;
    position: relative;
}

.contact-page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    animation: fadeInUp 1s ease;
}

.contact-page-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
    max-width: 600px;
    margin: 0 auto;
}

.contact-page {
    padding: 80px 0;
    background-color: var(--light-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.contact-info-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-info-card:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-info-card:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-info-card:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-info-card:nth-child(4) {
    animation-delay: 0.4s;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.2);
}

.contact-info-card h3 {
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.contact-info-card p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-top: auto;
    min-width: 140px;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: start;
}

.contact-form-wrapper {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    animation: fadeInLeft 0.8s ease;
    animation-fill-mode: both;
}

.contact-form-wrapper .section-header {
    margin-bottom: 30px;
}

.contact-form-wrapper .section-header h2 {
    font-size: 2.2rem;
}

.contact-form-wrapper .section-header p {
    font-size: 1.1rem;
    margin-top: 5px;
}

.contact-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    height: 100%;
    min-height: 450px;
    border: 5px solid #fff;
    animation: fadeInRight 0.8s ease;
    animation-fill-mode: both;
}

.contact-map iframe {
    height: 100%;
}

/* Media queries for contact page */
@media screen and (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-page-hero h1 {
        font-size: 3rem;
    }
    
    .contact-map {
        min-height: 350px;
    }
}

@media screen and (max-width: 768px) {
    .contact-page-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-page-hero p {
        font-size: 1.1rem;
    }
    
    .contact-info-card {
        padding: 25px 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .contact-info-card h3 {
        font-size: 1.2rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .contact-form-wrapper .section-header h2 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 576px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-page {
        padding: 60px 0;
    }
    
    .contact-page-hero {
        padding: 140px 0 70px;
    }
    
    .contact-page-hero h1 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-page {
        padding: 60px 0;
    }
    
    .contact-page-hero {
        padding: 140px 0 70px;
    }
    
    .contact-page-hero h1 {
        font-size: 2.2rem;
    }
}

/* Contact card animations */
.contact-info-card {
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.contact-info-card:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-info-card:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-info-card:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-info-card:nth-child(4) {
    animation-delay: 0.4s;
}

.contact-form-wrapper {
    animation: fadeInLeft 0.8s ease;
    animation-fill-mode: both;
}

.contact-map {
    animation: fadeInRight 0.8s ease;
    animation-fill-mode: both;
}

@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);
    }
}

.contact-form {
    width: 100%;
}

.contact-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.contact-form .form-group:last-child {
    margin-bottom: 25px;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: rgba(248, 249, 250, 0.5);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1);
    background-color: #fff;
}

.contact-form .form-group textarea {
    height: 140px;
    resize: none;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.2);
} 