/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1a1f36;
    --gold: #d4af37;
    --white: #ffffff;
    --charcoal: #2c2c2c;
    --light-gray: #f8f8f8;
    --medium-gray: #666666;
    --serif: 'Playfair Display', serif;
    --sans: 'Inter', sans-serif;
}

body {
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
}

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

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-text h1 {
    font-size: 2rem;
    color: var(--navy);
    letter-spacing: 3px;
    margin: 0;
}

.logo-text .tagline {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--charcoal);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--navy);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, #2a3351 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
}

/* Buttons */
.cta-button,
.cta-button-light {
    display: inline-block;
    padding: 15px 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button {
    background-color: var(--gold);
    color: var(--white);
}

.cta-button:hover {
    background-color: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.cta-button-light {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-button-light:hover {
    background-color: var(--white);
    color: var(--navy);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    color: var(--navy);
    margin-bottom: 3rem;
}

/* Introduction Section */
.introduction {
    background-color: var(--light-gray);
}

.intro-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--charcoal);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 4rem;
}

.feature {
    text-align: center;
    padding: 30px;
}

.feature h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--medium-gray);
}

/* Featured Services */
.featured-services {
    background-color: var(--white);
    padding: 100px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    font-style: italic;
    margin-top: 1rem;
}

.services-carousel {
    display: flex;
    gap: 30px;
    margin-bottom: 3rem;
    overflow: visible;
    padding-bottom: 20px;
}

.service-card {
    flex: 1;
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f0f0f0 100%);
    text-align: center;
    transition: all 0.2s ease;
    opacity: 0.6;
    transform: scale(0.95);
    border-radius: 8px;
    position: relative;
    overflow: visible;
    cursor: pointer;
    margin-bottom: 20px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--navy));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
}

.service-card.active::before {
    transform: scaleX(1);
}


.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card.active .service-icon {
    color: var(--navy);
    transform: scale(1.1);
}

.service-content h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card .service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.service-card .service-features span {
    background-color: var(--gold);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-button {
    display: none;
    margin-top: 1.5rem;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--navy);
    text-decoration: none;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 1px solid var(--navy);
    font-family: var(--serif);
    position: relative;
    overflow: hidden;
}

.service-card.active .service-button {
    display: inline-block;
}

.service-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--navy);
    transition: left 0.3s ease;
    z-index: -1;
}

.service-button:hover {
    color: var(--white);
    border-color: var(--navy);
}

.service-button:hover::before {
    left: 0;
}

.service-card.active .service-button {
    color: var(--gold);
    border-color: var(--gold);
}

.service-card.active .service-button::before {
    background-color: var(--gold);
}

.service-card.active .service-button:hover {
    color: var(--white);
    border-color: var(--gold);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.indicator.active {
    background-color: var(--gold);
    transform: scale(1.2);
}

.indicator.active::after {
    transform: translate(-50%, -50%) scale(1);
}

/* CTA Section */
.cta-section {
    background-color: var(--navy);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 35px;
    width: auto;
}

.footer h3,
.footer h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-logo h3 {
    margin-bottom: 0;
}

.footer p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    line-height: 2;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 25px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.footer-cta:hover {
    background-color: var(--gold);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Page Header */
.page-header {
    background-color: var(--navy);
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Page Styles */
.company-story {
    padding: 60px 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values {
    background-color: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    background-color: var(--white);
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.value-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.team {
    padding: 60px 0;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.expertise-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.expertise-item {
    padding: 30px;
    border-left: 3px solid var(--gold);
}

.expertise-item h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.company-info {
    background-color: var(--light-gray);
    padding: 60px 0;
}

.company-info h2 {
    text-align: center;
    color: var(--navy);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 3rem;
}

.info-item {
    text-align: center;
}

.info-item h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Services Page Styles */
.services-intro {
    text-align: center;
    padding: 40px 0;
}

.services-detailed {
    padding: 60px 0;
}

.service-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-section.reverse {
    direction: rtl;
}

.service-section.reverse .service-content {
    direction: ltr;
}

.service-content h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.service-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-section .service-features {
    list-style: none;
}

.service-section .service-features li {
    padding-left: 30px;
    margin-bottom: 1rem;
    position: relative;
}

.service-section .service-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.2rem;
}

.service-image {
    height: 400px;
    background-color: var(--light-gray);
    background-size: cover;
    background-position: center;
}

/* Contact Page Styles */
.contact-section {
    padding: 60px 0;
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.contact-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form {
    background-color: var(--light-gray);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--charcoal);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    background-color: var(--white);
    font-family: var(--sans);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: start;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
}

.error-message {
    display: block;
    color: #d32f2f;
    font-size: 0.8rem;
    margin-top: 5px;
    height: 1rem;
}

.submit-button {
    background-color: var(--navy);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: var(--gold);
}

.success-message {
    background-color: var(--light-gray);
    padding: 40px;
    text-align: center;
}

.success-message h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-info h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.confidentiality-note {
    background-color: var(--light-gray);
    padding: 20px;
    margin-top: 2rem;
}

.confidentiality-note p {
    font-size: 0.9rem;
    line-height: 1.6;
}
