body { font-family: 'Helvetica Neue', sans-serif; margin: 0; padding: 0; color: #333; }
nav { background: #fff; padding: 20px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
nav ul { list-style: none; display: flex; gap: 20px; }
nav a { text-decoration: none; color: #333; text-transform: uppercase; font-size: 0.9rem; }
.book-btn a { background: #d4a373; color: white; padding: 10px 20px; border-radius: 5px; }

/* Slider */
.slider { width: 100%; height: 500px; position: relative; overflow: hidden; background: #eee; }
.slide { width: 100%; height: 100%; object-fit: cover; position: absolute; opacity: 0; transition: opacity 1s; }
.slide.active { opacity: 1; }

/* Container & Grid */
.container { max-width: 900px; margin: 40px auto; padding: 0 20px; }
.services-grid { display: flex; gap: 40px; }
.service-col { flex: 1; }
.contact-form { display: flex; flex-direction: column; gap: 15px; max-width: 500px; margin: 0 auto; }
input, textarea { padding: 10px; border: 1px solid #ccc; border-radius: 4px; }
button { padding: 10px; background: #333; color: white; border: none; cursor: pointer; }

/* Container for the list */
ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
}

/* The individual items (Cards) */
li {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent */
  backdrop-filter: blur(10px);          /* The "Glass" blur effect */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  color: #333; /* Dark text (or white if you go dark mode) */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Hover Effect - Web 3.0 Glow */
li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 118, 255, 0.2); /* Blue glow */
  border-color: #0076ff;
}

/* Footer */
footer { background: #f4f4f4; text-align: center; padding: 20px; margin-top: 50px; }

/* --- Pre-Footer Call to Action --- */
.cta-section {
    background-color: #f9f5f0; /* A soft, warm beige */
    text-align: center;
    padding: 80px 20px;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

/* --- Professional Footer --- */
footer {
    background: #333; /* Dark background for contrast */
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    margin-top: 0; /* Remove top margin since CTA is there */
}

.footer-logo {
    max-width: 250px; /* Adjust size of your new logo */
    margin-bottom: 30px;
    filter: brightness(0) invert(1); /* This turns a black logo WHITE automatically! */
}

.footer-links {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d4a373; /* Gold/Tan accent color */
}

/* --- Social Icons Styling --- */
.footer-socials {
    margin: 20px 0 30px 0;
    display: flex;
    justify-content: center;
    gap: 15px; /* Space between icons */
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1); /* Subtle circle background */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%; /* Makes them perfect circles */
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover Effect: Pop up and change color */
.footer-socials a:hover {
    background: #d4a373; /* Gold/Tan brand accent */
    border-color: #d4a373;
    transform: translateY(-3px); /* Slight lift */
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.4); /* Glow effect */
}

.copyright {
    font-size: 0.8rem;
    color: #777;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 20px;
}

/* --- Contact Page Styling --- */

/* Center the main title */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Two-column Layout */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap; /* Stacks vertically on mobile */
    gap: 50px;
    align-items: flex-start;
}

/* Left Column */
.contact-info {
    flex: 1;
    min-width: 300px;
    background: #f9f5f0; /* Same warm beige as CTA */
    padding: 40px;
    border-radius: 8px;
}

.contact-info h3 {
    margin-top: 0;
    font-size: 1.8rem;
    color: #333;
}

.info-item {
    margin-top: 30px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.info-item a {
    color: #d4a373;
    text-decoration: none;
    font-weight: bold;
}

/* Right Column (Form) */
.contact-form-container {
    flex: 1.5; /* Makes the form slightly wider than the info */
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Pretty Inputs */
.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #fff;
    box-sizing: border-box; /* Prevents padding from breaking layout */
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #d4a373; /* Gold focus border */
    outline: none;
    box-shadow: 0 0 5px rgba(212, 163, 115, 0.2);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 15px;
    background: #333;
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #d4a373;
}

/* --- Portfolio Gallery Styling --- */

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

.gallery-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* The Grid */
.gallery-grid {
    display: grid;
    /* This magically handles columns: 1 on mobile, 3 on desktop! */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

/* The Individual Card */
.gallery-item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.img-wrapper {
    position: relative;
    width: 100%;
    height: 300px; /* Fixed height for uniformity */
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the box without stretching */
    transition: transform 0.5s ease;
}

/* Hover Zoom Effect */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* The Overlay (Text on hover) */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 20px;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
}

.gallery-item:hover .overlay {
    opacity: 1; /* Show on hover */
}

.overlay span {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* --- New Services Section --- */
.section-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.subtitle {
    color: #888;
    font-style: italic;
    margin-top: -10px;
}

.category-title {
    text-align: center;
    color: #d4a373; /* Your Brand Gold */
    font-size: 1.5rem;
    margin: 40px 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px); /* Lifts up on hover */
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #f9f5f0;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.5rem;
}

.service-card h4 {
    margin: 10px 0;
    font-size: 1.2rem;
}

.link-text {
    display: inline-block;
    margin-top: 15px;
    color: #d4a373;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

/* --- New Testimonials Section --- */
.testimonials-section {
    background: #333; /* Dark background for contrast */
    color: #fff;
    padding: 80px 0;
    margin-top: 80px;
    text-align: center;
}

.testimonials-section h3 {
    color: #d4a373;
    margin-bottom: 50px;
    font-size: 2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05); /* Subtle glass effect on dark */
    padding: 40px;
    border-radius: 8px;
    position: relative;
}

.quote-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.divider {
    width: 50px;
    height: 2px;
    background: #d4a373;
    margin: 20px auto;
}

.author {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stars {
    color: #d4a373;
    margin-top: 10px;
    font-size: 0.8rem;
}

/* --- Web 3.0 News Banner --- */
.news-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    
    /* The "Glass" Look */
    background: linear-gradient(90deg, #d4a373 0%, #e6b98d 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    z-index: 1000; /* Ensure it sits on top */
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 163, 115, 0.3);
}

.news-banner:hover {
    padding: 15px 20px; /* Expands slightly on hover */
    background: linear-gradient(90deg, #c39263 0%, #d4a373 100%);
}

.banner-tag {
    background: rgba(255, 255, 255, 0.25);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.banner-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.news-banner:hover .banner-arrow {
    transform: translateX(5px); /* Arrow slides right on hover */
}

/* Mobile Tweak: Stack text if it's too long */
@media (max-width: 600px) {
    .news-banner {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        font-size: 0.85rem;
    }
    .banner-arrow {
        transform: rotate(90deg); /* Point down on mobile */
    }
}
