@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #0a1937;
    --secondary-color: #1A1A1A;
    --gold-gradient: linear-gradient(135deg, #C5A572, #A67C52);
    --gold-light: #C5A572;
    --gold-dark: #A67C52;
    --white: #ffffff;
    --black: #000000;
    --box-shadow: 0 3px 10px rgba(10, 25, 55, 0.1);
    --luxury-shadow: 0 10px 30px rgba(166, 124, 82, 0.15);
    --text-shadow: 2px 2px 4px rgba(10, 25, 55, 0.2);
    --texture-overlay: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
}

/* Add texture to elements with primary color background */
header, .hero::before, .page-hero {
    background-blend-mode: overlay;
    background-image: var(--texture-overlay);
}

/* Improve text rendering */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--secondary-color);
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.animate {
    animation: fadeIn 0.8s ease forwards;
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(10, 25, 55, 0.95);
    box-shadow: var(--luxury-shadow);
    z-index: 1000;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

header.scrolled {
    background: rgba(10, 25, 55, 0.98);
    box-shadow: 0 5px 25px rgba(10, 25, 55, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 2;
}

.logo img {
    height: 100px;
    width: auto;
    transition: all 0.4s ease;
}

.logo img:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.nav-links ul li a {
    color: var(--white);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    text-shadow: var(--text-shadow);
}

.nav-links ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.4s ease;
    box-shadow: 0 0 10px rgba(197, 165, 114, 0.5);
}

.nav-links ul li a:hover,
.nav-links ul li a.active {
    color: var(--gold-light);
}

.nav-links ul li a:hover::after,
.nav-links ul li a.active::after {
    width: 100%;
}

/* Center align navigation items */
.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links {
    transition: 0.3s ease;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links ul li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    text-shadow: var(--text-shadow);
}

.nav-links ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.nav-links ul li a:hover::after,
.nav-links ul li a.active::after {
    width: 100%;
}

.nav-links ul li a:hover,
.nav-links ul li a.active {
    color: var(--gold-light);
    text-shadow: 0 0 15px rgba(197, 165, 114, 0.3);
}

.nav-links ul li a:hover::after,
.nav-links ul li a.active::after {
    background: var(--gold-gradient);
    box-shadow: 0 0 10px rgba(197, 165, 114, 0.5);
}

.mobile-menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    position: relative;
    margin: 0;
    padding: 8px;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }
}

.mobile-menu:hover {
    background: rgba(197, 165, 114, 0.2);
    transform: scale(1.05);
}

.mobile-menu span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold-light);
    margin: 5px 0;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(197, 165, 114, 0.3);
    position: relative;
}

.mobile-menu:hover span {
    width: 30px;
    background: var(--gold-light);
    box-shadow: 0 2px 8px rgba(197, 165, 114, 0.5);
}

.mobile-menu.active span {
    width: 30px;
}

.mobile-menu.active {
    background: transparent;
}

.mobile-menu.active span {
    width: 28px;
    background: var(--gold-light);
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    width: 30px;
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
    width: 30px;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    width: 30px;
}

.mobile-menu.active:hover span {
    box-shadow: 0 2px 8px rgba(197, 165, 114, 0.5);
}

.mobile-menu.active span,
.mobile-menu.active:hover span {
    background: var(--gold-light);
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: rgba(10, 25, 55, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .logo img {
        height: 80px;
    }

    .hero {
        margin-top: 60px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links ul {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .nav-links ul li a {
        font-size: 1.4rem;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        color: var(--white);
        text-shadow: var(--text-shadow);
    }

    .nav-links.active ul li a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links ul li a:hover,
    .nav-links ul li a.active {
        color: var(--gold-light);
    }

    .nav-links.active ul li:nth-child(1) a { transition-delay: 0.2s; }
    .nav-links.active ul li:nth-child(2) a { transition-delay: 0.3s; }
    .nav-links.active ul li:nth-child(3) a { transition-delay: 0.4s; }
    .nav-links.active ul li:nth-child(4) a { transition-delay: 0.5s; }
}

/* Hero Sections */
.hero, .page-hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 25, 55, 0.85), rgba(10, 25, 55, 0.85)), 
                url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-1.2.1&auto=format&fit=crop&w=2850&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    margin-top: 90px;
}

.page-hero {
    height: 60vh;
    background: linear-gradient(rgba(10, 25, 55, 0.85), rgba(10, 25, 55, 0.85)), 
                url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-1.2.1&auto=format&fit=crop&w=2850&q=80');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(197, 165, 114, 0.15), rgba(10, 25, 55, 0.7));
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
    z-index: 2;
    box-shadow: 0 0 20px rgba(197, 165, 114, 0.5);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 184, 0, 0.15), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
    z-index: 2;
}

.hero-content {
    color: var(--white);
    max-width: 900px;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

.hero-content h1 {
    font-size: 6rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 1.2;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease forwards;
    text-shadow: 2px 2px 15px rgba(197, 165, 114, 0.3);
    position: relative;
    display: inline-block;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 3px;
    box-shadow: 0 0 30px rgba(197, 165, 114, 0.6);
}

.hero-content h1::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 3px;
    box-shadow: 0 0 30px rgba(197, 165, 114, 0.6);
}

.hero-content p {
    font-size: 1.6rem;
    margin: 3rem auto;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
    max-width: 800px;
    text-shadow: var(--text-shadow);
}

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

.hero-btn {
    display: inline-block;
    padding: 1.8rem 5rem;
    background: var(--gold-gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 25px rgba(197, 165, 114, 0.4);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
    border: 2px solid transparent;
}

.hero-btn::before,
.hero-btn::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn::before { left: 0; }
.hero-btn::after { right: 0; transform: translateX(100%); }

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(197, 165, 114, 0.6);
    border: 2px solid var(--gold-light);
    letter-spacing: 5px;
}

.hero-btn:hover::before { transform: translateX(100%); }
.hero-btn:hover::after { transform: translateX(-100%); }

.hero-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 165, 114, 0.4);
}

/* Section Styles */
section {
    padding: 6rem 5%;
    position: relative;
}

section h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 40px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

section h2 span {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 10px;
}

.feature-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.feature-image:hover {
    transform: scale(1.02);
}

section h2.animate {
    opacity: 1;
    transform: translateY(0);
}

section h2::before,
section h2::after {
    content: '';
    position: absolute;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 4px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    box-shadow: 0 2px 8px rgba(255, 184, 0, 0.3);
}

section h2::before {
    left: 0;
    bottom: -10px;
    width: 0;
}

section h2::after {
    right: 0;
    bottom: -10px;
    width: 0;
}

section h2.animate::before {
    width: 50%;
    opacity: 1;
    transition-delay: 0.2s;
}

section h2.animate::after {
    width: 50%;
    opacity: 1;
    transition-delay: 0.4s;
}

/* Add decorative elements */
section h2 span {
    position: relative;
    display: inline-block;
}

section h2 span::before,
section h2 span::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.3);
}

section h2 span::before {
    left: -40px;
    top: 50%;
    transform: translateY(-50%) scale(0) rotate(-180deg);
}

section h2 span::after {
    right: -40px;
    top: 50%;
    transform: translateY(-50%) scale(0) rotate(180deg);
}

section h2.animate span::before,
section h2.animate span::after {
    opacity: 1;
    transform: translateY(-50%) scale(1) rotate(0);
    transition-delay: 0.6s;
}

section h2.animate {
    opacity: 1;
    transform: translate(-50%, 0);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    background: linear-gradient(to right, #f9f9f9, #ffffff);
    overflow: hidden;
}

.about-content {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.about-text, .about-image {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.about-text {
    transition-delay: 0.2s;
}

.about-image {
    transition-delay: 0.4s;
}

.about-content.animate .about-text,
.about-content.animate .about-image {
    opacity: 1;
    transform: translateY(0);
}

.info-text {
    flex: 1;
    padding: 3rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
    border-radius: 15px;
    box-shadow: var(--luxury-shadow);
    border: 1px solid rgba(197, 165, 114, 0.1);
    backdrop-filter: blur(10px);
    margin-right: 3rem;
    position: relative;
    overflow: hidden;
}

.info-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gold-gradient);
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-text:hover::before {
    height: 100%;
}

.info-text-content h3 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 15px rgba(197, 165, 114, 0.2);
}

.info-text-content h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
    box-shadow: 0 2px 10px rgba(197, 165, 114, 0.3);
}

.info-text:hover .info-text-content h3::after {
    width: 100%;
}

.info-text-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    letter-spacing: 0.3px;
    opacity: 0.9;
    position: relative;
    padding-left: 1rem;
}

.info-text-content p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    opacity: 0.5;
}

.about-content.animate .about-text h3 {
    opacity: 1;
    transform: translateX(0);
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.about-text {
    background: rgba(255, 255, 255, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--luxury-shadow);
    border: 1px solid rgba(197, 165, 114, 0.1);
}

.about-content.animate .about-text p:nth-child(2) {
    transition-delay: 0.8s;
    opacity: 1;
    transform: translateY(0);
}

.about-content.animate .about-text p:nth-child(3) {
    transition-delay: 1s;
    opacity: 1;
    transform: translateY(0);
}

.about-content.animate .about-text .btn {
    transition-delay: 1.2s;
    opacity: 1;
    transform: translateY(0);
}

.about-image {
    flex: 1;
    position: relative;
    padding: 1rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
    border-radius: 15px;
    box-shadow: var(--luxury-shadow);
    border: 1px solid rgba(197, 165, 114, 0.1);
    backdrop-filter: blur(10px);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold-light);
    border-radius: 15px;
    z-index: 1;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.about-image:hover::before {
    top: -15px;
    right: -15px;
    opacity: 0.5;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: translate(-5px, -5px);
}

@media (max-width: 768px) {
    section {
        padding: 4rem 5%;
    }

    section h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .about-content {
        flex-direction: column;
        gap: 3rem;
    }

    .about-text {
        padding-right: 0;
    }

    .about-text h3 {
        font-size: 2rem;
    }

    .about-image::before {
        display: none;
    }
}

/* Projects Section */
.project-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.project-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-info {
    padding: 2rem;
    background: var(--white);
    position: relative;
}

.project-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.project-info h3 {
    margin: 1rem 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    background: #f8f9fa;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.testimonial.animate {
    opacity: 1;
    transform: translateY(0);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-text {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--secondary-color);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Blog Section */
.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin-bottom: 0.5rem;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.value-item {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--luxury-shadow);
    border: 1px solid rgba(197, 165, 114, 0.1);
    backdrop-filter: blur(10px);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(197, 165, 114, 0.2);
    border-color: rgba(197, 165, 114, 0.3);
}

.value-item i {
    font-size: 2.8rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.value-item:hover i {
    transform: scale(1.1);
    color: var(--primary-color);
}

.value-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer Styles */
footer {
    background: linear-gradient(to right, #1a1a1a, #333333);
    color: var(--white);
    padding: 5rem 5% 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.4s; }
.footer-section:nth-child(4) { animation-delay: 0.6s; }

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
    text-shadow: var(--text-shadow);
}

.footer-section ul li a:hover {
    color: var(--gold-light);
    opacity: 1;
    padding-left: 10px;
}

.footer-section h3 {
    color: var(--gold-light);
    text-shadow: var(--text-shadow);
}

.footer-section p {
    color: var(--white);
    opacity: 0.9;
    text-shadow: var(--text-shadow);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-icons a:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateY(-3px);
}

.contact-info-content .social-icons {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.contact-info-content .social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info-content .social-icons a:hover {
    color: var(--white);
    background: var(--gold-gradient);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 184, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gold-gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(197, 165, 114, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 165, 114, 0.5);
    border: 2px solid var(--gold-light);
    letter-spacing: 2.5px;
}

.btn:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.3);
}

/* Contact Styles */
.contact-section {
    padding: 4rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info.animate {
    opacity: 1;
    transform: translateX(0);
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gold-gradient);
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info.animate::before {
    height: 100%;
}

.contact-info-header {
    margin-bottom: 3rem;
    position: relative;
}

.contact-info-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.contact-info-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.contact-info:hover .contact-info-header h3::after {
    width: 100%;
}

.contact-info-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-info.animate .contact-info-item {
    opacity: 1;
    transform: translateY(0);
}

.contact-info.animate .contact-info-item:nth-child(1) { transition-delay: 0.2s; }
.contact-info.animate .contact-info-item:nth-child(2) { transition-delay: 0.3s; }
.contact-info.animate .contact-info-item:nth-child(3) { transition-delay: 0.4s; }
.contact-info.animate .contact-info-item:nth-child(4) { transition-delay: 0.5s; }

.contact-info-item div h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-info-item div p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-info-item:hover i {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.2);
    background: var(--gold-gradient);
    color: var(--white);
}

.contact-info-item div {
    flex: 1;
}

.contact-info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-info-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact info item styles already defined above */

/* Animation delays already defined above */

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-info-item i::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.contact-info-item:hover i::before {
    opacity: 1;
    transform: scale(1);
}

.contact-info-item:hover i {
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.2);
}

.contact-info-item:hover i {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.2);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 0;
    background: var(--gold-gradient);
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form.animate::before {
    height: 100%;
}

.contact-form.animate {
    opacity: 1;
    transform: translateX(0);
}

.form-header {
    margin-bottom: 3rem;
    text-align: left;
}

.form-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.form-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.contact-form:hover .form-header h3::after {
    width: 100%;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.animate-form .form-group {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-form.animate .form-group:nth-child(1) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.animate-form.animate .form-group:nth-child(2) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.animate-form.animate .form-group:nth-child(3) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.animate-form.animate .form-group:nth-child(4) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.animate-form.animate .form-group:nth-child(5) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.animate-form.animate .submit-btn { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }

.contact-info-header {
    margin-bottom: 2.5rem;
}

.contact-info-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-info-header p {
    color: #666;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--white);
    padding: 0 0.5rem;
    z-index: 1;
}

.form-group textarea ~ label {
    top: 1.5rem;
    transform: none;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
    transform: translateY(0);
}

.form-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    background: transparent;
    color: var(--secondary-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
    padding-top: 1.5rem;
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--secondary-color);
    -webkit-box-shadow: 0 0 0px 1000px var(--white) inset;
    transition: background-color 5000s ease-in-out 0s;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
    transform: translateY(0);
    background: var(--white);
    padding: 0 0.5rem;
    z-index: 1;
}

.submit-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.3);
}

.map-section {
    margin-top: 4rem;
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {
    .about-section {
        padding: 3rem 2%;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-text {
        padding-right: 0;
    }

    .about-section {
        padding: 3rem 2%;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-text {
        padding-right: 0;
    }

    .hero {
        height: 50vh; /* Adjusted height for mobile */
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        letter-spacing: 3px;
    }

    .hero-content p {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin: 2rem auto;
        letter-spacing: 1px;
    }

    .values-grid, .achievements {
        grid-template-columns: 1fr; /* Stack items vertically */
    }

    .team-grid {
        grid-template-columns: 1fr; /* Stack team members vertically */
    }
}
@media (max-width: 480px) {
    section {
        padding: 3rem 1.5rem;
    }

    .hero {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
    }

    .hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .hero-content p {
        font-size: 1rem;
        margin: 1.5rem auto;
    }

    .hero-btn {
        padding: 1rem 2.5rem;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        width: calc(100% - 2rem);
        text-align: center;
        margin: 0 1rem;
    }

    .project-container,
    .testimonial-container,
    .blog-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
}
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: rgba(10, 25, 55, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
    }

    .nav-links.active {
        right: 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-links ul {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        padding: 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease 0.1s;
    }

    .nav-links.active ul {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links ul li {
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
        transition-delay: calc(0.05s * var(--item-index, 0));
    }

    .nav-links.active ul li {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(0.15s + (0.05s * var(--item-index, 0)));
    }

    .nav-links ul li a {
        font-size: 1.4rem;
        color: var(--white);
        letter-spacing: 1px;
        padding: 0.5rem 1rem;
        position: relative;
        overflow: hidden;
    }

    .nav-links ul li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--gold-gradient);
        transform: translateX(-101%);
        transition: transform 0.3s ease;
    }

    .nav-links ul li a:hover::after,
    .nav-links ul li a.active::after {
        transform: translateX(0);
    }

    .mobile-menu {
        display: block;
        z-index: 1000;
    }

    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

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

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .about-content {
        flex-direction: column;
    }

    .hero {
        margin-top: 70px;
        min-height: calc(100vh - 70px);
        padding: 2rem 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        letter-spacing: 3px;
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin: 2rem auto;
        letter-spacing: 1px;
    }

    .hero-btn {
        padding: 1.2rem 3rem;
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 2rem;
    }


@media (max-width: 480px) {
    section {
        padding: 3rem 1.5rem;
    }

    .hero {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
    }

    .hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .hero-content p {
        font-size: 1rem;
        margin: 1.5rem auto;
    }

    .hero-btn {
        padding: 1rem 2.5rem;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        width: calc(100% - 2rem);
        text-align: center;
        margin: 0 1rem;
    }

    .project-container,
    .testimonial-container,
    .blog-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
}
