/* Base Styles */
:root {
    --primary-color: #333333; /* Dark color from logo/house */
    --secondary-color: #1a1a1a;
    --text-color: #f5f5f5; /* Light text for dark theme */
    --light-text: #ffffff;
    --bg-color: #121212; /* Dark background */
    --dark-bg: #0a0a0a; /* Even darker background */
    --accent-bg: #1e1e1e; /* Dark grey for sections */
    --gold-light: #ffd700; /* Gold from logo */
    --gold-dark: #daa520; /* Darker gold from logo */
    --gold-gradient: linear-gradient(to right, #daa520, #ffd700);
    --border-radius: 4px;
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.section {
    padding: 100px 0;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.accent-bg h2::after {
    background: var(--light-text);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

.accent {
    color: var(--gold-dark);
}

.light {
    color: var(--light-text);
}

.accent-bg {
    background-color: var(--secondary-color);
    color: var(--light-text);
    position: relative;
}

.accent-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1600585152220-90363fe7e115');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: -1;
}

/* Header Styles */
header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-color);
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.75)), url('images/DPHouse.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    width: 100%;
    z-index: 10;
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
}

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

.logo-container {
    background-color: transparent;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-img {
    height: auto;
    width: 160px;
    display: block;
    transition: all 0.3s ease;
}

.logo-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.logo-house-icon {
    width: 70px;
    height: 35px;
    background-color: transparent;
    position: relative;
    margin-bottom: 3px;
}

.logo-house-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #daa520, #ffd700);
    clip-path: polygon(0 50%, 50% 0, 100% 50%, 90% 50%, 90% 100%, 10% 100%, 10% 50%);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-detail {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.logo-projects {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 0.9;
    color: var(--primary-color);
}

.logo-byline {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-top: 3px;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-weight: 500;
    position: relative;
    color: var(--primary-color);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav a:hover::after, nav a:focus::after {
    width: 100%;
}

.cta-button {
    background: var(--gold-gradient);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cta-button:hover, .cta-button:focus {
    background: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

nav .cta-button {
    margin-left: 20px;
    color: var(--primary-color);
}

nav .cta-button:hover {
    color: var(--light-text);
}

nav .cta-button::after {
    display: none;
}

/* Hero section adjustments */
.hero {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    color: var(--light-text);
    padding-top: 100px;
    margin-top: 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-logo {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.hero-logo-img {
    width: 100%;
    max-width: 850px;
    height: auto;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.35));
    animation: logoFadeIn 1.2s ease-out, logoPulse 5s ease-in-out infinite alternate;
    transform-origin: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--light-text);
    line-height: 1.2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
    color: var(--light-text);
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
}

.hero .cta-button {
    animation: fadeInUp 1s ease-out 0.9s forwards;
    opacity: 0;
    font-size: 1.1rem;
    padding: 16px 40px;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--gold-gradient);
    color: #111;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.3);
    margin-top: 10px;
}

.hero .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(218, 165, 32, 0.4);
}

/* Hero house icon - removed */
.hero::after {
    display: none;
}

/* Animation keyframes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes logoPulse {
    0% {
        filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.35));
        transform: scale(1);
    }
    100% {
        filter: drop-shadow(0 12px 30px rgba(218, 165, 32, 0.35));
        transform: scale(1.03);
    }
}

/* About Section */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 40px;
}

.services-overview {
    margin-bottom: 40px;
}

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

.about-conclusion {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text-intro p {
    margin-bottom: 20px;
}

h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--gold-light);
    font-size: 1.3rem;
}

.portfolio-list, .choose-list {
    list-style: none;
    margin-bottom: 25px;
    padding-left: 5px;
}

.portfolio-list li, .choose-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.portfolio-list li:before, .choose-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-size: 1.2rem;
}

.portfolio-list li strong {
    color: var(--gold-light);
    font-weight: 600;
}

.image-placeholder {
    width: 100%;
    height: 450px;
    background-color: #2a2a2a;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    background-image: url('/images/mainpic.png'), url('./images/mainpic.png'), url('images/mainpic.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fallback-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    display: block;
}

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

.service-card {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    background-color: #252525;
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    color: var(--light-text);
}

/* Approach Section */
.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-left: 4px solid rgba(218, 165, 32, 0.5);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-left: 4px solid var(--gold-light);
    background-color: #252525;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.8;
    position: absolute;
    top: 15px;
    right: 20px;
    text-shadow: 0px 0px 1px rgba(0,0,0,0.1);
}

.step h3 {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.step p {
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-method svg {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: var(--light-text);
}

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

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #333;
    border-radius: var(--border-radius);
    font-size: 1rem;
    margin-bottom: 15px;
    transition: var(--transition);
    background-color: #2a2a2a;
    color: var(--text-color);
}

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

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold-dark);
    outline: none;
    box-shadow: 0 0 0 2px rgba(218, 165, 32, 0.3);
}

.submit-button {
    width: 100%;
    background: var(--gold-gradient);
    color: var(--primary-color);
    border: none;
    padding: 12px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: var(--light-text);
    color: var(--primary-color);
    border: 1px solid var(--light-text);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo-img {
    height: auto;
    width: 220px;
    margin-bottom: 15px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-links ul {
    display: flex;
    gap: 30px;
}

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

.business-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.info-item:hover {
    color: var(--gold-light);
}

.info-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold-dark);
    transition: var(--transition);
}

.info-item:hover svg {
    stroke: var(--gold-light);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .business-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

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

.footer-logo-inline {
    margin-bottom: 15px;
}

.footer-logo-inline .logo-detail,
.footer-logo-inline .logo-projects,
.footer-logo-inline .logo-byline {
    color: var(--light-text);
}

.footer-logo-inline .logo-house-icon:before {
    background: linear-gradient(to right, #daa520, #ffd700);
}

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

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    background-color: #1e1e1e;
}

.project-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    color: var(--light-text);
    transform: translateY(0);
    opacity: 1;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
    padding-bottom: 30px;
    border-left: 4px solid var(--gold-light);
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-overlay h3 {
    margin-bottom: 5px;
    color: var(--gold-light);
}

.project-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Modern Carousel Styles */
.carousel-container {
    width: 100%;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 500px;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--gold-dark);
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-button:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--gold-light);
}

.carousel-button svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold-light);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Responsive styles for carousel */
@media (max-width: 992px) {
    .carousel-slides {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .carousel-slides {
        height: 350px;
    }
    
    .carousel-button {
        width: 40px;
        height: 40px;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-description {
        font-size: 1.15rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .about-intro,
    .services-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .image-placeholder {
        height: 350px;
        margin-top: 0;
    }
    
    .hero-logo-img {
        max-width: 750px;
    }
    
    .hero-content {
        max-width: 700px;
    }
    
    .about-conclusion {
        text-align: left;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 5%;
    }
    
    nav ul li a {
        color: var(--primary-color);
    }
    
    nav ul li a.cta-button {
        margin: 20px 0 0 0;
        display: inline-block;
    }
    
    .logo-container {
        padding: 8px 10px;
    }
    
    .logo-img {
        width: 120px;
    }
    
    .footer-logo-img {
        width: 180px;
    }
    
    .logo-detail {
        font-size: 0.9rem;
    }
    
    .logo-projects {
        font-size: 1.2rem;
    }
    
    .logo-byline {
        font-size: 0.6rem;
    }
    
    .logo-house-icon {
        width: 50px;
        height: 25px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-detail {
        font-size: 0.7em;
    }
    
    .hero-projects {
        font-size: 1.1em;
    }
    
    .hero-projects::before {
        top: -15px;
        width: 50px;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero .cta-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .services-grid,
    .approach-steps {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card {
        height: 250px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .footer-links ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-logo-img {
        width: 100%;
        max-width: 600px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .about-text-intro h3 {
        font-size: 1.2rem;
    }
    
    .portfolio-list li, .choose-list li {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .image-placeholder {
        height: 250px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-logo {
        margin-bottom: 40px;
    }
}

/* Form status messages */
.form-status {
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.success-message {
    background-color: rgba(40, 167, 69, 0.2);
    color: #28a745;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    border-left: 4px solid #28a745;
}

.error-message {
    background-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    border-left: 4px solid #dc3545;
}

/* Contact section with prominent email */
.centered-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--gold-dark);
}

.contact-intro {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.email-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0 40px;
    padding: 30px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                var(--gold-gradient);
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(218, 165, 32, 0.25);
    transition: all 0.3s ease;
}

.email-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(218, 165, 32, 0.35);
}

.email-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.email-highlight:hover::before {
    opacity: 1;
}

.email-icon {
    margin-bottom: 15px;
}

.email-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--light-text);
    stroke-width: 1.5;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.email-address {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--light-text);
    text-decoration: none;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
}

.email-address:hover {
    color: var(--gold-light);
}

.email-address::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--light-text);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.email-address:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.contact-method.location {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    opacity: 0.8;
}

.contact-method svg {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: var(--light-text);
}

/* Responsive adjustments for contact section */
@media (max-width: 768px) {
    .contact-intro {
        font-size: 1.1rem;
    }
    
    .email-highlight {
        padding: 20px 15px;
    }
    
    .email-address {
        font-size: 1.1rem;
        word-break: break-word;
        text-align: center;
        width: 100%;
    }
    
    .email-icon svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .email-highlight {
        padding: 15px 10px;
    }
    
    .email-address {
        font-size: 1rem;
    }
} 