/* General Styles */
:root {
    --primary-color: #ffb703;
    --secondary-color: #023047;
    --accent-color: #fb8500;
    --light-color: #f5f5f5;
    --dark-color: #333;
    --text-color: #444;
    --dark-bg: #121212;
    --dark-card: #1e1e1e;
    --dark-accent: #c8a97e;
    --dark-text: rgba(255, 255, 255, 0.85);
    --dark-muted: rgba(255, 255, 255, 0.6);
    --border-radius: 5px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Rest of general styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

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

h1, h2, h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.text-center {
    text-align: center;
    margin: 30px 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #01394d;
}

.btn-light {
    background-color: white;
    color: var(--secondary-color);
}

.btn-light:hover {
    background-color: var(--light-color);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: fixed;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
}

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

.logo h1 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.tagline {
    font-size: 0.9rem;
    color: var(--accent-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--dark-color);
    padding: 5px 10px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
    color: white;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
    background-color: var(--light-color);
    box-shadow: var(--box-shadow);
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background-color: var(--light-color);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: scale(1.03);
}

.service-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 0;
}

.service-card h3, .service-card p {
    padding: 15px 20px;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: white;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
    color: white;
    font-size: 2.2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--border-radius);
}

.stars {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.client-name {
    font-style: italic;
    margin-top: 15px;
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: url('https://images.unsplash.com/photo-1581094271901-8022df4466f9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
    text-align: center;
    color: white;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-info h3, .footer-links h3, .footer-services h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-links ul li, .footer-services ul li {
    margin-bottom: 10px;
}

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

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Floating Call Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.floating-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.floating-btn i {
    font-size: 1.5rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(251, 133, 0, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(251, 133, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(251, 133, 0, 0);
    }
}

/* Media Queries */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    nav {
        margin-top: 15px;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 30px;
    }
    
    nav {
        display: none;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.1rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .feature-box {
        padding: 20px;
    }
    
    .feature-box i {
        font-size: 2.5rem;
    }
    
    .hero {
        height: 60vh;
    }
    
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .hero h2 {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
}

/* Emergency Contact */
.emergency-contact {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff7e6;
    border-left: 4px solid var(--accent-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.emergency-contact h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.emergency-contact .btn {
    margin-top: 15px;
}

/* Page Header */
.page-header {
    background: var(--secondary-color);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.page-header h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.page-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.9);
}

/* About Content Styles */
.about-content {
    padding: 80px 0 60px;
    background-color: white;
    position: relative;
}

.about-content:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background-color: var(--light-color);
    z-index: 0;
}

.about-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-image:before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60%;
    height: 60%;
    background-color: var(--primary-color);
    opacity: 0.1;
    z-index: -1;
    border-radius: var(--border-radius);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-text h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.highlight-box {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.highlight-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
}

.highlight-box i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: inline-block;
}

.highlight-box h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.mission:before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--primary-color);
    opacity: 0.05;
    border-radius: 50%;
}

.mission-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.mission-text h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.mission-text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.mission-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.mission-text h3 {
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

.values-list {
    margin-bottom: 30px;
}

.values-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    background-color: white;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.values-list li:hover {
    transform: translateX(5px);
}

.values-list li i {
    color: var(--accent-color);
    margin-right: 12px;
    margin-top: 3px;
}

.mission-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1;
}

/* Team Section */
.team {
    padding: 80px 0 100px;
    background-color: white;
    position: relative;
}

.team:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: var(--light-color);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0;
}

.team-member h3 {
    margin: 20px 0 5px;
    color: var(--secondary-color);
}

.team-member .position {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    padding: 0 20px 20px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0 80px;
    background-color: var(--light-color);
    position: relative;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.reason-box {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.reason-box:hover {
    transform: translateY(-5px);
}

.reason-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    flex-shrink: 0;
}

.reason-text {
    flex: 1;
}

.reason-box h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.reason-box p {
    font-size: 0.95rem;
}

/* Media Queries for About Page */
@media (max-width: 968px) {
    .page-header {
        clip-path: none;
    }
    
    .about-grid,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content:before {
        display: none;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-image:before {
        display: none;
    }
    
    .team:after {
        height: 80px;
    }
    
    .reason-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .reason-box i {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-info {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 5px;
}

.contact-info h2 {
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: var(--secondary-color);
}

.contact-info > p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-detail i {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-detail h3 {
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 600;
}

.contact-detail p, .contact-detail a {
    color: var(--text-color);
}

.contact-detail a:hover {
    color: var(--accent-color);
}

.emergency-contact {
    margin-top: 25px;
    background-color: #fff7e6;
    padding: 20px;
    border-left: 3px solid var(--accent-color);
    border-radius: 0 5px 5px 0;
}

.emergency-contact h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.emergency-contact p {
    margin-bottom: 15px;
}

.contact-form {
    background: white;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 5px;
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: var(--secondary-color);
}

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

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--secondary-color);
}

textarea.form-control {
    height: 120px;
    resize: vertical;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #eee;
}

/* Contact page media queries */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info, .contact-form {
        padding: 25px;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info h2, .contact-form h2 {
        font-size: 1.4rem;
    }
    
    .form-control {
        padding: 8px 10px;
    }
    
    .map-container {
        height: 250px;
    }
}

/* Dark Contact Page Styles */
.contact-hero {
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.contact-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.contact-title {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.contact-title h1 {
    font-size: 2.5rem;
    color: white;
    letter-spacing: 2px;
    border: 2px solid white;
    padding: 15px 40px;
    display: inline-block;
}

.contact-section.dark {
    background-color: #121212;
    color: white;
    padding: 60px 0;
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
}

.contact-intro h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 400;
}

.contact-info-boxes {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.contact-box {
    text-align: center;
    padding: 20px 10px;
    min-width: 180px;
}

.contact-box i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-box h3 {
    color: white;
    font-size: 1rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contact-box p, .contact-box a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-box a:hover {
    color: var(--primary-color);
}

.contact-form-section {
    max-width: 600px;
    margin: 0 auto 50px;
}

.form-intro {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.5;
}

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

.form-control.dark {
    width: 100%;
    padding: 12px 15px;
    background-color: #1e1e1e;
    border: none;
    color: white;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
}

.form-control.dark::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control.dark:focus {
    outline: none;
    background-color: #2c2c2c;
}

textarea.form-control.dark {
    height: 150px;
    resize: vertical;
}

.btn-gold {
    background-color: #c8a97e;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 0.9rem;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    width: 100%;
}

.btn-gold:hover {
    background-color: #b69872;
}

.social-section {
    text-align: center;
    margin-bottom: 40px;
}

.social-section h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
}

.map-section {
    height: 400px;
}

.map-container.dark {
    width: 100%;
    height: 400px;
}

.map-container.dark iframe {
    filter: grayscale(100%) invert(92%) contrast(83%);
}

.dark-footer {
    background-color: #121212;
    color: white;
    padding: 50px 0 20px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 100px;
    margin-bottom: 15px;
    border-radius: 0;
}

.footer-logo h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

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

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.dark-footer .copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* Contact page media queries */
@media (max-width: 768px) {
    .contact-title h1 {
        font-size: 2rem;
        padding: 10px 30px;
    }
    
    .contact-info-boxes {
        gap: 30px;
    }
    
    .contact-box {
        width: 100%;
        max-width: 250px;
    }
    
    .footer-nav {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .contact-title h1 {
        font-size: 1.5rem;
        padding: 10px 20px;
    }
    
    .contact-intro h2 {
        font-size: 1.5rem;
    }
    
    .contact-box i {
        font-size: 1.5rem;
    }
    
    .footer-logo h2 {
        font-size: 1.2rem;
    }
}

/* Dark Theme Styles */
.dark-theme {
    background-color: var(--dark-bg);
    color: var(--dark-text);
}

.dark-theme header {
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.dark-theme .logo h1 {
    color: white;
}

.dark-theme nav ul li a {
    color: var(--dark-text);
}

.dark-theme nav ul li a:hover, 
.dark-theme nav ul li a.active {
    color: var(--dark-accent);
}

/* About Hero Section */
.about-hero.dark {
    padding: 140px 0 80px;
    background-color: var(--dark-bg);
    overflow: hidden;
}

.about-personal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-personal-content {
    padding-right: 30px;
}

.about-label {
    color: var(--dark-muted);
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.about-personal h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-personal .highlight {
    color: var(--dark-accent);
}

.about-personal p {
    color: var(--dark-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.signature {
    margin-bottom: 20px;
}

.signature img {
    height: 60px;
    width: auto;
}

.about-personal .social-icons {
    display: flex;
    gap: 15px;
}

.about-personal .social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-muted);
    transition: all 0.3s;
}

.about-personal .social-icon:hover {
    background-color: var(--dark-accent);
    color: white;
}

.about-personal-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Partners Section */
.partners.dark {
    padding: 40px 0;
    background-color: #0c0c0c;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.partners-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logo {
    opacity: 0.5;
    transition: opacity 0.3s;
}

.partner-logo:hover {
    opacity: 0.8;
}

.partner-logo img {
    max-height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Services Overview */
.services-overview.dark {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

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

.section-label {
    color: var(--dark-muted);
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: white;
    position: relative;
    display: inline-block;
}

.section-header h2 .highlight {
    color: var(--dark-accent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card.dark {
    background-color: var(--dark-card);
    padding: 30px;
    border-radius: 5px;
    transition: transform 0.3s;
    text-align: center;
}

.service-card.dark:hover {
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--dark-accent);
}

.service-card.dark h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.service-card.dark p {
    color: var(--dark-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Team Section */
.team-section.dark {
    padding: 80px 0;
    background-color: #0c0c0c;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--dark-muted);
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member.dark {
    background-color: var(--dark-card);
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s;
}

.team-member.dark:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member.dark:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.member-info .position {
    color: var(--dark-accent);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.member-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--dark-muted);
    border-radius: 50%;
    transition: all 0.3s;
}

.member-social a:hover {
    background-color: var(--dark-accent);
    color: white;
}

/* Media Queries for Dark Theme */
@media (max-width: 968px) {
    .about-personal {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-personal-content {
        padding-right: 0;
        order: 2;
    }
    
    .about-personal-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    .about-personal .social-icons {
        justify-content: center;
    }
    
    .signature {
        text-align: center;
    }
    
    .partners-grid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-personal h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .service-card.dark {
        padding: 20px;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-personal h1 {
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .team-member.dark {
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Contact page light theme */
.contact-hero.light {
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1558687421-d78a86a1c68c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.contact-hero .light-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.contact-section.light {
    background-color: white;
    color: var(--text-color);
    padding: 60px 0;
}

.contact-section.light .contact-intro h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 600;
}

.contact-box.light {
    text-align: center;
    padding: 20px 10px;
    min-width: 180px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.contact-box.light:hover {
    transform: translateY(-5px);
}

.contact-box.light i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-box.light h3 {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contact-box.light p, .contact-box.light a {
    color: var(--text-color);
    font-size: 0.9rem;
}

.contact-box.light a:hover {
    color: var(--accent-color);
}

.form-intro.light-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 600;
}

.form-control.light {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--light-color);
    border: 1px solid #ddd;
    color: var(--text-color);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
}

.form-control.light::placeholder {
    color: #999;
}

.form-control.light:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 183, 3, 0.2);
}

textarea.form-control.light {
    height: 150px;
    resize: vertical;
}

.social-section.light h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-icon.light {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    color: var(--secondary-color);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icon.light:hover {
    background-color: var(--primary-color);
    color: white;
}

.map-container.light {
    width: 100%;
    height: 400px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.map-container.light iframe {
    filter: none;
} 