   /* ===========================
   GLOBAL COLOR VARIABLES
   =========================== */
:root {
    --bg: #ffffff;
    --text: #222222;
    --text-muted: #333;
    --heading: #FFAC1C;
    --accent: #FFAC1C;

    --card-bg: #f7f7f7;
    --footer-bg: #f8f8f8;
    --footer-text: #333;

    --input-bg: #ffffff;
    --input-text: #000;
    --input-border: #ccc;
}

/* ========= DARK MODE VARIABLES ========= */
body.dark-mode {
    --bg: #121212;
    --text: #f1f1f1;
    --text-muted: #d4d4d4;
    --heading: #FFAC1C;
    --accent: #FFAC1C;

    --card-bg: #111;
    --footer-bg: #000;
    --footer-text: #aaa;

    --input-bg: #0f0f11;
    --input-text: #fff;
    --input-border: #333;
}

/* ===========================
   GLOBAL STYLES
   =========================== */
* {
    box-sizing: border-box; /* Fix width + padding warnings */
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* Container spacing */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* ===========================
   HEADER
   =========================== */
header {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

body.dark-mode header {
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid #222;
}

h1 a {
    color: var(--text);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: 0.3s ease;
}

h1 a:hover {
    color: var(--accent);
}

nav {
    margin-top: 10px;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    transition: 0.3s ease;
}

nav a:hover {
    color: var(--accent);
}

/* ===========================
   TITLES & TEXT
   =========================== */
h2,
.contact-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--heading);
    text-align: center;
}

p,
.contact-info p,
.service-content p,
.social-item,
.contact-info a {
    max-width: 700px;
    margin: 20px auto;
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

/* ===========================
   FOOTER
   =========================== */
footer {
    text-align: center;
    padding: 20px 10px;
    background: var(--footer-bg);
    color: var(--footer-text);
    margin-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

footer a {
    color: #4fa3ff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-subtext {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-container {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.contact-info {
    text-align: center;
    margin-bottom: 30px;
}

.contact-info i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 10px;
}

/* FORM */
form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

input,
textarea {
    padding: 14px;
    border-radius: 8px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--input-text);
    font-size: 1rem;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 172, 28, 0.4);
}

textarea {
    resize: none;
    height: 150px;
}

button {
    background: var(--accent);
    border: none;
    color: #000;
    padding: 14px;
    font-size: 1.15rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
    background: grey;
    transform: translateY(-2px);
}

/* ===========================
   ACCORDION CARDS
   =========================== */
.service-card {
    background: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: transform 0.2s ease;
}

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

.service-header {
    background: none;
    border: none;
    color: var(--text);
    text-align: left;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
}

.service-title {
    font-weight: bold;
    color: var(--heading);
}

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

.service-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

/* Active state using a modifier class (no adjoining classes) */
.service-card.active .service-content {
    max-height: 500px;
    padding: 15px 20px;
}

.service-card.active .arrow {
    transform: rotate(180deg);
}

/* ===========================
   VIDEO GALLERY
   =========================== */
.video-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
}

.video-gallery iframe {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    width: 360px;
    height: 640px;
}

/* ===========================
   SOCIAL LINKS
   =========================== */
.social-links {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.social-links a {
    color: var(--accent);
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.social-links a:hover {
    color: #ffd28a;
}

.social-links i {
    font-size: 1.3rem;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
    .video-gallery iframe {
        width: 100%;
        height: auto;
    }

    .service-header {
        font-size: 1rem;
    }

    .service-content p {
        font-size: 0.95rem;
    }

    main {
        padding: 30px 15px;
    }
}

/* ===========================
   TOGGLE BUTTON
   =========================== */
#theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 8px;
    border: none;
}

/* ===========================
   REMOVE outline only from focus state
   =========================== */
input:focus,
textarea:focus,
button:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
